{{!-- BEGIN-SNIPPET nypr-a-kicker.hbs --}}
{{#if @url}}
  <a
    href={{@url}}
    target="_blank"
    rel="noopener"
    class="o-kicker"
    ...attributes>
    {{#if (has-block)}}
      {{yield}}
    {{else}}
      {{@text}}
    {{/if}}
  </a>
{{else if @route}}
  <LinkTo
    @params={{@route}}
    class='o-kicker'
    ...attributes
  >
    {{#if (has-block)}}
      {{yield}}
    {{else}}
      {{@text}}
    {{/if}}
  </LinkTo>
{{else}}
  <span class="o-kicker" ...attributes>
    {{#if (has-block)}}
      {{yield}}
    {{else}}
      {{@text}}
    {{/if}}
  </span>
{{/if}}
{{!-- END-SNIPPET --}}
