@nomercyicons/react
Version:
26 lines • 992 B
JavaScript
const React = require("react");
function MovingRoundedIcon({
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: "M2.7 17.29c.39.39 1.02.39 1.41 0L8.7 12.7a.996.996 0 011.41 0l1.17 1.17a3 3 0 004.24 0L19.7 9.7l1.44 1.44a.5.5 0 00.85-.35V6.5a.48.48 0 00-.49-.5h-4.29c-.45 0-.67.54-.35.85l1.44 1.44-4.17 4.17a.996.996 0 01-1.41 0l-1.17-1.17a3 3 0 00-4.24 0L2.7 15.88c-.38.39-.38 1.03 0 1.41z"
}));
}
const ForwardRef = React.forwardRef(MovingRoundedIcon);
module.exports = ForwardRef;