Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 482 Bytes

tag.md

File metadata and controls

35 lines (26 loc) · 482 Bytes

< Back to Components List

Tag

polaris-tag implements the Polaris Tag component.

Examples

Tag inline usage:

{{polaris-tag
  text="Wholesale"
  onRemove=(action "myTagRemoveAction")
}}

Tag block usage:

{{#polaris-tag
  onRemove=(action "myTagRemoveAction")
}}
  Wholesale
{{/polaris-tag}}

Disabled tag:

{{polaris-tag
  text="Disabled"
  disabled=true
}}