@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
66 lines (65 loc) • 2.09 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .SCContributionActionsMenu-button': {
color: any;
'&:hover': {
backgroundColor: string;
};
};
'& .SCContributionActionsMenu-visibility-icons': {
color: any;
'& > span: nth-of-type(2)': {
position: string;
top: number;
};
};
};
popperRoot: ({ theme }: any) => {
zIndex: number;
'& .SCContributionActionsMenu-popper-root': {
overflow: string;
filter: string;
mt: number;
};
'& .SCContributionActionsMenu-paper': {
width: number;
'& .SCContributionActionsMenu-sub-item': {
'& .MuiListItemIcon-root': {
color: any;
};
'&:hover': {
backgroundColor: string;
};
};
};
'& .SCContributionActionsMenu-footer-sub-items': {
margin: string;
border: string;
padding: number;
borderRadius: number;
fontSize: number;
};
'& .SCContributionActionsMenu-selected-icon': {
marginLeft: number;
'&.MuiListItemIcon-root': {
width: string;
};
'& svg': {
fontSize: string;
};
};
'& .SCContributionActionsMenu-section-badge': {
padding: number;
minWidth: number;
height: number;
top: number;
};
'& .SCContributionActionsMenu-section-with-selection-icon': {
fontSize: number;
color: any;
};
};
};
};
export default Component;