@nomercyicons/react
Version:
29 lines • 911 B
JavaScript
const React = require("react");
function AnalyticsSharpIcon({
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("path", {
fill: "none",
d: "M7 12h2v5H7zM11 14h2v3h-2zM15 7h2v10h-2z"
}), /*#__PURE__*/React.createElement("path", {
d: "M3 3v18h18V3H3zm6 14H7v-5h2v5zm4 0h-2v-3h2v3zm0-5h-2v-2h2v2zm4 5h-2V7h2v10z"
}));
}
const ForwardRef = React.forwardRef(AnalyticsSharpIcon);
module.exports = ForwardRef;