import { cls } from "@/lib/utils"; interface TextareaProps extends React.TextareaHTMLAttributes { className?: string; } const Textarea = ({ className = "", ...props }: TextareaProps) => (