import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; interface CustomInputProps { name: string; label: string; required?: boolean; defaultValue?: string; type?: "text" | "password"; } export function CustomInput({ name, label, required, defaultValue, type = "text", }: CustomInputProps) { const { t } = useTranslation(); return ( ); }