import { forwardRef } from 'react' interface TextareaProps extends React.HTMLProps { label: string } export const Textarea = forwardRef( (props, ref) => { const { label, name, ...rest } = props return ( <>