textarea
This component uses the same base styling as form/form-element/input.
Information
- Folder
src/components/elements/textarea
Files
Schema
Mocks
Template
// src/components/elements/textarea/textarea.twig
<textarea
{{ attributes }}
class="Input Input--textarea Textarea {{ classes|join(" ") }}"
{% if id %} id="{{ id }}"{% endif %}
{% if name %} name="{{ name }}"{% endif %}
{% if disabled %} disabled{% endif %}
{% if required %} required{% endif %}
{% if invalid %} aria-invalid="true"{% endif %}
>{{ value }}</textarea>