@nomercyicons/react
Version:
29 lines • 1.09 kB
JavaScript
const React = require("react");
function DiamondTwoToneIcon({
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: "M8.88 5H6.24l-1.5 3h2.64zM19.26 8l-1.5-3h-2.64l1.5 3zM11 16.68V10H5.44zM13 16.68L18.56 10H13zM12.88 5h-1.76l-1.5 3h4.76z",
opacity: 0.3
}), /*#__PURE__*/React.createElement("path", {
d: "M19 3H5L2 9l10 12L22 9l-3-6zm-1.24 2l1.5 3h-2.65l-1.5-3h2.65zM6.24 5h2.65l-1.5 3H4.74l1.5-3zM11 16.68L5.44 10H11v6.68zM9.62 8l1.5-3h1.76l1.5 3H9.62zM13 16.68V10h5.56L13 16.68z"
}));
}
const ForwardRef = React.forwardRef(DiamondTwoToneIcon);
module.exports = ForwardRef;