import { TextInputProps } from '@mantine/core' import { FieldProps, Field as FormikField } from 'formik' import { forwardRef } from 'react' import TextInput from '@/components/elements/inputs/TextInput' const TextInputFormik = forwardRef< HTMLInputElement, Omit >(({ name, ...props }, ref) => ( {({ field, meta: { error, touched } }: FieldProps) => ( )} )) export default TextInputFormik