@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
19 lines • 489 B
JavaScript
import { IconButton, styled } from '@mui/material';
export var CustomIconButton = styled(IconButton)(function (_ref) {
var theme = _ref.theme;
return {
backgroundColor: theme.palette.background["default"]
// '&:hover': {
// backgroundColor: 'rgba(259, 259, 259, 0.4)',
// },
};
});
export var BoxIcon = styled('div')(function () {
return {
width: '24px',
height: '24px',
display: 'flex',
justifyContent: 'center',
alignItems: 'center'
};
});