import { Group, Stack, Text, TextInput } from "@mantine/core"; import { useTranslation } from "react-i18next"; import CopyTextButton from "@/components/common/copy.tsx"; export function ScimUrlPanel() { const { t } = useTranslation(); const scimUrl = `${window.location.origin}/api/scim/v2`; return ( {t("SCIM endpoint URL")} {t( "Configure your identity provider with this URL to provision users and groups.", )} ); }