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