@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
35 lines (34 loc) • 1.01 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
padding: string;
'& .SCNavigationToolbarMobile-logo, & .SCNavigationToolbarMobile-custom-item': {
margin: any;
flexGrow: number;
'& img': {
verticalAlign: string;
maxHeight: string;
};
};
'& .SCNavigationToolbarMobile-logo-flex': {
flexGrow: number;
};
'& .MuiIconButton-root': {
color: any;
};
'& h4': {
fontSize: string;
overflow: string;
textOverflow: string;
whiteSpace: string;
};
};
skeletonRoot: ({ theme }: any) => {
'& .SCNavigationToolbarMobile-logo': {
width: number;
height: number;
};
};
};
};
export default Component;