@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
21 lines (20 loc) • 601 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
root: ({ theme }) => ({
'& .SCPaymentOrder-details': {
marginTop: theme.spacing(),
marginLeft: theme.spacing(),
'& p': {
marginBottom: theme.spacing()
},
'& .SCPaymentOrderPdfButton-root': {
marginTop: theme.spacing()
}
}
}),
skeletonRoot: ({ theme }) => ({})
}
};
exports.default = Component;
;