UNPKG

@peculiar/fortify-webcomponents

Version:

Web-components for creating CSR or Certificate and viewing certificates list using Fortify

20 lines (19 loc) 787 B
/*! * © Peculiar Ventures https://peculiarventures.com/ - BSD 3-Clause License */ /** * @license * Copyright (c) Peculiar Ventures, LLC. * * This source code is licensed under the BSD 3-Clause license found in the * LICENSE file in the root directory of this source tree. */ import { h } from "@stencil/core"; import { getString } from "../../utils/l10n"; import { FortifyStatus } from "../fortify-status"; import { FortifyButton } from "../fortify-button"; export const FortifyNotSupported = (props) => { const { onCancel } = props; return (h(FortifyStatus, { title: getString('support.title'), description: getString('support.description') }, h(FortifyButton, { onClick: onCancel }, getString('actions.cancel')))); }; //# sourceMappingURL=fortify-not-supported.js.map