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