@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
17 lines (16 loc) • 441 B
JavaScript
const Component = {
styleOverrides: {
root: ({ theme }) => ({
'& .SCLanguageSwitcher-label': {
fontWeight: theme.typography.fontWeightBold
},
'& .MuiInputBase-root': {
textTransform: 'uppercase'
},
'& fieldset.MuiOutlinedInput-notchedOutline': {
borderWidth: 0
}
})
}
};
export default Component;