A quick vibe-coded site to test response times of PLC.directory mirrors (over 3 attempts)
1import * as React from "react";
2import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
3import { Check } from "lucide-react";
4
5import { cn } from "@/lib/utils";
6
7const Checkbox = React.forwardRef<
8 React.ElementRef<typeof CheckboxPrimitive.Root>,
9 React.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root>
10>(({ className, ...props }, ref) => (
11 <CheckboxPrimitive.Root
12 ref={ref}
13 className={cn(
14 "peer h-4 w-4 shrink-0 rounded-sm border border-primary ring-offset-background data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",
15 className,
16 )}
17 {...props}
18 >
19 <CheckboxPrimitive.Indicator className={cn("flex items-center justify-center text-current")}>
20 <Check className="h-4 w-4" />
21 </CheckboxPrimitive.Indicator>
22 </CheckboxPrimitive.Root>
23));
24Checkbox.displayName = CheckboxPrimitive.Root.displayName;
25
26export { Checkbox };