Badge Component
Sizes
Three sizes
Small
Medium
Large
razor
<Badge Text="Small" Size="sm" Color="brand" />
<Badge Text="Medium" Size="md" Color="brand" />
<Badge Text="Large" Size="lg" Color="brand" />Shapes
Pill and rounded
Pill
Rounded
Pill
Rounded
razor
<Badge Text="Pill" Size="md" Color="brand" Shape="pill" />
<Badge Text="Rounded" Size="md" Color="brand" Shape="rounded" />
<Badge Text="Pill" Size="lg" Color="brand" Shape="pill" />
<Badge Text="Rounded" Size="lg" Color="brand" Shape="rounded" />Color variants — filled
All colors, filled
GrayBrandErrorWarningSuccessGray-blueBlue-lightBlueIndigoPurplePinkOrange
razor
@* Colors: gray, brand, error, warning, success,
gray-blue, blue-light, blue, indigo, purple, pink, orange *@
<Badge Text="Brand" Size="md" Color="brand" />
<Badge Text="Success" Size="md" Color="success" />
<Badge Text="Warning" Size="md" Color="warning" />
<Badge Text="Error" Size="md" Color="error" />Color variants — outline
All colors, outline
GrayBrandErrorWarningSuccessGray-blueBlue-lightBlueIndigoPurplePinkOrange
razor
<Badge Text="Brand" Size="md" Color="brand" Outline="true" />
<Badge Text="Success" Size="md" Color="success" Outline="true" />
<Badge Text="Warning" Size="md" Color="warning" Outline="true" />
<Badge Text="Error" Size="md" Color="error" Outline="true" />With dot
Status dot prefix
Label
Label
Label
Label
razor
<Badge Text="Label" Size="sm" Color="gray" ShowDot="true" />
<Badge Text="Label" Size="md" Color="brand" ShowDot="true" />
<Badge Text="Label" Size="lg" Color="success" ShowDot="true" />
<Badge Text="Label" Size="lg" Color="error" ShowDot="true" Outline="true" />With close button
Removable tags
Removable
Removable
Removable
razor
<Badge Text="Removable" Size="sm" Color="gray" ShowClose="true" />
<Badge Text="Removable" Size="md" Color="brand" ShowClose="true" />
<Badge Text="Removable" Size="lg" Color="error" ShowClose="true" />With arrow
Links to more
View all
View all
View all
razor
<Badge Text="View all" Size="sm" Color="gray" ShowArrow="true" />
<Badge Text="View all" Size="md" Color="brand" ShowArrow="true" />
<Badge Text="View all" Size="lg" Color="success" ShowArrow="true" />With count
Numeric suffix
Messages5
Messages12
Errors99
razor
<Badge Text="Messages" Size="sm" Color="gray" Count="5" />
<Badge Text="Messages" Size="md" Color="brand" Count="12" />
<Badge Text="Errors" Size="lg" Color="error" Count="99" />Icon only
Square badge with icon slot
razor
<Badge Size="sm" Color="gray" IconOnly="true">
<LeadingIcon>
<svg viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.5">
<path d="M6 3v6m-3-3h6" stroke-linecap="round" />
</svg>
</LeadingIcon>
</Badge>