import { forwardRef, type LabelHTMLAttributes } from 'react'; import { cn } from '@utils/cn'; export interface LabelProps extends LabelHTMLAttributes { required?: boolean; } export const Label = forwardRef( ({ children, required, className, ...props }, ref) => { return ( ); } ); Label.displayName = 'Label';