fictoan-react
Version:
A full-featured, designer-friendly, yet performant framework with plain-English props and focus on rapid iteration.
12 lines (11 loc) • 629 B
TypeScript
import React from "react";
import { CommonAndHTMLProps } from '../../Element/constants';
export interface InputLabelCustomProps {
label?: string;
htmlFor?: string;
hideLabel?: boolean;
}
export type InputLabelElementType = HTMLLabelElement;
export type InputLabelProps = Omit<CommonAndHTMLProps<InputLabelElementType>, keyof InputLabelCustomProps> & InputLabelCustomProps;
export declare const InputLabel: React.ForwardRefExoticComponent<Omit<CommonAndHTMLProps<HTMLLabelElement>, keyof InputLabelCustomProps> & InputLabelCustomProps & React.RefAttributes<HTMLLabelElement>>;
//# sourceMappingURL=InputLabel.d.ts.map