desmy-react
Version:
Introducing an easy-to-use, lightning-fast React.js component that streamlines your development process. Our solution prioritizes simplicity, speed, and optimization, making it a breeze to build projects in React.
9 lines (8 loc) • 314 B
TypeScript
import { default as React } from 'react';
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
value?: string;
label: string;
displayFormat?: string;
}
declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
export default Input;