Chip
Compact interactive token. Leading icon or avatar; optional remove button.
Conference Room A
<Chip>Conference Room A</Chip>Active
<Chip icon={faFilter}>Active</Chip>AGAshley Green
<Chip avatarInitials="AG">Ashley Green</Chip>Conference Room A
<Chip removable onRemove={() => setValue(null)}>
Conference Room A
</Chip>Active
<Chip
icon={faFilter}
removable
onRemove={() => setValue(null)}
>
Active
</Chip>Disabled chip
<Chip disabled>Disabled chip</Chip>icon:IconDefinitionLeading icon. Mutually exclusive with avatarSrc/avatarInitials.
avatarInitials:stringLeading avatar initials.
removable:boolean= falseShow trailing remove (×) button.
onRemove:() => voidCalled when the remove button is clicked.
disabled:boolean= falseDisabled state — reduced opacity.