@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 918 B
JavaScript
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",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M19.569 14.19c.79-2.222.3-5.997.044-7.56a1.98 1.98 0 0 0-.66-1.198C16.766 3.58 14.894 3.005 12.03 3c-2.88-.005-4.7.65-6.962 2.432a1.96 1.96 0 0 0-.711 1.227c-.257 1.553-.717 5.203.134 7.53.704 1.923 1.341 3.012 2.827 4.379C8.855 19.98 9.973 21 12.03 21s3.175-1.02 4.712-2.432c1.486-1.367 2.14-2.45 2.827-4.379Z"
}));
const ForwardRef = forwardRef(Shield2Icon);
module.exports = ForwardRef;