import React, { forwardRef } from 'react'; interface TextAreaProps extends React.TextareaHTMLAttributes { label?: string; error?: string; className?: string; fullWidth?: boolean; } const TextArea = forwardRef( ({ label, error, className = '', fullWidth = true, ...props }, ref) => { return (
{label && ( )}