@nomercyicons/react
Version:
28 lines • 1.17 kB
JavaScript
const React = require("react");
function SignalWifiBadRoundedIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "none",
d: "M0 0h24v24H0V0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M23.21 8.24A16.871 16.871 0 0012 4C7.7 4 3.78 5.6.79 8.24.35 8.63.32 9.3.73 9.71l10.56 10.58c.19.19.45.29.7.29V14c0-1.1.9-2 2-2h6.99l2.29-2.29c.41-.41.38-1.08-.06-1.47z"
}), /*#__PURE__*/React.createElement("path", {
d: "M20.3 14.71a.996.996 0 00-1.41 0l-1.39 1.38-1.39-1.38a.996.996 0 10-1.41 1.41l1.39 1.39-1.39 1.39a.996.996 0 101.41 1.41l1.39-1.38 1.39 1.38a.996.996 0 101.41-1.41l-1.38-1.39 1.38-1.39a.996.996 0 000-1.41z"
}));
}
const ForwardRef = React.forwardRef(SignalWifiBadRoundedIcon);
module.exports = ForwardRef;