@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
33 lines (32 loc) • 1.01 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {};
popoverRoot: ({ theme }: any) => {
width: string;
borderRadius: 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;