import './style.scss' import classNames from 'classnames' import { HTMLInputTypeAttribute, HTMLProps, ReactNode } from 'react' import Field from '../field' import './style.scss' interface TextAreaBaseProps { isInvalid?: boolean isLoading?: boolean required?: boolean className?: string id: string field: HTMLProps } function TextAreaBase({ isInvalid, isLoading, className, id, field, ...rest }: TextAreaBaseProps) { return (