Label

Renders an accessible label associated with a form control.

Example

Code

Example
import { Label } from "cephalopod-design-system"
import { Input } from "cephalopod-design-system"

<div className="grid w-full max-w-sm items-center gap-1.5">
  <Label htmlFor="email">Email Address</Label>
  <Input type="email" id="email" placeholder="Email" />
</div>