@nomercyicons/react
Version:
28 lines • 920 B
JavaScript
const React = require("react");
function DiscountSharpIcon({
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: "M12.79 21L3 11.21v2.83l9.79 9.79 9.04-9.04-1.42-1.41z"
}), /*#__PURE__*/React.createElement("path", {
d: "M3 9.04l9.79 9.79 9.04-9.04L12.04 0H3v9.04zM7.25 3a1.25 1.25 0 110 2.5 1.25 1.25 0 010-2.5z"
}));
}
const ForwardRef = React.forwardRef(DiscountSharpIcon);
module.exports = ForwardRef;