A Label represents a caption for an item in a user interface. Renders an accessible label associated with controls.
1import { Input } from "@ngrok/mantle/input";2import { Label } from "@ngrok/mantle/label";3 4<Label htmlFor="name">5 <span className="font-medium">Name</span> <Input type="text" id="name" />6</Label>7 8<div className="flex items-center gap-2">9 <Label htmlFor="name-2" className="font-medium">Name:</Label>10 <Input type="text" id="name-2" />11</div>The Label accepts the following props in addition to the standard HTML label attributes.