mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 22:18:39 +00:00
* feat(www): add login blocks * chore(www): restructure for blocks * chore: build registry * chore: clean up chunks * fix(www): chart categories * feat(www): big registry refactor * feat(www): update blocks * feat: complex blocks * fix: update schema * feat: sync new-york and default * fix: lint * feat: move charts * fix(www): code * fix: src path * chore: rebuild registry * fix: screenshot * fix: set new-york as default
18 lines
429 B
TypeScript
18 lines
429 B
TypeScript
"use client"
|
|
|
|
import { Checkbox } from "@/registry/default/ui/checkbox"
|
|
|
|
export default function CheckboxDemo() {
|
|
return (
|
|
<div className="flex items-center space-x-2">
|
|
<Checkbox id="terms" />
|
|
<label
|
|
htmlFor="terms"
|
|
className="text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
|
|
>
|
|
Accept terms and conditions
|
|
</label>
|
|
</div>
|
|
)
|
|
}
|