@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
55 lines (54 loc) • 1.68 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .MuiButton-startIcon': {
marginRight: any;
'& .MuiIcon-root': {
fontSize: string;
};
};
};
dialogRoot: ({ theme }: any) => {
'& .SCBaseDialog-title-root span ': {
width: string;
display: string;
alignItems: string;
justifyContent: string;
'& .SCEventInviteButton-dialog-title': {
fontWeight: any;
fontSize: any;
};
};
'& .SCEventInviteButton-input': {
backgroundColor: string;
borderRadius: any;
height: any;
padding: any;
'& .SCEventInviteButton-icon ': {
marginLeft: any;
};
'&.Mui-focused .MuiOutlinedInput-notchedOutline': {
border: string;
};
};
'& .SCEventInviteButton-invited-box': {
marginTop: any;
marginBottom: any;
'& .MuiChip-root': {
marginBottom: any;
};
};
'& .SCEventInviteButton-suggested': {
'& h4': {
marginBottom: any;
};
'& .SCUser-root': {
'&:hover': {
backgroundColor: string;
};
};
};
};
};
};
export default Component;