@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
23 lines (22 loc) • 556 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: {
theme: any;
}) => {
'& .SCPaymentOrder-details': {
marginTop: any;
marginLeft: any;
'& p': {
marginBottom: any;
};
'& .SCPaymentOrderPdfButton-root': {
marginTop: any;
};
};
};
skeletonRoot: ({ theme }: {
theme: any;
}) => {};
};
};
export default Component;