A quick vibe-coded site to test response times of PLC.directory mirrors (over 3 attempts)
at main 696 B view raw
1import * as React from "react"; 2import * as LabelPrimitive from "@radix-ui/react-label"; 3import { cva, type VariantProps } from "class-variance-authority"; 4 5import { cn } from "@/lib/utils"; 6 7const labelVariants = cva("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"); 8 9const Label = React.forwardRef< 10 React.ElementRef<typeof LabelPrimitive.Root>, 11 React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> & VariantProps<typeof labelVariants> 12>(({ className, ...props }, ref) => ( 13 <LabelPrimitive.Root ref={ref} className={cn(labelVariants(), className)} {...props} /> 14)); 15Label.displayName = LabelPrimitive.Root.displayName; 16 17export { Label };