@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
38 lines (37 loc) • 1.12 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .SCVoteAudienceButton-reaction-list': {
maxWidth: any;
overflow: string;
marginTop: any;
fontSize: string;
display: string;
flexDirection: string;
'& .MuiIcon-root': {
marginRight: any;
backgroundColor: string;
};
};
'& > .MuiIcon-root': {
fontSize: string;
marginTop: any;
};
};
dialogRoot: ({ theme }: any) => {
'& .SCVoteAudienceButton-dialog-tabs': {
'& .MuiTab-root': {
flexDirection: string;
justifyContent: string;
};
};
'& .SCVoteAudienceButton-dialog-vote-badge': {
width: any;
height: any;
backgroundColor: any;
border: string;
};
};
};
};
export default Component;