@peculiar/fortify-webcomponents
Version:
Web-components for creating CSR or Certificate and viewing certificates list using Fortify
15 lines (14 loc) • 1.02 kB
JavaScript
/*!
* © Peculiar Ventures https://peculiarventures.com/ - BSD 3-Clause License
*/
/* eslint-disable react/no-unknown-property */
/**
* @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";
export const CertificateIcon = (props) => (h("svg", Object.assign({}, props, { viewBox: "0 0 40 40", fill: "none", xmlns: "http://www.w3.org/2000/svg" }), h("path", { d: "M20.346 20.576a6.23 6.23 0 100-12.46 6.23 6.23 0 000 12.46z", stroke: "currentColor", "stroke-miterlimit": "10" }), h("path", { d: "M20.346 23.692a9.346 9.346 0 100-18.692 9.346 9.346 0 000 18.692z", stroke: "currentColor", "stroke-miterlimit": "10" }), h("path", { d: "M19.91 23.91L15.88 35l-1.702-2.939L11 33.224l4.03-11.09M20.772 23.91L24.812 35l1.692-2.939 3.188 1.163-4.04-11.09", stroke: "currentColor", "stroke-miterlimit": "10" })));
//# sourceMappingURL=certificate_icon.js.map