Label
Renders an accessible label associated with controls.
For form fields, use the Field component which includes built-in label, description, and error handling.
Installation
Usage
<Label htmlFor="email"> {"Your email address"->React.string} </Label>Label in Field
For form fields, use the Field component which
includes built-in FieldLabel, FieldDescription, and FieldError components.
<Field>
<Field.Label htmlFor="email"> {"Your email address"->React.string} </FieldLabel>
<Input id="email" />
</Field>API Reference
See the Base UI Label documentation for more information.