Tag
The Tag component renders Bulma’s tag element — a small badge for labels, statuses, or counts.
Basic tag
Section titled “Basic tag” Default
<Tag>Default</Tag>Colors
Section titled “Colors”<Tag color="primary">Primary</Tag><Tag color="link">Link</Tag><Tag color="info">Info</Tag><Tag color="success">Success</Tag><Tag color="warning">Warning</Tag><Tag color="danger">Danger</Tag><Tag color="dark">Dark</Tag><Tag color="light">Light</Tag><Tag size="small" color="info">Small</Tag><Tag color="info">Normal</Tag><Tag size="medium" color="info">Medium</Tag><Tag size="large" color="info">Large</Tag>Light variant
Section titled “Light variant”<Tag color="primary" light>Primary light</Tag><Tag color="danger" light>Danger light</Tag>Rounded
Section titled “Rounded”<Tag color="info" rounded>Rounded</Tag>Delete tag
Section titled “Delete tag”When isDelete is set, the tag renders as a delete/close button with no slot content.
<div class="tags"> <Tag>Label <Tag isDelete /></Tag></div>| Prop | Type | Default | Description |
|---|---|---|---|
color | "primary" | "link" | "info" | "success" | "warning" | "danger" | "light" | "dark" | "white" | "black" | — | Bulma color modifier. |
size | "small" | "normal" | "medium" | "large" | — | Size modifier. |
light | boolean | — | Light variant. |
rounded | boolean | — | Rounded pill shape. |
isDelete | boolean | — | Renders as a delete/close button (no slot content). |
title | string | — | Tooltip title attribute. |
class | string | — | Extra CSS classes. |
... | * | — | Any other HTML span attributes. |