import Label from './Label'; interface TextAreaProps { id: string label: string required?: boolean disabled?: boolean spellCheck?: boolean placeholder?: string widthClass?: string rows?: number value?: any onChange?: (event: React.ChangeEvent) => void onFocus?: () => void } function TextArea({ id, label, placeholder, required, spellCheck, disabled, widthClass='w-full', rows=4, value, onChange, onFocus }: TextAreaProps) { return (