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

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

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

Change the input type to e-mail in order to define the correct type of input.

{% endset %}

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

{{input.email("", {
  label: "E-mail input",
  name: "styleguide-email-example1",
  placeholder: "E-mail input placeholder"
})}}

{{input.email("", {
  label: "E-mail input",
  name: "styleguide-email-example2",
  placeholder: "E-mail input placeholder",
  isDisabled: true
})}}

{% endset %}

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

{% endset %} #}
