@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
31 lines (30 loc) • 946 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
height: string;
width: string;
overflowY: string;
};
dialogRoot: ({ theme }: any) => {
"& .SCLiveStreamVideoConference-end-conference-wrap": {
display: string;
justifyContent: string;
alignItems: string;
alignContent: string;
flexDirection: string;
textAlign: string;
"& .SCLiveStreamVideoConference-logo": {
img: {
maxHeight: number;
maxWidth: number;
};
marginBottom: any;
};
"& .SCLiveStreamVideoConference-btn-back-home": {
marginTop: any;
};
};
};
};
};
export default Component;