Chips

Chips используются для фильтров, коротких labels, selectable states и removable tokens.

Static chips

Primary Secondary Success Warning Error Filtered

Selectable chips

Removable chips

Frontend Design Review
Static Chips HTML
<div class="chip-group">
  <span class="chip chip-primary">Primary</span>
  <span class="chip chip-secondary">Secondary</span>
  <span class="chip chip-success">Success</span>
  <span class="chip">
    <i class="ph ph-funnel"></i>
    Filtered
  </span>
</div>
Selectable Chips HTML
<div class="chip-group" aria-label="Filter chips">
  <button class="chip chip-selected" type="button" aria-pressed="true">Active</button>
  <button class="chip" type="button" aria-pressed="false">Queued</button>
  <button class="chip" type="button" aria-pressed="false">Failed</button>
</div>
Removable Chips HTML
<span class="chip">
  Frontend
  <button class="chip-remove" type="button" aria-label="Remove Frontend">
    <i class="ph ph-x"></i>
  </button>
</span>