@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
57 lines (56 loc) • 1.7 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: {
theme: any;
}) => {
'& .SCCreateEventWidget-image': {
height: string;
};
'& .SCCreateEventWidget-calendar': {
position: string;
top: string;
left: string;
transform: string;
color: any;
};
'& .SCCreateEventWidget-content': {
padding: string;
'& .SCCreateEventWidget-title': {
textAlign: string;
marginBottom: any;
};
'& .SCCreateEventWidget-spacing': {
marginBottom: any;
};
};
'& .SCCreateEventWidget-actions': {
padding: string;
justifyContent: string;
};
};
skeletonRoot: ({ theme }: {
theme: any;
}) => {
'& .SCCreateEventWidget-calendar': {
position: string;
top: string;
left: string;
transform: string;
};
'& .SCCreateEventWidget-content': {
padding: string;
'& .SCCreateEventWidget-title': {
textAlign: string;
};
'& .SCCreateEventWidget-spacing': {
marginBottom: any;
};
};
'& .SCCreateEventWidget-actions': {
padding: string;
justifyContent: string;
};
};
};
};
export default Component;