@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 820 B
JavaScript
const React = require("react");
function CoinsSwap02Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M6 6l2-2m0 0L6 2m2 2H6a4 4 0 00-4 4m16 10l-2 2m0 0l2 2m-2-2h2a4 4 0 004-4M10.189 6.5a6 6 0 117.311 7.311M14 16a6 6 0 11-12 0 6 6 0 0112 0z"
}));
}
const ForwardRef = React.forwardRef(CoinsSwap02Icon);
module.exports = ForwardRef;