'use client' import { forwardRef } from 'react' interface TextAreaProps extends React.TextareaHTMLAttributes { label?: string error?: string helperText?: string } export const TextArea = forwardRef( ({ label, error, helperText, className = '', ...props }, ref) => { return (
{label && ( )}