"use client" import * as React from "react" import * as CheckboxPrimitive from "@radix-ui/react-checkbox" import { Check } from "lucide-react" import { cn } from "@/lib/utils" import { cva, type VariantProps } from "class-variance-authority" import { color } from "@/lib/type" const checkboxVariants = cva( "peer group shrink-0 ring-offset-background dark:ring-offset-card bg-default-300/70 transition-all duration-300 data-[state=checked]:outline-none data-[state=checked]:ring-2 data-[state=checked]:ring-ring data-[state=checked]:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 rounded h-4 w-4 [&_svg]:stroke-default-foreground [&_svg]:h-3.5 [&_svg]:w-3.5", { variants: { color: { default: "data-[state=checked]:border-default data-[state=checked]:bg-default data-[state=checked]:ring-default", primary: "data-[state=checked]:border-primary data-[state=checked]:bg-primary data-[state=checked]:ring-primary [&_svg]:stroke-white", secondary: "data-[state=checked]:bg-secondary data-[state=checked]:ring-secondary [&_svg]:stroke-secondary-foreground", destructive: "data-[state=checked]:border-destructive data-[state=checked]:bg-destructive data-[state=checked]:ring-destructive [&_svg]:stroke-destructive-foreground", warning: "data-[state=checked]:border-warning data-[state=checked]:bg-warning data-[state=checked]:ring-warning [&_svg]:stroke-warning-foreground", info: "data-[state=checked]:border-info data-[state=checked]:bg-info data-[state=checked]:ring-info [&_svg]:stroke-info-foreground", success: "data-[state=checked]:border-success data-[state=checked]:bg-success data-[state=checked]:ring-success [&_svg]:stroke-success-foreground", }, }, defaultVariants: { color: "default", }, } ); type CheckboxProps = React.ComponentPropsWithoutRef & VariantProps & { color?: color icon?: React.ReactNode; }; const Checkbox = React.forwardRef< React.ElementRef, CheckboxProps >(({ className, color, ...props }, ref) => ( )); Checkbox.displayName = CheckboxPrimitive.Root.displayName; export { Checkbox }