@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
43 lines (42 loc) • 1.33 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
boxShadow: string;
position: string;
display: string;
flexWrap: string;
width: string;
paddingBottom: any;
'& .SCCommentsObject-load-more-comments-button': {
textTransform: string;
padding: any;
};
'& .SCCommentsObject-load-previous-comments-button': {
textTransform: string;
padding: any;
};
'& .SCCommentsObject-comments-counter': {
paddingRight: any;
};
'& .SCCommentsObject-pagination-link': {
display: string;
};
'& .SCCommentsObject-pagination': {
width: string;
'& button': {
fontWeight: any;
textDecoration: string;
textUnderlineOffset: number;
textDecorationStyle: string;
};
'& .SCCommentsObject-comments-counter': {
fontSize: string;
};
};
};
skeletonRoot: ({ theme }: any) => {
width: string;
};
};
};
export default Component;