@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
50 lines (49 loc) • 1.44 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: {
theme: any;
}) => {
marginBottom: any;
borderRadius: string;
boxShadow: string;
backgroundColor: any;
'& .MuiCardContent-root': {
'& .SCBaseItem-root': {
backgroundColor: string;
};
'& .MuiTypography-body1': {
[x: number]: {
fontSize: any;
};
fontWeight: number;
color: any;
};
};
'& .SCPaymentProductPrice-root': {
width: string;
paddingLeft: string;
};
};
skeletonRoot: ({ theme }: {
theme: any;
}) => {
marginBottom: any;
borderRadius: string;
boxShadow: string;
backgroundColor: any;
'& .MuiCardContent-root': {
marginBottom: any;
'& .SCBaseItem-root': {
backgroundColor: string;
boxShadow: string;
};
};
'& .SCPaymentProductPrice-skeleton-root': {
marginTop: any;
width: string;
paddingLeft: string;
};
};
};
};
export default Component;