mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 22:45:47 +00:00
* feat(www): wip break everything * feat(www): wip chunks * feat(www): wip chunk mode * feat: lift mode * feat: update chunks * fix: resize in lift mode * fix: hasLiftMode * fix: types * fix: toolbar Thanks @mrnbpt * chore: format check * feat: add tracking for enable_lift_mode * chore: format write * docs: add changelog
23 lines
638 B
TypeScript
23 lines
638 B
TypeScript
"use client"
|
|
|
|
import { Checkbox } from "@/registry/default/ui/checkbox"
|
|
|
|
export default function CheckboxWithText() {
|
|
return (
|
|
<div className="items-top flex space-x-2">
|
|
<Checkbox id="terms1" />
|
|
<div className="grid gap-1.5 leading-none">
|
|
<label
|
|
htmlFor="terms1"
|
|
className="text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
|
|
>
|
|
Accept terms and conditions
|
|
</label>
|
|
<p className="text-sm text-muted-foreground">
|
|
You agree to our Terms of Service and Privacy Policy.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|