TextField
The TextField is a component that is used to get user input.
Import
Importimport { TextField } from '@backyard-ui/core';
Usage
UsageSize
SizeUse the size
prop to increase the visual size.
Slots
SlotsUse the Slots
to display inline content, like text, badges, or inline actions on both sides.
Icon
IconText
TextBadge
BadgeButton
ButtonControlled
ControlledTry to change the input value:
States
StatesDisabled
DisabledInvalid
InvalidReadOnly
ReadOnlyExamples
ExamplesPassword
PasswordSearch
SearchUsing with FormControl
Using with FormControlTo add a label or status message to your fields use the FormControl utility.
API Reference
API ReferenceRoot
Root- children requiredDescription The children elementsType
ReactNode
- sizeDescription The Input size.Type
"xs" | "sm" | "md"
Defaultsm
Input
Input- isDisabledDescription Set the form element to disabledType
boolean
- isInvalidDescription Set the form element `aria-invalid` to `true`Type
boolean
- isReadOnlyDescription Set the form element to readonlyType
boolean
- isRequiredDescription Set the form element `aria-required` to `true`Type
boolean
Slot
Slot- children requiredDescription The element childrenType
ReactNode