import * as React from
"react"
;
import Badge from
"@mui/material/Badge"
;
import Stack from
"@mui/material/Stack"
;
import MailIcon from
"@mui/icons-material/Mail"
;
import NotificationsIcon from
"@mui/icons-material/Notifications"
;
export
default
function
ColorBadge() {
return
(
<>
<h1 style={{ color:
"green"
}}>GeeksForGeeks</h1>
<Stack spacing={5} direction=
"row"
>
<Badge badgeContent={0} color=
"success"
>
<MailIcon color=
"action"
/>
</Badge>
<Badge badgeContent={0} color=
"success"
showZero>
<MailIcon color=
"action"
/>
</Badge>
</Stack>
<br />
<br />
<Stack spacing={5} direction=
"row"
>
<Badge badgeContent={50} color=
"error"
>
<NotificationsIcon color=
"action"
/>
</Badge>
<Badge badgeContent={100} color=
"error"
>
<NotificationsIcon color=
"action"
/>
</Badge>
<Badge badgeContent={555} max={500} color=
"error"
>
<NotificationsIcon color=
"action"
/>
</Badge>
</Stack>
</>
);
}