@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
30 lines • 1.39 kB
JavaScript
import * as React from "react";
function ShieldSlashIcon({
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", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M20.422 5.392s1.236 5.966.093 9.108c-.773 2.124-1.509 3.316-3.18 4.821-1.729 1.556-2.987 2.68-5.301 2.68s-3.573-1.124-5.3-2.68m5.3-17.143c-3.24-.006-5.288.715-7.832 2.678-.433.334-.712.82-.802 1.357-.288 1.714-.804 5.726.153 8.287.417 1.115.813 1.976 1.339 2.76m7.142-15.082a19 19 0 0 1 1.727.076m-1.727-.076 1.727.076m0 0c.614.059 1.189.153 1.739.291m0 0q.47.118.921.28m-.921-.28.921.28m0 0q.339.123.67.272m0 0q.392.177.78.394zM19.816 2 3.183 19.205",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M20.422 5.392s1.236 5.966.093 9.108c-.773 2.124-1.509 3.316-3.18 4.821C15.604 20.877 14.347 22 12.033 22s-3.573-1.123-5.301-2.679"
}));
}
const ForwardRef = React.forwardRef(ShieldSlashIcon);
export default ForwardRef;