@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
19 lines (18 loc) • 591 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Component = {
styleOverrides: {
buyButtonRoot: ({ theme }) => ({
border: `1px solid transparent`,
'&:hover, &:active': {
backgroundColor: theme.palette.common.white,
color: theme.palette.primary.main,
border: `1px solid ${theme.palette.primary.main}`,
'& .MuiIcon-root': {
color: theme.palette.primary.main
}
}
})
}
};
exports.default = Component;