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

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

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

Replace the `<input>` by a `<textarea>` and add the modifier a-input--textarea
to apply the correct styling.

{% endset %}

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

{{input.textarea("", {
  label: "Textarea",
  name: "styleguide-textarea-example1",
  placeholder: "Textarea placeholder"
})}}

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

{% endset %}

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

{% endset %} #}
