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

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

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

This variation is used to create a button without any background or border. It
only displays the text of the button. This can be combined with other modifiers
to get a different result for the text.

- a-button--ghost

{% endset %}

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

{{button.default("a-button--ghost", {
  text: "Ghost button"
})}}

{{button.default("a-button--ghost icon-turn-off", {
  text: "Ghost button"
})}}

{{button.default("a-button--ghost icon-turn-off a-button--icon-after", {
  text: "Ghost button"
})}}

{% endset %}

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

{{button.default("a-button--ghost", {
  text: "Ghost button"
})}}

{% endset %}
