@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
27 lines (26 loc) • 676 B
JavaScript
const Component = {
styleOverrides: {
root: ({ theme }) => ({}),
menuRoot: ({ theme }) => ({
'& .MuiDivider-root': {
margin: theme.spacing(1)
},
'& .MuiIcon-root': {
fontSize: '15px'
}
}),
drawerRoot: ({ theme }) => ({
'& .SCGroupActionsMenu-item': {
paddingTop: 0,
paddingBottom: 0
},
'& .MuiDivider-root': {
margin: theme.spacing(2)
},
'& .MuiIcon-root': {
fontSize: '15px'
}
})
}
};
export default Component;