next-gen-ui
Version:
Next Gen Ui is a home for front-end & UI/Ux developers. We provide all the necessary components required to build a scalable front-end application which suits the user experience in a unique way.
16 lines • 561 B
TypeScript
import React, { ReactNode } from 'react';
export interface FormControlProps {
label?: string;
htmlFor?: string;
error?: string;
hint?: string;
disabled?: boolean;
className?: string;
children: ReactNode;
onBlur?: (e: React.FocusEvent<HTMLDivElement>) => void;
onFocus?: (e: React.FocusEvent<HTMLDivElement>) => void;
forceLabel?: boolean;
}
declare const _default: React.ForwardRefExoticComponent<FormControlProps & React.RefAttributes<HTMLDivElement>>;
export default _default;
//# sourceMappingURL=form-control.d.ts.map