@nomercyicons/react
Version:
29 lines • 1.11 kB
JavaScript
const React = require("react");
function MergeRoundedIcon({
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("g", {
fill: "none"
}, /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
})), /*#__PURE__*/React.createElement("path", {
d: "M8.71 7.71a.996.996 0 010-1.41l2.59-2.59a.996.996 0 011.41 0L15.3 6.3a.996.996 0 11-1.41 1.41L13 6.83v5.1c0 1.06.42 2.08 1.17 2.83l4.12 4.12a.996.996 0 11-1.41 1.41L12 15.41l-4.88 4.88a.996.996 0 11-1.41-1.41l4.12-4.12c.75-.75 1.17-1.77 1.17-2.83v-5.1l-.88.88a.996.996 0 01-1.41 0z"
}));
}
const ForwardRef = React.forwardRef(MergeRoundedIcon);
module.exports = ForwardRef;