import Badge, { BadgeProps } 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 ( ); }