Textarea
Native multiline field. Uses field-sizing: content where
supported so the box grows with its text.
TextareaExamples.tsrx
import { Textarea } from "@octaneui/core";
export function TextareaExamples() @{
<>
<Textarea placeholder="Write a short bio…" />
<Textarea rows={3} defaultValue="Already filled in." />
<Textarea disabled placeholder="Disabled" />
</>
}