textarea
Textareas collect data from the user and allow multiple lines of text.
Usage
textarea(label="Comments")Options
Add interactive features with shorthand attributes.
textarea(label="Feedback" placeholder="What do you think?" with-count)Attributes
| Name | Type | Default | Description |
|---|---|---|---|
label | string | - | The textarea label. |
placeholder | string | - | Placeholder text. |
rows | number | 4 | Number of rows. |
resize | none | vertical | horizontal | both | auto | vertical | Resizing behavior. |
size | small | medium | large | medium | Textarea size. |
disabled | boolean | false | Prevents interaction. |
required | boolean | false | Marks as required. |
with-count | boolean | false | Shows a character count. |