suid
suid copied to clipboard
Feature Request: styleOverrides
createTheme({
components: {
MuiButton: {
styleOverrides: {
root: {
'&:hover': {
boxShadow: 'none',
},
},
sizeLarge: {
height: 48,
},
containedPrimary: {
'boxShadow': theme.customShadows.primary,
'&:hover': {
backgroundColor: theme.palette.primary.dark,
},
},
},
},
}
})
i want to override component props via styleOverrides
prop like MUI, but now suid just have defaultProps
in components