@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
40 lines (39 loc) • 1.14 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: {
theme: any;
}) => {
borderRadius: number;
boxShadow: string;
'& .SCPaymentProductPrice-primary': {
fontSize: string;
fontWeight: string;
color: string;
};
'& .SCPaymentProductPrice-button': {
textTransform: string;
'&:hover, &:active': {
backgroundColor: any;
color: any;
border: string;
'& .MuiIcon-root': {
color: any;
};
};
};
'& .SCPaymentProductPrice-button-purchased': {
backgroundColor: string;
color: string;
};
'& .SCPaymentProductPrice-purchased-at': {
textDecoration: string;
};
};
skeletonRoot: ({ theme }: {
theme: any;
}) => {
borderRadius: number;
};
};
};
export default Component;