@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
45 lines (44 loc) • 1.31 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
marginTop: number;
'& > p: nth-of-type(2)': {
marginTop: any;
};
'& .SCUserProfileTemplate-tags': {
marginTop: any;
marginLeft: any;
justifyContent: string;
};
'& .SCUserProfileTemplate-counters': {
[x: number]: {
marginLeft: any;
};
marginLeft: any;
justifyContent: string;
display: string;
alignItems: string;
flexWrap: string;
};
'& .SCUserProfileTemplate-info': {
[x: number]: {
marginLeft: any;
};
marginLeft: any;
textAlign: string;
};
'& .SCUserProfileTemplate-feed': {
marginTop: any;
};
'& .SCUserProfileTemplate-actions': {
[x: number]: {
margin: any;
};
marginTop: any;
height: string;
};
};
skeletonRoot: ({ theme }: any) => {};
};
};
export default Component;