Text Field
A basic input field for entering short text, commonly used for forms, user input, and data entry.
Basic
A text field is a box where you can type in text, like your name or email.
Installation
Composed components
When you install this component via the CLI, it automatically loads all composed components, so you don’t need to add them individually.
This component comes packed with several components to enhance functionality and provide a seamless experience.
Manual installation
Anatomy
Suffix and prefix
Enhance your TextField by adding a prefix or suffix. Whether it’s text or icons, it’s flexible to fit your design.
Suffix with Button
Add a button to the suffix by simply including it in the suffix prop. While you can do the same with a prefix, it’s more common to see it as a suffix.
Revealable
When using a text field as a password input, you may want the option to reveal the password.
Validation
In this example, we’ll ensure it’s treated as a strict requirement.
Controlled
Manage the TextField value through the value prop for controlled usage.
Uncontrolled
Manage the TextField value through the defaultValue prop for uncontrolled usage.
Description
You can add a description to the text field by using the description prop.
Readonly
Set the TextField to readonly, preventing any edits.
Disabled
When the TextField is disabled, it becomes non-editable and appears inactive.
Design Intent UI