@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
36 lines (35 loc) • 1.12 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {};
popoverRoot: ({ theme }: any) => {
width: string;
borderRadius: string;
'& .SCLessonReleaseMenu-popover-contrast-color': {
color: string;
};
'& .MuiPaper-root': {
padding: any;
};
'& .SCLessonReleaseMenu-popover-content': {
marginTop: any;
'& .SCLessonReleaseMenu-popover-selection': {
display: string;
alignItems: string;
gap: any;
'& .MuiInputBase-root': {
width: string;
height: string;
};
'& .MuiRadio-root': {
padding: any;
};
};
'& .SCLessonReleaseMenu-popover-action': {
marginTop: any;
width: string;
};
};
};
};
};
export default Component;