@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
44 lines (43 loc) • 1.43 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: {
theme: any;
}) => {
gap: any;
'& .SCLiveStreamInfoDetails-icon-text-wrapper': {
flexDirection: string;
alignItems: string;
gap: any;
'& > p': {
textTransform: string;
};
'& .SCLiveStreamInfoDetails-link': {
textDecoration: string;
color: any;
'&:hover': {
textDecoration: string;
};
'& .SCLiveStreamInfoDetails-url': {
overflow: string;
textOverflow: string;
display: string;
'-webkit-line-clamp': string;
'-webkit-box-orient': string;
};
};
'& .SCLiveStreamInfoDetails-in-progress': {
width: string;
height: string;
borderRadius: string;
backgroundColor: any;
};
};
'& .SCLiveStreamInfoDetails-creation-wrapper': {
flexDirection: string;
alignItems: string;
gap: any;
};
};
};
};
export default Component;