@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
20 lines (19 loc) • 475 B
JavaScript
const Component = {
styleOverrides: {
root: ({ theme }) => ({}),
menuRoot: ({ theme }) => ({
'& .SCGroupSettingsIconButton-paper': {
maxWidth: 400,
padding: theme.spacing(1)
}
}),
drawerRoot: ({ theme }) => ({
'& .MuiList-root': {
'& a': {
color: 'inherit'
}
}
})
}
};
export default Component;