<!-- Default -->
<a href="#" class="button-p2 button-p2--default  " role="button">Secondary</a>
<!-- Disabled -->
<a href="#" class="button-p2 button-p2--default  disabled" role="button">Secondary</a>
<!-- With Icon -->
<a href="#" class="button-p2 button-p2--with-icon  " role="button">Secondary</a>
<!-- Disabled With Icon -->
<a href="#" class="button-p2 button-p2--with-icon  disabled" role="button">Secondary</a>
<!-- Icon Only -->
<!-- Icon Only Inactive -->
{{#if url}}
    {{#if text}}
        <a href="{{url}}" class="button-p2 {{#if modifier}}button-p2--{{modifier}}{{/if}} {{#if cssClasses}}{{cssClasses}}{{/if}} {{#if disabled}}disabled{{/if}}" role="button" {{#if target}}target="{{target}}"{{#ifEquals target "_blank"}} rel="noopener"{{/ifEquals}}{{/if}}>{{{text}}}</a>
    {{/if}}
{{/if}}
/* Default */
{
  "modifier": "default",
  "url": "#",
  "text": "Secondary"
}
/* Disabled */
{
  "modifier": "default",
  "url": "#",
  "text": "Secondary",
  "disabled": true
}
/* With Icon */
{
  "modifier": "with-icon",
  "url": "#",
  "text": "Secondary"
}
/* Disabled With Icon */
{
  "modifier": "with-icon",
  "url": "#",
  "text": "Secondary",
  "disabled": true
}
/* Icon Only */
{
  "modifier": "icon-only",
  "url": "#",
  "text": ""
}
/* Icon Only Inactive */
{
  "modifier": "icon-only",
  "url": "#",
  "text": "",
  "disabled": true
}

There are no notes for this item.