@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
39 lines (38 loc) • 1.18 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
border: string;
marginBottom: any;
overflow: string;
'& .SCBaseItem-content': {
alignItems: string;
'& .SCBaseItem-text': {
marginTop: number;
marginBottom: number;
'& .SCBaseItem-secondary': {
overflow: string;
};
};
'& .SCBaseItem-image': {
marginTop: any;
'& .MuiBadge-badge': {
top: any;
};
'& .SCCommentObjectReply-avatar': {
width: any;
height: any;
};
};
};
'& .SCCommentObjectReply-comment': {
overflow: string;
borderRadius: number;
};
'& .SCCommentObjectReply-actions': {
marginLeft: any;
paddingBottom: any;
};
};
};
};
export default Component;