@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
23 lines (22 loc) • 603 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .SCUserCounters-button': {
color: any;
padding: any;
borderRadius: number;
fontSize: string;
fontWeight: any;
'& strong': {
display: string;
marginRight: any;
fontWeight: any;
};
'&:hover, &:active': {
color: any;
};
};
};
};
};
export default Component;