@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
19 lines (18 loc) • 521 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
'& .SCLanguageSwitcher-label': {
fontWeight: theme.typography.fontWeightBold
},
'& .MuiInputBase-root': {
textTransform: 'uppercase'
},
'& fieldset.MuiOutlinedInput-notchedOutline': {
borderWidth: 0
}
})
}
};
exports.default = Component;
;