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.22 kB
const React = require("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", d: "M12.034 2c-3.24-.006-5.288.722-7.832 2.703v0A2.18 2.18 0 0 0 3.4 6.07c-.288 1.73-.804 5.778.153 8.361.417 1.126.813 1.994 1.339 2.786M12.034 2c.613.001 1.185.025 1.727.077M12.035 2l1.727.077m6.661 3.166s1.236 6.02.093 9.19c-.773 2.142-1.509 3.346-3.18 4.864C15.605 20.867 14.347 22 12.033 22s-3.573-1.133-5.3-2.703m7.028-17.22c.613.06 1.188.154 1.738.294m0 0q.47.12.921.282m-.921-.282.921.282m0 0q.339.124.67.274m0 0q.392.18.78.398z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M19.816 1.82 3.183 19.18" })); } const ForwardRef = React.forwardRef(ShieldSlashIcon); module.exports = ForwardRef;