@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
33 lines (32 loc) • 1.05 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme, subscribers }: any) => {
padding: any;
'& .MuiAvatarGroup-root': {
'&:not(.SCAvatarGroupSkeleton-root) .MuiAvatar-root': {
'&.MuiAvatar-colorDefault': {
marginLeft: number;
backgroundColor: string;
color: any;
border: string;
borderRadius: number;
padding: number;
};
};
'& .MuiAvatar-root': {
height: any;
border: string;
fontSize: string;
'&:first-of-type': {
width: any;
};
'&:not(:first-of-type)': {
width: any;
};
};
};
};
dialogRoot: () => {};
};
};
export default Component;