@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 828 B
JavaScript
const React = require("react");
function Cryptocurrency03Icon({
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: "M2 2l2 2m18-2l-2 2m2 18l-2-2M2 22l2-2m-2-4h1.5M8 2v1.5M22 8h-1.5M16 22v-1.5m2-4.5h3.5M16 2v4M2 8h4m2 14v-4m8-6a4 4 0 11-8 0 4 4 0 018 0z"
}));
}
const ForwardRef = React.forwardRef(Cryptocurrency03Icon);
module.exports = ForwardRef;