@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
22 lines (21 loc) • 555 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({}),
menuRoot: ({ theme }) => ({
'& .SCGroupSettingsIconButton-paper': {
maxWidth: 400,
padding: theme.spacing(1)
}
}),
drawerRoot: ({ theme }) => ({
'& .MuiList-root': {
'& a': {
color: 'inherit'
}
}
})
}
};
exports.default = Component;
;