import * as React from "react"; import { cn } from "../../lib/utils"; export interface LabelProps extends React.LabelHTMLAttributes { htmlFor?: string; } const Label = React.forwardRef( ({ className, htmlFor, ...props }, ref) => { return (