"use client" import * as React from "react" import * as LabelPrimitive from "@radix-ui/react-label" import { type VariantProps } from "class-variance-authority" import { cn } from "@eloquent/styles" import { labelVariants } from "./variants" const Label = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef & VariantProps >( function Label({className, ...props}, ref){ return ( ) } ) export { Label }