"use client"; import { Textarea } from "../../shadcnui"; import { cn } from "../../utils"; import { FormFieldWrapper } from "./FormFieldWrapper"; export function FormTextarea({ form, id, name, className, placeholder, testId, description, isRequired, textareaRef, }: { form: any; id: string; name: string; placeholder?: string; className?: string; testId?: string; description?: string; isRequired?: boolean; textareaRef?: React.RefObject; }) { return (
{(field) => (