import React from "react"; import { clsx } from "../tools/clsx"; import type { KcContextBase } from "../getKcContext/KcContextBase"; import type { PageProps } from "./shared/KcProps"; import type { I18nBase } from "../i18n"; export default function LogoutConfirm(props: PageProps) { const { kcContext, i18n, doFetchDefaultThemeResources = true, Template, ...kcProps } = props; const { url, client, logoutConfirm } = kcContext; const { msg, msgStr } = i18n; return (