@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
25 lines (24 loc) • 696 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .MuiDrawer-paperAnchorBottom': {
borderTopLeftRadius: any;
borderTopRightRadius: any;
maxHeight: string;
paddingTop: any;
'&:before': {
content: string;
border: string;
width: number;
position: string;
top: number;
left: string;
};
'& > *': {
paddingTop: number;
};
};
};
};
};
export default Component;