@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
52 lines (51 loc) • 1.68 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .SCCommentsFeedObject-root': {
padding: any;
'& .SCCommentsObject-root h6': {
paddingLeft: any;
};
};
'& .SCFeedObject-detail': {
'& .SCFeedObject-content': {
'& .SCFeedObject-text-section .SCFeedObject-text': {
'& span': {
display: string;
};
'& span:not(:has(+ a))': {
width: string;
};
'& a': {
display: string;
margin: any;
};
'& a:hover': {
'& span': {
textDecoration: string;
};
};
};
};
};
};
skeletonRoot: ({ theme }: any) => {
marginTop: any;
'& .SCCommentsObject-skeleton-root': {
'& .SCWidget-root': {
marginBottom: string;
};
};
'& .SCCommentObject-skeleton-root': {
background: string;
boxShadow: string;
border: number;
paddingLeft: string;
'& .SCCommentObject-skeleton-root': {
marginBottom: string;
};
};
};
};
};
export default Component;