{# ========================================================================= #}
{# :: 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 password in order to define the correct type of input.
This will hide the password and display dots instead.

{% endset %}

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

{{input.password("", {
    label: "Password input",
    name: "styleguide-password-example1",
    placeholder: "Password input placeholder"
})}}

{{input.password("", {
    label: "Password input",
    name: "styleguide-password-example2",
    placeholder: "Password input placeholder",
    isDisabled: true
})}}

{% endset %}

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

{% endset %} #}
