diff --git a/src/features/auth/ui/DefaultInput/DefaultInput.tsx b/src/features/auth/ui/DefaultInput/DefaultInput.tsx new file mode 100644 index 0000000..46edd3b --- /dev/null +++ b/src/features/auth/ui/DefaultInput/DefaultInput.tsx @@ -0,0 +1,19 @@ +import type { InputHTMLAttributes } from "react"; + +export type InputAttributes = InputHTMLAttributes; + +export function DefaultInputComponent({ + type, + value, + onChange, + ["aria-label"]: ariaLabel, +}: InputAttributes) { + return ( + + ); +}