@peculiar/fortify-webcomponents
Version:
Web-components for creating CSR or Certificate and viewing certificates list using Fortify
21 lines (20 loc) • 993 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 { FortifyButtonText } from "../fortify-button-text";
import { InsertTokenIllustration } from "./insert_token_illustration";
export const FortifyProvidersEmpty = (props) => {
const { onCancel, helpPageLink } = props;
return (h(FortifyStatus, { title: getString('insert.title'), illustration: (h(InsertTokenIllustration, null)) }, h(FortifyButtonText, { href: helpPageLink, variant: "default" }, getString('actions.needHelp')), h(FortifyButtonText, { onClick: onCancel }, getString('actions.dontHaveOne'))));
};
//# sourceMappingURL=fortify-providers-empty.js.map