@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
57 lines (56 loc) • 1.72 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme, enrolled }: {
theme: any;
enrolled: any;
}) => {
padding: number;
gap: any;
marginTop: string;
minWidth: string;
'&:hover': {
backgroundColor: string;
};
'& .MuiAvatarGroup-root': {
'&:not(.SCAvatarCourseSkeleton-root) .MuiAvatar-root': {
'&.MuiAvatar-colorDefault': {
marginLeft: number;
backgroundColor: string;
color: any;
border: string;
borderRadius: number;
padding: number;
};
};
'& .MuiAvatar-root': {
height: any;
border: string;
fontSize: string;
'&:first-of-type': {
width: any;
};
'&:not(:first-of-type)': {
width: any;
};
};
};
'& .SCCourseParticipantsButton-participants': {
color: any;
'& .MuiIcon-root': {
marginRight: any;
};
};
};
dialogRoot: ({ theme }: {
theme: any;
}) => {
'& .SCCourseParticipantsButton-infinite-scroll': {
[x: number]: {
height: string;
};
height: string;
};
};
};
};
export default Component;