mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
18 lines
430 B
TypeScript
18 lines
430 B
TypeScript
"use client"
|
|
|
|
import { Checkbox } from "@/components/ui/checkbox"
|
|
|
|
export function CheckboxDisabled() {
|
|
return (
|
|
<div className="flex items-center space-x-2">
|
|
<Checkbox id="terms2" disabled />
|
|
<label
|
|
htmlFor="terms2"
|
|
className="text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
|
|
>
|
|
Accept terms and conditions
|
|
</label>
|
|
</div>
|
|
)
|
|
}
|