@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 938 B
JavaScript
const React = require("react");
function WifiOffIcon({
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: "M15.312 10c1.368.426 2.65 1.12 3.768 2.05m3.5-3.55a16 16 0 00-12.383-3.896M8.53 15.61a6 6 0 016.95 0M12 19.5h.01M1.193 8.7A16.014 16.014 0 015.76 5.764m-1.027 6.48a10.966 10.966 0 015-2.51m5.966 6.042A5.974 5.974 0 0012 14.5c-1.416 0-2.718.49-3.745 1.312M3 3l18 18"
}));
}
const ForwardRef = React.forwardRef(WifiOffIcon);
module.exports = ForwardRef;