@keycloakify/keycloak-admin-ui
Version:
Repackaged Keycloak Admin UI
8 lines • 752 B
JavaScript
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
import { useTranslation } from "react-i18next";
import { TextControl } from "../../ui-shared";
export const ApplicationUrls = (props) => {
const { t } = useTranslation();
return (_jsxs(_Fragment, { children: [_jsx(TextControl, { name: "attributes.logoUri", label: t("logoUrl"), labelIcon: t("logoUrlHelp"), type: "url", ...props }), _jsx(TextControl, { name: "attributes.policyUri", label: t("policyUrl"), labelIcon: t("policyUrlHelp"), type: "url", ...props }), _jsx(TextControl, { name: "attributes.tosUri", label: t("termsOfServiceUrl"), labelIcon: t("termsOfServiceUrlHelp"), type: "url", ...props })] }));
};
//# sourceMappingURL=ApplicationUrls.js.map