import type { TextAreaProps } from "$/types/InputTypes"; import clsx from "clsx"; import { useId } from "react"; export default function TextArea({ id, className, inputClassName, labelClassName, name, maxLength, rows = 3, cols, spellCheck, placeholder, value, onChange, disabled }: Readonly){ const componentId = useId(); const activeId = id ?? componentId; return (