@teravn/onui
Version:
The React UI component library is based on MUI
21 lines (18 loc) • 515 B
text/typescript
// ** Util Import
import { OwnerStateThemeType } from '.'
const IconButton = () => {
return {
MuiIconButton: {
styleOverrides: {
root: ({ ownerState, theme }: OwnerStateThemeType) => ({
padding: 10,
'&:hover': {
color: theme.palette.primaryColor500.main,
backgroundColor: 'transparent'
}
})
}
}
}
}
export default IconButton