@nomercyicons/react
Version:
42 lines • 1.45 kB
JavaScript
const React = require("react");
function StreamRoundedIcon({
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 0h24v24H0z"
}), /*#__PURE__*/React.createElement("circle", {
cx: 20,
cy: 12,
r: 2
}), /*#__PURE__*/React.createElement("circle", {
cx: 4,
cy: 12,
r: 2
}), /*#__PURE__*/React.createElement("circle", {
cx: 12,
cy: 20,
r: 2
}), /*#__PURE__*/React.createElement("path", {
d: "M7.89 14.65l-2.94 2.93a.996.996 0 101.41 1.41l2.94-2.93a.996.996 0 10-1.41-1.41zM6.41 4.94A.996.996 0 105 6.35l2.93 2.94c.39.39 1.02.39 1.42 0 .38-.39.38-1.02-.01-1.41L6.41 4.94zM16.12 14.65c-.39-.39-1.02-.39-1.42 0a.996.996 0 000 1.41L17.64 19a.996.996 0 101.41-1.41l-2.93-2.94zM16.06 9.33l2.99-2.98c.39-.4.39-1.03 0-1.42a.996.996 0 00-1.41 0l-2.99 2.98c-.39.39-.39 1.02 0 1.42.39.39 1.02.39 1.41 0z"
}), /*#__PURE__*/React.createElement("circle", {
cx: 12,
cy: 4,
r: 2
}));
}
const ForwardRef = React.forwardRef(StreamRoundedIcon);
module.exports = ForwardRef;