@prabink/react-node-cli
Version:
React Node Application Generator & Helpers To Serve React Build, Push to github & Export industry level react project structure
43 lines (41 loc) • 1.04 kB
JavaScript
// ----------------------------------------------------------------------
export default function Button(theme) {
return {
MuiButton: {
styleOverrides: {
root: {
'&:hover': {
boxShadow: 'none'
}
},
sizeLarge: {
height: 48
},
containedInherit: {
color: theme.palette.grey[800],
boxShadow: theme.customShadows.z8,
'&:hover': {
backgroundColor: theme.palette.grey[400]
}
},
containedPrimary: {
boxShadow: theme.customShadows.primary
},
containedSecondary: {
boxShadow: theme.customShadows.secondary
},
outlinedInherit: {
border: `1px solid ${theme.palette.grey[500_32]}`,
'&:hover': {
backgroundColor: theme.palette.action.hover
}
},
textInherit: {
'&:hover': {
backgroundColor: theme.palette.action.hover
}
}
}
}
};
}