@nomercyicons/react
Version:
26 lines • 977 B
JavaScript
import * as React from "react";
function BreakfastDiningRoundedIcon({
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: "M18 3H6C3.79 3 2 4.79 2 7c0 1.48.81 2.75 2 3.45V19c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-8.55c1.19-.69 2-1.97 2-3.45 0-2.21-1.79-4-4-4zm-2.29 10.7l-3 3c-.39.39-1.02.39-1.42 0l-3-3a.996.996 0 010-1.41l3-3a.996.996 0 011.41 0l3 3c.4.39.4 1.02.01 1.41z"
}));
}
const ForwardRef = React.forwardRef(BreakfastDiningRoundedIcon);
export default ForwardRef;