@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
41 lines (40 loc) • 1.14 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
[x: number]: {
borderRadius: any;
};
borderRadius: number;
paddingBottom: number;
overflow: string;
'& .MuiChip-root': {
height: string;
};
'& .SCUser-avatar': {
width: any;
height: any;
'& img': {
borderRadius: number;
};
};
'& .SCUser-staff-badge-label': {
marginLeft: any;
borderRadius: number;
fontSize: string;
};
'& .SCUser-group-admin-badge-label': {
marginLeft: any;
fontSize: string;
color: any;
};
'& .SCBaseItemButton-primary': {
fontWeight: any;
};
'& .SCBaseItemButton-secondary': {
fontSize: string;
};
};
skeletonRoot: ({ theme }: any) => {};
};
};
export default Component;