"use client" import { Checkbox as CheckboxPrimitive } from "@base-ui/react/checkbox" import { cn } from "../../lib/utils" function Checkbox({ className, ...props }: CheckboxPrimitive.Root.Props) { return ( ) } export { Checkbox }