import { forwardRef } from 'react'; import { cn } from '~/lib/utils'; export interface LabelProps extends React.LabelHTMLAttributes {} const Label = forwardRef(({ className, ...props }, ref) => { return (