// THIS IS **NOT** a shadcn ui component. TBD if we want to keep `import/consistent-type-specifier-style` // https://ui.shadcn.com/docs/components/label "use client"; import { cva } from "class-variance-authority"; import type { VariantProps } from "class-variance-authority"; import * as React from "react"; import { cn } from "../lib/utils"; const labelVariants = cva( "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70", ); export interface LabelProps extends React.LabelHTMLAttributes, VariantProps {} const Label = React.forwardRef( ({ className, ...props }, ref) => (