@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 879 B
JavaScript
import * as React from "react";
function WifiIcon({
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: "M12 19.5h.01M22.806 8.7A15.942 15.942 0 0012 4.5c-4.166 0-7.96 1.592-10.807 4.2m3.539 3.543A10.958 10.958 0 0112 9.5c2.786 0 5.33 1.036 7.268 2.743m-3.57 3.532A5.974 5.974 0 0012 14.5c-1.416 0-2.718.49-3.745 1.312"
}));
}
const ForwardRef = React.forwardRef(WifiIcon);
export default ForwardRef;