"use client"; import * as React from "react"; import * as CheckboxPrimitive from "@radix-ui/react-checkbox@1.1.4"; import { CheckIcon } from "lucide-react@0.487.0"; import { cn } from "./utils"; function Checkbox({ className, ...props }: React.ComponentProps) { return ( ); } export { Checkbox };