@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
47 lines (46 loc) • 1.55 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .SCCategories-filters': {
marginTop: any;
marginBottom: any;
};
'& .SCCategories-categories': {
marginTop: any;
'& .SCCategories-category': {
padding: any;
width: string;
'& > div': {
cursor: string;
};
'& .SCCategory-category-image': {
minWidth: number;
height: string;
borderTopLeftRadius: any;
borderBottomLeftRadius: any;
borderRadius: number;
};
};
};
};
skeletonRoot: ({ theme }: any) => {
'& .SCCategories-categories': {
marginTop: any;
'& .SCCategory-skeleton-root': {
padding: any;
width: string;
'& .SCBaseItem-image': {
borderTopLeftRadius: any;
borderBottomLeftRadius: any;
'& .SCCategory-image': {
borderRadius: number;
width: string;
height: string;
};
};
};
};
};
};
};
export default Component;