"use client"; import { memo } from "react"; import { cls } from "@/lib/utils"; interface TextareaProps { placeholder?: string; value: string; onChange: (value: string) => void; rows?: number; required?: boolean; disabled?: boolean; ariaLabel?: string; className?: string; } const Textarea = ({ placeholder = "", value, onChange, rows = 5, required = false, disabled = false, ariaLabel, className = "", }: TextareaProps) => { return (