You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
357 B
19 lines
357 B
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;
|
|
|