@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
32 lines (31 loc) • 932 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {};
skeletonRoot: ({ theme }: any) => {};
dialogRoot: ({ theme }: any) => {};
pollSnippetRoot: ({ theme }: any) => {
'& > div': {
alignItems: string;
paddingTop: any;
};
'& .SCBaseItem-text': {
marginTop: number;
};
'& .SCPollSuggestionWidget-username': {
color: any;
fontWeight: any;
textDecoration: string;
};
'& .SCPollSuggestionWidget-avatar': {
width: any;
height: any;
};
'& .SCPollSuggestionWidget-activity-at': {
textDecoration: string;
color: string;
marginTop: number;
};
};
};
};
export default Component;