@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 1.13 kB
JavaScript
const React = require("react");
function SecuritySafeIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M20.515 14.432c.89-2.465.339-6.655.05-8.395a2.2 2.2 0 0 0-.744-1.334C17.363 2.643 15.257 2.006 12.034 2c-3.24-.006-5.288.722-7.832 2.703A2.18 2.18 0 0 0 3.4 6.07c-.288 1.73-.804 5.778.153 8.361.791 2.136 1.508 3.347 3.18 4.865C8.461 20.867 9.72 22 12.033 22c2.315 0 3.573-1.133 5.301-2.703 1.672-1.518 2.408-2.722 3.18-4.865Z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
d: "M12 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2M12 12v3"
}));
}
const ForwardRef = React.forwardRef(SecuritySafeIcon);
module.exports = ForwardRef;