{{! Copyright 2020, Verizon Media. Licensed under the terms of the MIT license. See accompanying LICENSE.md file for terms. }}
<span class="tag
  {{this.isActiveClass}}
  {{this.isDisabledClass}}
  {{this.isOutlinedClass}}
  {{this.isSmallClass}}
  {{this.hasIconFront}}
  {{this.hasIconBack}}"
  ...attributes
>
  {{#if this.iconFront}}
    <i class="d-icon d-{{this.iconFront}}" />
  {{/if}}

  {{yield}}

  {{#if this.iconBack}}
    <i class="d-icon d-{{this.iconBack}}" />
  {{/if}}
</span>