@nomercyicons/react
Version:
30 lines • 1.04 kB
JavaScript
const React = require("react");
function MoreTimeIcon({
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", {
d: "M10 8v6l4.7 2.9.8-1.2-4-2.4V8z"
}), /*#__PURE__*/React.createElement("path", {
d: "M17.92 12A6.957 6.957 0 0111 20c-3.9 0-7-3.1-7-7s3.1-7 7-7c.7 0 1.37.1 2 .29V4.23c-.64-.15-1.31-.23-2-.23-5 0-9 4-9 9s4 9 9 9a8.963 8.963 0 008.94-10h-2.02z"
}), /*#__PURE__*/React.createElement("path", {
d: "M20 5V2h-2v3h-3v2h3v3h2V7h3V5z"
}));
}
const ForwardRef = React.forwardRef(MoreTimeIcon);
module.exports = ForwardRef;