@nomercyicons/react
Version:
28 lines • 877 B
JavaScript
const React = require("react");
function AddBusinessIcon({
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: "M15 17h2v-3h1v-2l-1-5H2l-1 5v2h1v6h9v-6h4v3zm-6 1H4v-4h5v4zM2 4h15v2H2z"
}), /*#__PURE__*/React.createElement("path", {
d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z"
}));
}
const ForwardRef = React.forwardRef(AddBusinessIcon);
module.exports = ForwardRef;