import { Input } from "@nextui-org/react"; import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; interface CustomModelInputProps { isDisabled: boolean; defaultValue: string; } export function CustomModelInput({ isDisabled, defaultValue, }: CustomModelInputProps) { const { t } = useTranslation(); return (
); }