mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-02-08 18:39:31 +08:00
23 lines
637 B
TypeScript
23 lines
637 B
TypeScript
"use client"
|
|
|
|
import { Checkbox } from "@/components/ui/checkbox"
|
|
|
|
export 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-slate-500 dark:text-slate-400">
|
|
You agree to our Terms of Service and Privacy Policy.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|