Components / Textarea
Textarea
A styled multi-line text field. Forwards every native <textarea> attribute: placeholder, rows, value, disabled, and the rest.
Examples
razor
<ZitsTextarea placeholder="Type your message here." />With label
razor
<ZitsLabel For="message">Your message</ZitsLabel>
<ZitsTextarea id="message" placeholder="Type your message here." />Disabled
razor
<ZitsTextarea placeholder="Type your message here." disabled />Installation
Terminal
bash
navius add textareaAPI reference
No bespoke props: ZitsTextarea splats every attribute onto the native textarea, so use it exactly like <textarea>.