Form Elements
This is the page for form elements and components.
📄️ Field
Use the Field component to compose a form element with a label, help text, and error message.
📄️ Input
An input component that represents a text field. It is used to capture data written by the user, such as names, email addresses, passwords, or other textual information.
📄️ Textarea
An input component that represents a multiline text area. It is used to capture lengthy text written by the user, such as comments, descriptions, or observations.
📄️ Select
An input component that allows the user to select an option from a predefined dropdown list. Ideal for choosing from multiple values.
📄️ Checkbox
An input component that allows the user to select or deselect a binary option, such as true/false or on/off.
📄️ Radio
An input component that allows selecting a single option from a group. Useful for mutually exclusive choices like payment methods, subscription levels, or preferences.
📄️ Switch
A variant of the checkbox that represents an on or off action with a visual switch-style. Useful for binary settings like enabling/disabling notifications or system modes.