import clsx from 'clsx'; import { CProps } from '../props'; import Label from './Label'; export interface TextAreaProps extends CProps.Editor, CProps.Colors, CProps.TextArea { dense?: boolean; } function TextArea({ id, label, required, rows, dense, noBorder, noOutline, className, colors = 'clr-input', ...restProps }: TextAreaProps) { return (