@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.03 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const Shield1Icon = ({
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", {
d: "m12.825 2.528 5.746 2.792c.605.294 1.034.89 1.06 1.595l.03.6c.036.721.088 1.772.089 2.86 0 1.431-.086 3.063-.469 4.216-.531 1.602-1.802 3.054-3.04 4.181a24.7 24.7 0 0 1-3.287 2.486 2 2 0 0 1-.204.112V2.496q.038.014.075.032M11.25 21.369a2 2 0 0 1-.203-.11 24.7 24.7 0 0 1-3.287-2.487c-1.24-1.127-2.51-2.578-3.041-4.18-.383-1.152-.47-2.785-.469-4.216 0-1.089.053-2.14.09-2.863.012-.239.022-.442.028-.598.027-.705.457-1.301 1.062-1.595l5.746-2.792q.037-.016.074-.031z"
}));
const ForwardRef = forwardRef(Shield1Icon);
module.exports = ForwardRef;