@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
29 lines (28 loc) • 737 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
color: any;
marginTop: any;
marginBottom: any;
borderRadius: string;
padding: any;
minWidth: number;
'& .MuiIcon-root': {
fontSize: string;
};
'&.MuiButton-sizeSmall': {
padding: any;
'& .MuiIcon-root': {
fontSize: string;
};
};
};
popperRoot: () => {
zIndex: number;
'& .SCVoteButton-reaction .MuiIcon-root': {
fontSize: string;
};
};
};
};
export default Component;