suid icon indicating copy to clipboard operation
suid copied to clipboard

Feature Request: styleOverrides

Open SnowingFox opened this issue 2 years ago • 0 comments

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

SnowingFox avatar Sep 11 '22 14:09 SnowingFox