@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
32 lines (31 loc) • 986 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .SCDefaultDrawerContent-no-results': {
paddingLeft: any;
};
'& .SCDefaultDrawerContent-title': {
paddingTop: any;
};
'& .SCDefaultDrawerContent-navigation': {
paddingTop: any;
paddingBottom: number;
'& .MuiListItemButton-root': {
paddingLeft: any;
paddingRight: any;
'& .MuiListItemText-root .MuiTypography-root': {
fontWeight: number;
};
};
'& .MuiListItemIcon-root': {
minWidth: number;
marginRight: any;
};
'& .MuiIcon-root': {
fontSize: number;
};
};
};
};
};
export default Component;