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