@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
31 lines (30 loc) • 917 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
padding: any;
};
skeletonRoot: ({ theme }: any) => {
'& .SCPlatformWidget-skeleton-content': {
padding: any;
};
'& .SCPlatformWidget-skeleton-title': {
display: string;
justifyContent: string;
alignItems: string;
paddingBottom: any;
};
'& .SCPlatformWidget-skeleton-actions': {
display: string;
justifyContent: string;
alignItems: string;
paddingBottom: any;
};
'& .SCPlatformWidget-skeleton-tutorial': {
display: string;
justifyContent: string;
alignItems: string;
};
};
};
};
export default Component;