@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
46 lines (45 loc) • 1.43 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-media': {
maxWidth: number;
padding: any;
'& .SCMediaFile-media': {
height: string;
};
};
};
'& .SCCommentObjectReply-actions': {
marginLeft: any;
paddingBottom: any;
};
};
};
};
export default Component;