@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
45 lines (44 loc) • 1.25 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
[x: number]: {
width: string;
flexShrink: number;
} | {
width: string;
flexShrink?: undefined;
};
'& h4': {
fontWeight: any;
};
'& .MuiDrawer-paper': {
[x: number]: {
width: string;
};
width: string;
backgroundColor: any;
};
'& .SCLessonDrawer-header': {
[x: number]: {
minHeight: string;
};
display: string;
padding: any;
};
'& .SCLessonDrawer-header-content': {
display: string;
alignItems: string;
justifyContent: string;
};
'& .SCLessonDrawer-header-edit': {
justifyContent: string;
};
'& .SCScrollContainer-root:hover': {
'& .Mui-disabled': {
opacity: string;
};
};
};
};
};
export default Component;