import { clsx } from "keycloakify/tools/clsx"; import type { PageProps } from "keycloakify/login/pages/PageProps"; import type { KcContext } from "../kcContext"; import type { I18n } from "../i18n"; import { useGetClassName } from "keycloakify/login/lib/useGetClassName"; export default function DeleteCredential(props: PageProps, I18n>) { const { kcContext, i18n, doUseDefaultCss, Template, classes } = props; const { msgStr, msg } = i18n; const { getClassName } = useGetClassName({ doUseDefaultCss, classes }); const { url, credentialLabel } = kcContext; return ( ); }