import { Input, Tooltip } from "@nextui-org/react"; import { useTranslation } from "react-i18next"; import { FaCheckCircle, FaExclamationCircle } from "react-icons/fa"; import { I18nKey } from "#/i18n/declaration"; interface APIKeyInputProps { isDisabled: boolean; isSet: boolean; } export function APIKeyInput({ isDisabled, isSet }: APIKeyInputProps) { const { t } = useTranslation(); return (

{t(I18nKey.API$DONT_KNOW_KEY)}{" "} {t(I18nKey.COMMON$CLICK_FOR_INSTRUCTIONS)}

); }