UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

28 lines 1.25 kB
const React = require("react"); const { forwardRef } = require("react"); const ShieldSlashIcon = ({ 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", { strokeLinecap: "round", d: "M19.624 6.7c.26 1.604.724 5.3-.056 7.49-.687 1.928-1.34 3.01-2.827 4.378C15.205 19.98 14.087 21 12.03 21c-1.933 0-3.037-.9-4.438-2.181" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12.03 3c-2.88-.005-4.7.65-6.962 2.432a1.96 1.96 0 0 0-.711 1.227c-.256 1.553-.717 5.203.135 7.53.37 1.013.722 1.794 1.19 2.507M12.03 3c.545.001 1.054.023 1.536.07M12.03 3l1.536.07m0 0c.545.053 1.056.138 1.545.264m0 0q.419.107.82.254m-.82-.254.82.254m0 0q.3.11.595.247m0 0 .06.027m-.06-.027.06.027m0 0c.313.139 1.2.515 1.414.638zm3.961-1.345L3.455 19.483", opacity: 0.4 })); const ForwardRef = forwardRef(ShieldSlashIcon); module.exports = ForwardRef;