@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
51 lines (50 loc) • 1.56 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
[x: number]: {
height: string;
};
display: string;
flexDirection: string;
height: string;
overflowY: string;
padding: any;
justifyContent: string;
'& .SCCommentObjectReply-root': {
backgroundColor: string;
'& .SCEditor-root': {
paddingTop: any;
};
'& .SCEditor-content': {
minHeight: string;
};
'& .SCEditor-actions': {
left: any;
'& .SCCommentObjectReply-icon-reply': {
marginLeft: string;
};
};
marginTop: string;
marginBottom: number;
};
'& .infinite-scroll-component__outerdiv': {
overflowY: string;
marginBottom: any;
'& .infinite-scroll-component': {
'& .MuiList-root ': {
padding: number;
'& .MuiListItem-root': {
padding: number;
};
};
};
};
};
skeletonRoot: ({ theme }: any) => {
width: string;
backgroundColor: string;
padding: any;
};
};
};
export default Component;