Textarea
A multi-line text input field.
Loading preview…
1<script lang="ts">
2 import { Textarea } from './index.js';
3</script>
4
5<Textarea placeholder="Type your message here." class="max-w-sm" />
6Installation
1. Copy these files into your project
- ~/components/textarea/index.ts
- ~/components/textarea/textarea.svelte
Usage
Use textarea for multi-line text entry. Bind value like a standard form control.
1<script lang="ts">
2 import { Textarea } from '~/components/textarea';
3</script>
4
5<Textarea placeholder="Type your message here." />