24 lines
639 B
JavaScript
24 lines
639 B
JavaScript
|
|
import Badge from '@mui/material/Badge';
|
||
|
|
import { styled } from '@mui/material/styles';
|
||
|
|
import IconButton from '@mui/material/IconButton';
|
||
|
|
import ShoppingCartIcon from '@mui/icons-material/ShoppingCart';
|
||
|
|
|
||
|
|
const StyledBadge = styled(Badge)(({ theme }) => ({
|
||
|
|
'& .MuiBadge-badge': {
|
||
|
|
right: -3,
|
||
|
|
top: 13,
|
||
|
|
border: `2px solid ${(theme.vars ?? theme).palette.background.paper}`,
|
||
|
|
padding: '0 4px',
|
||
|
|
},
|
||
|
|
}));
|
||
|
|
|
||
|
|
export default function CustomizedBadges() {
|
||
|
|
return (
|
||
|
|
<IconButton aria-label="cart">
|
||
|
|
<StyledBadge badgeContent={4} color="secondary">
|
||
|
|
<ShoppingCartIcon />
|
||
|
|
</StyledBadge>
|
||
|
|
</IconButton>
|
||
|
|
);
|
||
|
|
}
|