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