import { TextareaHTMLAttributes } from 'react';
import Label from './Label';
export interface TextAreaProps
extends Omit, 'className' | 'title'> {
label: string
tooltip?: string
widthClass?: string
colorClass?: string
}
function TextArea({
id, label, required, tooltip,
widthClass = 'w-full',
colorClass = 'clr-input',
rows = 4,
...props
}: TextAreaProps) {
return (
);
}
export default TextArea;