import clsx from 'clsx'; import { TextareaHTMLAttributes } from 'react'; import { IColorsProps, IEditorProps } from './commonInterfaces'; import Label from './Label'; export interface TextAreaProps extends IEditorProps, IColorsProps, Omit, 'className' | 'title'> { dense?: boolean } function TextArea({ id, label, required, tooltip, rows, dense, noBorder, noOutline, dimensions = 'w-full', colors = 'clr-input', ...restProps }: TextAreaProps) { return (