import React from 'react' import styles from './styles.module.css' export default function TextArea({label: _label, error, hint, height, name, value, onChange, onBlur, isValid}){ const label = _label || name.replace(name[0], name[0].toUpperCase()) return (