UNPKG

@peculiar/fortify-webcomponents

Version:

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

14 lines (13 loc) 788 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"; export const InputRequiredIcon = (props) => (h("svg", Object.assign({}, props, { width: "6px", height: "6px", fill: "none", xmlns: "http://www.w3.org/2000/svg" }), h("path", { fill: "currentColor", "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M.611 0A.608.608 0 000 .605a.6.6 0 00.204.451c.003.003 0 .007 0 .01l4.739 4.75c.002.002.006 0 .007.002a.604.604 0 001.038-.423L6 1.597C6 .715 5.285 0 4.403 0H.611z" }))); //# sourceMappingURL=input_required_icon.js.map