@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
74 lines (73 loc) • 2.17 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .SCLiveStreamSelector-warning': {
margin: any;
"& a": {
color: any;
fontWeight: string;
textDecoration: string;
whiteSpace: string;
};
};
'& .SCLiveStreamSelector-options': {
[x: number]: {
display: string;
};
display: string;
justifyContent: string;
alignItems: string;
'& > div': {
[x: number]: {
margin: string;
marginBottom: any;
};
width: string;
};
};
'& .SCLiveStreamSelector-actions': {
display: string;
justifyContent: string;
alignItems: string;
marginTop: any;
};
};
optionCardRoot: ({ theme, selected }: any) => {
maxWidth: number;
height: string;
minHeight: number;
padding: any;
margin: any;
cursor: string;
transition: any;
backgroundColor: any;
'&:hover': {
backgroundColor: any;
boxShadow: any;
};
border: string;
"& > div": {
display: string;
justifyContent: string;
alignItems: string;
marginBottom: number;
maxWidth: string;
};
"& ul": {
marginTop: any;
padding: number;
listStyle: string;
};
};
featureItemRoot: ({ theme, selected }: any) => {
display: string;
alignItems: string;
gap: any;
marginBottom: any;
'&:last-child': {
marginBottom: number;
};
};
};
};
export default Component;