Accessible labels paired with form controls.
import { Input } from "matcha-ui"; import { Label } from "matcha-ui"; <div className="grid gap-2 max-w-sm"> <Label htmlFor="name">Display name</Label> <Input id="name" /> </div>