Command Palette
Search for a command to run...
Label
Shadcn ui: Label
Search for a command to run...
Shadcn ui: Label
import { Checkbox } from "@/components/ui/checkbox" import { Label } from "@/components/ui/label" export function LabelDemo() { return ( <div> <div className="flex items-center space-x-2"> <Checkbox id="terms" /> <Label htmlFor="terms">Accept terms and conditions</Label> </div> </div> ) } export default function App() { return <LabelDemo />; }