Label

Renders an accessible label associated with controls.

shadcn/ui docs

Installation

pnpm dlx shadcn@latest add https://neobrutalism.dev/r/label.json

Usage

import { Checkbox } from '@/components/ui/checkbox'
import { Label } from '@/components/ui/label'
<div>
  <div className="flex items-center space-x-2">
    <Checkbox id="terms" />
    <Label htmlFor="terms">Accept terms and conditions</Label>
  </div>
</div>