@nomercyicons/react
Version:
24 lines • 867 B
JavaScript
const React = require("react");
function MagentoIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 45 54",
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: "currentColor",
fillRule: "evenodd",
d: "M22.486 0L0 13.845v26.308l5.84 3.496V17.34l16.65-10.29 16.666 10.274.069.04-.008 26.247L45 40.153V13.845L22.486 0zm2.976 46.957l-2.976 1.848-2.979-1.858V16.22l-7.713 4.826v26.305L22.486 54l10.782-6.695V21.03l-7.806-4.833v30.76z"
}));
}
const ForwardRef = React.forwardRef(MagentoIcon);
module.exports = ForwardRef;