webflow svelte components logoWFS

Textarea

Form field for multi-line text entry.

Usage

<script lang="ts">
  import { Textarea } from '$lib/components/textarea';
</script>
<Textarea placeholder="Type your message here" />

Properties

PropTypeDefault
placeholder
string
-
disabled
boolean
-
error
boolean
-
value
string
-

Examples

Error

Use the error property to indicate that the textarea has an error.

Disabled

Use the disabled property to prevent users from interacting with the textarea.

On this page