не совмещаются типы:
import styled from 'styled-components';
import Button from '@material-ui/core/Button';
const StyiedButton = styled(Button)`
color: red;
`;
<StyiedButton color="inherit">Press me</StyiedButton>
// Type '{ children: string; color: "inherit"; }' is missing the following properties from type ...
Ну ты прокидываешь пропсу color в, вот он и ругается, что в StyledButton её нет
Начало проблемы
Обсуждают сегодня