"use client"; import React, { forwardRef } from "react"; interface TextareaProps extends React.TextareaHTMLAttributes { label: string; error?: string; } export const Textarea = forwardRef( ({ label, error, className = "", ...props }, ref) => { return (