ConstThe properties for the Badge component
A rendered Badge component
// Basic usage
<Badge badgeContent={4}>
<MailIcon />
</Badge>
// With custom color
<Badge
badgeContent={100}
color="secondary"
max={99}
>
<NotificationsIcon />
</Badge>
// With custom styling
<Badge
badgeContent={4}
sx={{
'& .MuiBadge-badge': {
backgroundColor: 'custom.main'
}
}}
>
<IconButton>
<MessageIcon />
</IconButton>
</Badge>
A customized Material-UI Badge component.