UNPKG

@pagamio/frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

5 lines (4 loc) 230 B
import * as React from 'react'; export type InputProps = React.InputHTMLAttributes<HTMLInputElement>; declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>; export default Input;