@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
36 lines (35 loc) • 1.03 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .SCUserInfo-field': {
marginBottom: any;
'& h6': {
fontSize: string;
fontWeight: any;
marginBottom: any;
};
'&:last-of-type': {
marginBottom: number;
};
};
};
skeletonRoot: ({ theme }: any) => {};
dialogRoot: ({ theme }: any) => {
'& .SCUserInfo-caption': {
marginTop: any;
textAlign: string;
'& .SCUserInfo-avatar': {
margin: any;
width: any;
height: any;
};
'& .SCUserInfo-username': {
fontWeight: any;
fontSize: string;
marginBottom: any;
};
};
};
};
};
export default Component;