Tag

Tag component is used to categorize content.


import { TagModule } from 'primeng/tag';

Label of the tag is defined with the value property.

New

<p-tag value="New"></p-tag>

Severity defines the color of the tag, possible values are success, info, warning and danger in addition to the default theme color.

PrimarySuccessInfoWarningDanger

<p-tag severity="success" value="Success"></p-tag>

Enabling rounded, displays a tag as a pill.

PrimarySuccessInfoWarningDanger

<p-tag value="Primary" [rounded]="true"></p-tag>

A font icon next to the value can be displayed with the icon property.

PrimarySuccessInfoWarningDanger

<p-tag icon="pi pi-user" value="Primary"></p-tag>

Children of the component are passed as the content for templating.

CountryItalia

<p-tag [style]="{ 'background': 'linear-gradient(-225deg,#AC32E4 0%,#7918F2 48%,#4801FF 100%)'}">
    <div class="flex align-items-center gap-2">
        <img alt="Country" src="https://primefaces.org/cdn/primeng/images/demo/flag/flag_placeholder.png" class="flag flag-it" style="width: '18px'" />
        <span class="text-base">Italia</span>
        <i class="pi pi-times text-xs"></i>
    </div>
</p-tag>

Following is the list of structural style classes, for theming classes visit theming page.

NameElement
p-tagTag element
p-tag-roundedRounded element
p-tag-iconIcon of the tag
p-tag-valueValue of the tag

Screen Reader

Tag does not include any roles and attributes by default, any attribute is passed to the root element so aria roles and attributes can be added if required. If the tags are dynamic,aria-live may be utilized as well. In case badges need to be tabbable, tabIndex can be added to implement custom key handlers.

Keyboard Support

Component does not include any interactive elements.