@prabink/react-node-cli
Version:
React Node Application Generator & Helpers To Serve React Build, Push to github & Export industry level react project structure
27 lines (24 loc) • 564 B
JavaScript
// ----------------------------------------------------------------------
export default function IconButton(theme) {
return {
MuiIconButton: {
variants: [
{
props: { color: 'default' },
style: {
'&:hover': { backgroundColor: theme.palette.action.hover }
}
},
{
props: { color: 'inherit' },
style: {
'&:hover': { backgroundColor: theme.palette.action.hover }
}
}
],
styleOverrides: {
root: {}
}
}
};
}