import { ComponentPropsWithoutRef, ElementRef, forwardRef } from 'react'; import * as LabelPrimitive from '@radix-ui/react-label'; import { cva, VariantProps } from 'class-variance-authority'; import { ctw } from '../../../utils/ctw/ctw'; const labelVariants = cva( 'text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-50', ); export const Label = forwardRef< ElementRef, ComponentPropsWithoutRef & VariantProps >(({ className, ...props }, ref) => ( )); Label.displayName = LabelPrimitive.Root.displayName;