'use client' import type { ReactNode } from 'react' interface TextAreaFieldProps { name: string label: ReactNode value: string required: boolean onChange: (value: string) => void error?: string } export function TextAreaField({ name, label, value, required, onChange, error, }: TextAreaFieldProps) { return (