Skip to content

textarea

textarea(opts?): void

Defined in: components/textarea.ts:40

A multi-line text input. Shares the field chrome and styling of textline.

TextareaOptions = {}

void

const $user = A.proxy({bio: ""});
S.textarea({ label: "Bio", bind: A.ref($user, "bio") });