"use client" import * as React from "react" import * as CheckboxPrimitive from "@radix-ui/react-checkbox" import { Check } from "lucide-react" import { useDesign } from "@/contexts/design-context" import { cn } from "@/lib/utils" const Checkbox = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => { const { roundedness } = useDesign() // Map roundedness to border-radius with 6px maximum const getRoundedClass = () => { switch (roundedness) { case "none": return "rounded-none" case "small": return "rounded-[2px]" case "medium": return "rounded-[4px]" case "large": return "rounded-[6px]" case "extra-large": return "rounded-[6px]" // Capped at 6px default: return "rounded-[4px]" } } return ( ) }) Checkbox.displayName = CheckboxPrimitive.Root.displayName export { Checkbox }