import { FieldInputProps, FormikProps, FormikValues } from 'formik'; import React from 'react'; import { Input as ReactstrapInput, InputProps as ReactstrapInputProps, } from 'reactstrap'; type InputProps = { field: Partial>; form: FormikProps; props?: ReactstrapInputProps; }; const Input: React.FC = ({ field, form: { touched, errors }, props, }) => ( ); export default Input;