@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
17 lines (16 loc) • 511 B
JavaScript
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
}
}
})
}
};
export default Component;