@nomercyicons/react
Version:
26 lines • 1.03 kB
JavaScript
const React = require("react");
function LocalMallRoundedIcon({
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 0h24v24H0V0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10a4.99 4.99 0 01-4.84-3.75C6.99 8.62 7.48 8 8.13 8c.47 0 .85.34.98.8a2.997 2.997 0 005.78 0c.13-.46.51-.8.98-.8.65 0 1.13.62.97 1.25A4.99 4.99 0 0112 13z"
}));
}
const ForwardRef = React.forwardRef(LocalMallRoundedIcon);
module.exports = ForwardRef;