Forms
Label
Radix Label, styled to the type scale.
@codeways/ui/label
Label
Thin wrapper over Radix Label - design/04-components/forms.md.
paired with an input
paired with a checkbox (peer)
disabled group
Usage
import { Label } from "@codeways/ui/label";
import { Input } from "@codeways/ui/input";
<div className="flex flex-col gap-1.5">
<Label htmlFor="name">Full name</Label>
<Input id="name" placeholder="Jane Fernando" />
</div>