Textarea

A multi-line text input that grows with its content.

<script lang="ts">
  import { Textarea } from "$lib/components/ui/textarea";
</script>
 
<Textarea placeholder="Type your message here." class="max-w-sm" />

Installation

npx lily-svelte@latest add textarea

Usage

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

The textarea uses field-sizing-content, so it grows to fit what you type.

Built by levish. The source code is available on GitHub.

Quiet by design.