import TextInput, { TextInputProps } from '@/components/elements/inputs/TextInput' import { Field as FormikField, FieldProps } from 'formik' import { forwardRef } from 'react' const TextInputFormik = forwardRef>(({ name, ...props }, ref) => ( {({ field, form: { errors, touched } }: FieldProps) => ( )} )) export default TextInputFormik