warcraftcn warcraftcn/ui

Textarea

A Warcraft-themed textarea with a gold border-image frame. Uses field-sizing for auto-growing content.

Standard

With Long Placeholder

Disabled

With Label

Usage

<script>
  import { Textarea, Label } from 'warcraftcn-ui-svelte';
  let value = $state('');
</script>

<Textarea bind:value placeholder="Write your battle plans..." />

<Label for="lore" required>Lore Entry</Label>
<Textarea id="lore" placeholder="Write your lore..." />

Props

PropTypeDefault
classstring""

All standard HTML textarea attributes (placeholder, disabled, id, etc.) are forwarded to the underlying <textarea> element.