{# ========================================================================= #}
{# :: Imports #}
{# ========================================================================= #}

{# ========================================================================= #}
{# :: Default #}
{# ========================================================================= #}
{% macro default(classes, data) %}

{% set controlLabel = data.ariaLabel or data.label or "Hoofdactie" %}

{% if data.url %}
  <a
    class="a-main-action {{data.icon}} {{classes}} {{'js-overlay-trigger' if data.overlay}}"
    href="{{data.url}}"
    aria-label="{{controlLabel}}"
    {% if data.overlay %}data-overlay-target="{{data.overlay}}"{% endif %}
  ></a>
{% else %}
  <button
    type="button"
    class="a-main-action {{data.icon}} {{classes}} {{'js-overlay-trigger' if data.overlay}}"
    aria-label="{{controlLabel}}"
    {% if data.overlay %}data-overlay-target="{{data.overlay}}"{% endif %}
  ></button>
{% endif %}

{% endmacro %}
