import { Checkbox as CheckboxPrimitive } from '@base-ui/react/checkbox'; import { cn } from '@evershop/evershop/lib/util/cn'; import { CheckIcon } from 'lucide-react'; import React from 'react'; function Checkbox({ className, ...props }: CheckboxPrimitive.Root.Props) { return ( ); } export { Checkbox };