Chip represents entities using icons, labels and images.
import { Chip } from 'primereact/chip';
A basic chip with a text is created with the label property. In addition when removable is added, a delete icon is displayed to remove a chip.
<Chip label="Action" />
<Chip label="Comedy" />
<Chip label="Mystery" />
<Chip label="Thriller" removable />
A font icon next to the label can be displayed with the icon property.
<Chip label="Apple" icon="pi pi-apple" />
<Chip label="Facebook" icon="pi pi-facebook" />
<Chip label="Google" icon="pi pi-google" />
<Chip label="Microsoft" icon="pi pi-microsoft" removable />
The image property is used to display an image like an avatar.
<Chip label="Amy Elsner" image="/images/avatar/amyelsner.png" />
<Chip label="Asiya Javayant" image="/images/avatar/asiyajavayant.png" />
<Chip label="Onyama Limba" image="/images/avatar/onyamalimba.png" />
<Chip label="Xuxue Feng" image="/images/avatar/xuxuefeng.png" removable />
The template property allows displaying custom content inside a chip.
<Chip template={content} />
Following is the list of structural style classes, for theming classes visit theming page.
Name | Element |
---|---|
p-chip | Container element. |
p-chip-image | Container element in image mode. |
p-chip-text | Text of the chip. |
pi-chip-remove-icon | Remove icon. |
Chip uses the label property as the default aria-label, since any attribute is passed to the root element aria-labelledby or aria-label can be used to override the default behavior. Removable chips have a tabIndex and focusable with the tab key.
Key | Function |
---|---|
backspace | Hides removable. |