Files
panel/resources/scripts/components/elements/forms/TextInputFormik.tsx
2022-12-21 02:40:37 +00:00

15 lines
575 B
TypeScript

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