Demos
variant
Setting property variant
is 'information'
default New
Code Editor
<Badge content="New" />
Text Info Text
Code Editor
<div> Text <Badge content="Info" variant="information" /> Text </div>
Persons:ANy
Code Editor
<Badge content="Ny" variant="information"> <Avatar.Group label="Persons:"> <Avatar size="large" variant="secondary"> A </Avatar> </Avatar.Group> </Badge>
variant
'notification'
Notifications: 1
Code Editor
<Badge content={1} label="Notifications:" variant="notification" />
Text Notifications: 1 Text
Code Editor
<div> Text <Badge content={1} label="Notifications:" variant="notification" />{' '} Text </div>
Persons:ANotifications: 1
Code Editor
<Badge content={1} label="Notifications:" variant="notification"> <Avatar.Group label="Persons:"> <Avatar size="large">A</Avatar> </Avatar.Group> </Badge>
horizontal
and vertical
Setting property vertical
'top' horizontal
'left'
Persons:ANotifications: 9+
Code Editor
<Badge content={66} label="Notifications:" vertical="top" horizontal="left" variant="notification" > <Avatar.Group label="Persons:"> <Avatar size="large">A</Avatar> </Avatar.Group> </Badge>
vertical
'top' horizontal
'right'
Persons:ANotifications: 1
Code Editor
<Badge content={1} label="Notifications:" vertical="top" horizontal="right" variant="notification" > <Avatar.Group label="Persons:"> <Avatar size="large">A</Avatar> </Avatar.Group> </Badge>
vertical
'bottom' horizontal
'left'
Persons:ANotifications: 9+
Code Editor
<Badge content={13} label="Notifications:" vertical="bottom" horizontal="left" variant="notification" > <Avatar.Group label="Persons:"> <Avatar size="large">A</Avatar> </Avatar.Group> </Badge>
vertical
'bottom' horizontal
'right'
Persons:ANotifications: 9+
Code Editor
<Badge content={58} label="Notifications:" vertical="bottom" horizontal="right" variant="notification" > <Avatar.Group label="Persons:"> <Avatar size="large">A</Avatar> </Avatar.Group> </Badge>
Alternatives
Code Editor
<Badge content={<Icon icon={Confetti} />}> <Img src="https://avatars.githubusercontent.com/u/1501870?v=4" alt="Profile picture" height="64" width="64" /> </Badge>
Notifications: 9+
Code Editor
<Badge content={99} label="Notifications:" variant="notification" vertical="top" horizontal="right" > <Icon icon={Email} size="x-large" /> </Badge>