{# ========================================================================= #}
{# :: Imports #}
{# ========================================================================= #}
{% import "styleguides/general/atoms/button/button-macros.njk" as button %}

{# ========================================================================= #}
{# :: Settings #}
{# ========================================================================= #}
{% set params = {
  isFullWidth: false,
  styleVendors: [],
  scriptVendors: [],
  scope: "s-button"
} %}

{# ========================================================================= #}
{# :: Info #}
{# ========================================================================= #}
{% set info %}

The secondary button indicates a less important action compared to the primary
button.

- a-button--secondary

{% endset %}

{# ========================================================================= #}
{# :: Preview #}
{# ========================================================================= #}
{% set preview %}

{{button.default("a-button--secondary", {
  text: "Secondary button"
})}}

{{button.default("a-button--secondary icon-arrow-right", {
  text: "Secondary button"
})}}

{{button.default("a-button--secondary a-button--icon-after icon-arrow-right", {
  text: "Secondary button"
})}}

{{button.defaultDisabled("a-button--secondary", {
  text: "Secondary button"
})}}

{% endset %}

{# ========================================================================= #}
{# :: Code #}
{# ========================================================================= #}
{# {% set code %}

{% endset %} #}
