UNPKG

uiinfinity-components

Version:

Beautiful UI components with smooth animations and 3D effects

10 lines 356 B
import React from 'react'; interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> { label?: string; error?: string; helperText?: string; } declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>; export { Input }; export type { InputProps }; //# sourceMappingURL=Input.d.ts.map