@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
49 lines (48 loc) • 1.39 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
[x: number]: {
borderRadius: any;
};
borderRadius: number;
paddingBottom: number;
paddingLeft: any;
paddingRight: any;
overflow: string;
'& .SCBaseItemButton-image': {
'& .MuiAvatar-root': {
width: any;
height: any;
'& img': {
borderRadius: number;
};
};
};
'& .SCBaseItemButton-primary': {
display: string;
alignItems: string;
fontWeight: any;
'& .SCGroup-icon': {
marginLeft: any;
};
};
'& .SCBaseItemButton-secondary': {
fontSize: string;
};
'& .SCGroup-actions': {
'& .MuiIcon-root': {
fontSize: string;
color: any;
};
'& .MuiButtonBase-root': {
marginLeft: any;
};
};
};
skeletonRoot: ({ theme }: any) => {
paddingLeft: any;
paddingRight: any;
};
};
};
export default Component;