@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
44 lines (43 loc) • 1.34 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
width: string;
'& .SCCommentsFeedObject-no-comments': {
padding: any;
paddingLeft: number;
};
'& .SCCommentsFeedObject-comment-not-found': {
padding: any;
};
'& .SCCommentObject-root': {
'& > div': {
background: string;
};
};
'& .SCCommentObject-skeleton-root': {
background: string;
boxShadow: string;
border: number;
margin: any;
'& .SCBaseItem-text': {
'& .SCWidget-root': {
'& .MuiCardContent-root': {
padding: any;
};
};
};
};
'& .SCCommentsObject-skeleton-root': {
marginBottom: any;
};
'& .SCCommentObjectReply-root': {
background: string;
'& .SCCommentObjectReply-comment': {
marginBottom: any;
};
};
};
skeletonRoot: ({ theme }: any) => {};
};
};
export default Component;