Files
shadcn-ui/apps/www/components/examples/checkbox/with-text.tsx
2023-01-24 19:51:29 +04:00

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>
)
}