@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
35 lines (34 loc) • 991 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: {
theme: any;
}) => {
'& .SCCheckoutHeaderInfoWidget-header': {
height: any;
position: string;
backgroundColor: any;
color: string;
textAlign: string;
'& img': {
position: string;
left: string;
top: any;
transform: string;
};
'& .MuiIcon-root': {
top: any;
position: string;
};
};
'& .SCCheckoutHeaderInfoWidget-content': {
padding: any;
justifyContent: string;
'& .MuiTypography-body2': {
paddingTop: any;
whiteSpace: string;
};
};
};
};
};
export default Component;