@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 1.32 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const ShieldIcon = ({
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"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M10.5 14.995v-7h3.111c.86 0 1.556.696 1.556 1.555V9.9c0 .85-.684 1.543-1.534 1.555l-2.9.04h2.878c.86 0 1.556.697 1.556 1.556v.39c0 .858-.697 1.555-1.556 1.555z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M8.75 8h1.5M8.75 15h1.5M12.25 5.745v1.5M12.25 15.745v1.5"
}));
const ForwardRef = forwardRef(ShieldIcon);
module.exports = ForwardRef;