@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
27 lines (26 loc) • 685 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {};
menuRoot: ({ theme }: any) => {
'& .MuiDivider-root': {
margin: any;
};
'& .MuiIcon-root': {
fontSize: string;
};
};
drawerRoot: ({ theme }: any) => {
'& .SCGroupActionsMenu-item': {
paddingTop: number;
paddingBottom: number;
};
'& .MuiDivider-root': {
margin: any;
};
'& .MuiIcon-root': {
fontSize: string;
};
};
};
};
export default Component;