import type { TextAreaProps } from "$/types/Input"; import clsx from "clsx"; export default function TextArea({ id = crypto.randomUUID().replaceAll("-", ""), className, inputClassName, labelClassName, name, maxLength, rows, cols, spellCheck, placeholder, defaultValue, value, onChange, disabled }: TextAreaProps){ return (