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