Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 717 Bytes

TEXTAREA.md

File metadata and controls

27 lines (21 loc) · 717 Bytes

Textarea

import { Textarea } from "@mpiorowski/svelte-init";

Usage

<Textarea label="Textarea label" bind:value={textareaValue} />
<Textarea label="Textarea label" bind:value={textareaValue} error="Field must not be empty" required={true} disabled={false} placeholder="Textarea" rows={3}  />
Prop Values Default
value unknown
label string
error string ""
placeholder string ""
require boolean false
disabled boolean false
rows number 3