UNPKG

@peculiar/fortify-webcomponents

Version:

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

14 lines (13 loc) 682 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 ArrowDownIcon = (props) => (h("svg", Object.assign({}, props, { viewBox: "0 0 24 24", width: "24px", height: "24px", fill: "none", xmlns: "http://www.w3.org/2000/svg" }), h("path", { d: "M12.39 14.512a.5.5 0 01-.78 0l-2.96-3.7A.5.5 0 019.04 10h5.92a.5.5 0 01.39.812l-2.96 3.7z", fill: "currentColor" }))); //# sourceMappingURL=arrow_down_icon.js.map