Skip to Content

TextField

The TextField is a component that is used to get user input.


Import

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

Usage

Usage

Size

Size

Use the size prop to increase the visual size.

Slots

Slots

Use the Slots to display inline content, like text, badges, or inline actions on both sides.

Icon

Icon

Text

Text

Badge

Badge

Button

Button

Controlled

Controlled

Try to change the input value:

States

States

Disabled

Disabled

Invalid

Invalid

ReadOnly

ReadOnly

Examples

Examples

Password

Password
Search

Using with FormControl

Using with FormControl

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

API Reference

API Reference

Root

Root
  • children required
    Description The children elements
    Type
    ReactNode
  • size
    Description The Input size.
    Type
    "xs" | "sm" | "md"
    Default
    sm

Input

Input
  • 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

Slot

Slot
  • children required
    Description The element children
    Type
    ReactNode