export interface CustomLabelProps {
    id?: string;
    label: string;
    htmlFor?: string;
    isDisabled?: boolean;
    show?: boolean;
    className?: string;
    style?: React.CSSProperties;
}
