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 = 'colorClass', rows = 4, ...props }: TextAreaProps) { return (