@nomercyicons/react
Version:
26 lines • 1.05 kB
JavaScript
const React = require("react");
function TakeoutDiningRoundedIcon({
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: "M21.29 6.75a.984.984 0 00-1.4 0l-.89.88.03-.56-3.46-3.48c-.38-.38-.89-.59-1.42-.59h-4.3c-.53 0-1.04.21-1.42.59L4.97 7.07l.03.5-.89-.87a.98.98 0 00-1.39.01l-.02.02a.984.984 0 00.02 1.4L4.66 10h14.69l1.92-1.84c.4-.38.41-1.02.02-1.41zM5.79 18.15c.08 1.04.95 1.85 2 1.85h8.43c1.05 0 1.92-.81 1.99-1.85l.49-6.6H5.3l.49 6.6z"
}));
}
const ForwardRef = React.forwardRef(TakeoutDiningRoundedIcon);
module.exports = ForwardRef;