@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
33 lines (32 loc) • 962 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .SCLessonCommentActionsMenu-button': {
color: any;
'&:hover': {
backgroundColor: string;
};
};
};
popperRoot: ({ theme }: any) => {
zIndex: number;
'& .SCLessonCommentActionsMenu-popper-root': {
overflow: string;
filter: string;
mt: number;
};
'& .SCLessonCommentActionsMenu-paper': {
width: number;
'& .SCLessonCommentActionsMenu-sub-item': {
'& .MuiListItemIcon-root': {
color: any;
};
'&:hover': {
backgroundColor: string;
};
};
};
};
};
};
export default Component;