import React from 'react'; import { cn } from '@/lib/utils'; /** * FormLabel Component * Consistent label styling with required indicator and help text tooltip */ export interface FormLabelProps extends React.LabelHTMLAttributes { htmlFor?: string; required?: boolean; helpText?: string; optionalText?: string; className?: string; children: React.ReactNode; } export const FormLabel: React.FC = ({ htmlFor, required = false, helpText, optionalText = '(optional)', className, children, ...props }) => { return ( ); }; FormLabel.displayName = 'FormLabel'; export default FormLabel;