UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

22 lines 1.08 kB
const React = require("react"); const { forwardRef } = require("react"); const Shield2Icon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M8.069 2.838c1.2-.421 2.464-.59 3.962-.588 1.482.003 2.755.152 3.958.563 1.207.413 2.302 1.075 3.449 2.048a2.73 2.73 0 0 1 .915 1.647c.131.798.323 2.166.38 3.625.057 1.438-.012 3.057-.458 4.308-.721 2.026-1.437 3.218-3.026 4.679l-.044.04c-1.501 1.381-2.816 2.59-5.175 2.59s-3.673-1.209-5.174-2.59l-.045-.04c-1.592-1.464-2.288-2.663-3.024-4.673-.475-1.3-.57-2.908-.528-4.335.042-1.443.226-2.78.358-3.575a2.7 2.7 0 0 1 .987-1.694C5.777 3.92 6.87 3.26 8.069 2.838", clipRule: "evenodd" })); const ForwardRef = forwardRef(Shield2Icon); module.exports = ForwardRef;