Use the textarea component to let users enter text that is longer than a single line.
Do not use the textarea component to let users enter:
In these cases, use input component instead.
The textarea component is a form element that should always be used in a form. For a description of the usage, the behavior, the layout and validation of form elements, see the form component documentation.
{% include '@form-item' with _context %}
<div class="form-item ">
<label for="textearea">Textarea
</label>
<div class="form-columns">
<div class="form-item-column">
<textarea name="textearea" id="textearea">
</textarea>
</div>
<div class="form-item-column">
</div>
</div>
</div>
{
"id": "textearea",
"input_component": "input-textarea",
"label": "Textarea"
}