UNPKG

@datalayer/icons-react

Version:

React.js and JupyterLab icons for data products.

35 lines (33 loc) 942 B
const React = require("react"); const sizeMap = { "small": 16, "medium": 32, "large": 64 }; function WifiIcon({ title, titleId, size, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", width: size ? typeof size === "string" ? sizeMap[size] : size : "16px", strokeWidth: 2, className: "feather feather-wifi", viewBox: "0 0 24 24", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M5 12.55a11 11 0 0114.08 0M1.42 9a16 16 0 0121.16 0M8.53 16.11a6 6 0 016.95 0M12 20h.01" })); } const ForwardRef = React.forwardRef(WifiIcon); module.exports = ForwardRef;