parent
3636f155fc
commit
3dff61b966
3 changed files with 24 additions and 9 deletions
@ -0,0 +1,19 @@ |
||||
import { IconButton as MUIIconButton, styled } from '@mui/material'; |
||||
|
||||
import { |
||||
BLACK, |
||||
BORDER_RADIUS, |
||||
GREY, |
||||
TEXT, |
||||
} from '../../lib/consts/DEFAULT_THEME'; |
||||
|
||||
const IconButton = styled(MUIIconButton)({ |
||||
borderRadius: BORDER_RADIUS, |
||||
backgroundColor: GREY, |
||||
'&:hover': { |
||||
backgroundColor: TEXT, |
||||
}, |
||||
color: BLACK, |
||||
}); |
||||
|
||||
export default IconButton; |
@ -0,0 +1,3 @@ |
||||
import IconButton from './IconButton'; |
||||
|
||||
export default IconButton; |
Loading…
Reference in new issue