@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
20 lines (19 loc) • 490 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {};
menuRoot: ({ theme }: any) => {
'& .SCNavigationSettingsIconButton-paper': {
maxWidth: number;
padding: any;
};
};
drawerRoot: ({ theme }: any) => {
'& .MuiList-root': {
'& a': {
color: string;
};
};
};
};
};
export default Component;