UNPKG

@peculiar/fortify-webcomponents

Version:

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

19 lines (18 loc) 1.04 kB
/*! * © 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 { Typography } from "@peculiar/certificates-viewer"; import { FortifyLogo } from "./fortify_logo"; export const FortifyStatus = (props, children) => { const { title, description, illustration, } = props; return (h("div", { class: "container_status" }, h("div", { class: "container_status_content" }, h(FortifyLogo, { class: "container_status_logo" }), h(Typography, { variant: "h4", color: "black" }, title), description && (h(Typography, { variant: "b3", color: "gray-9", class: "mt_4" }, description))), illustration && (h("div", { class: "container_status_illustration" }, illustration)), h("div", { class: "container_status_actions mt_6" }, children))); }; //# sourceMappingURL=fortify-status.js.map