import {useField} from "formik"; import {Textarea, TextAreaProps} from "@heroui/react"; interface TextAreaInputProps extends Omit { name: string; showErrorUntouched?: boolean; } export default function TextAreaInput({label, showErrorUntouched = false, ...props}: TextAreaInputProps) { const [field, meta] = useField(props.name); return (