@peculiar/fortify-webcomponents
Version:
Web-components for creating CSR or Certificate and viewing certificates list using Fortify
20 lines (19 loc) • 840 B
JavaScript
/*!
* © 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 FortifyClientUpdate = (props) => {
const { downloadAppLink } = props;
return (h(FortifyStatus, { title: getString('unsupportedVersion.title'), description: getString('unsupportedVersion.description') }, h(FortifyButton, { variant: "primary", href: downloadAppLink }, getString('actions.update'))));
};
//# sourceMappingURL=fortify-client-update.js.map