import React, { forwardRef } from 'react' export interface TextareaProps extends React.TextareaHTMLAttributes { error?: boolean } export const Textarea = forwardRef( ({ error, className = '', ...props }, ref) => (