Skip to Content

Textarea

The Textarea defines a multi-line text input control.


Import

Import
import { Textarea } from '@backyard-ui/core';

Usage

Usage

Size

Size

Use the size prop to increase the visual size.

Controlled

Controlled

Try to change the input value:

States

States

Disabled

Disabled

Invalid

Invalid

ReadOnly

ReadOnly

Using with FormControl

Using with FormControl

To add a label or status message to your fields use the FormControl utility.

API Reference

API Reference
  • size
    Description The Input size.
    Type
    "xs" | "sm" | "md"
    Default
    sm
  • isDisabled
    Description Set the form element to disabled
    Type
    boolean
  • isInvalid
    Description Set the form element `aria-invalid` to `true`
    Type
    boolean
  • isReadOnly
    Description Set the form element to readonly
    Type
    boolean
  • isRequired
    Description Set the form element `aria-required` to `true`
    Type
    boolean