Label
The Label component is used to provide a descriptive text label for form controls such as Input, Checkbox, Radio, and Textarea. Associating a label with a form control is a fundamental aspect of web accessibility.
Installation
Section titled “Installation”Add the Label component to your project using the OrbitUI CLI:
npx orbitkit@latest add labelImport the Label component and use it next to your form control. The most important attribute for a Label is for, which should match the id of the form control it is associated with. Clicking on the label text will focus the associated control.
---import { Label } from "@/components/ui/label";---
<div class="space-y-2"> <Label for="email">Email Address</Label> <Input type="email" name="email" id="email" placeholder="name@company.com" required /></div>The Label component accepts all standard HTML attributes for a <label> element.