UNPKG

1.21 kBJavaScriptView Raw
1const React = require("react");
2
3function BuildingStorefrontIcon({
4 title,
5 titleId,
6 ...props
7}, svgRef) {
8 return /*#__PURE__*/React.createElement("svg", Object.assign({
9 xmlns: "http://www.w3.org/2000/svg",
10 fill: "none",
11 viewBox: "0 0 24 24",
12 strokeWidth: 1.5,
13 stroke: "currentColor",
14 "aria-hidden": "true",
15 ref: svgRef,
16 "aria-labelledby": titleId
17 }, props), title ? /*#__PURE__*/React.createElement("title", {
18 id: titleId
19 }, title) : null, /*#__PURE__*/React.createElement("path", {
20 strokeLinecap: "round",
21 strokeLinejoin: "round",
22 d: "M13.5 21v-7.5a.75.75 0 01.75-.75h3a.75.75 0 01.75.75V21m-4.5 0H2.36m11.14 0H18m0 0h3.64m-1.39 0V9.349m-16.5 11.65V9.35m0 0a3.001 3.001 0 003.75-.615A2.993 2.993 0 009.75 9.75c.896 0 1.7-.393 2.25-1.016a2.993 2.993 0 002.25 1.016c.896 0 1.7-.393 2.25-1.016a3.001 3.001 0 003.75.614m-16.5 0a3.004 3.004 0 01-.621-4.72L4.318 3.44A1.5 1.5 0 015.378 3h13.243a1.5 1.5 0 011.06.44l1.19 1.189a3 3 0 01-.621 4.72m-13.5 8.65h3.75a.75.75 0 00.75-.75V13.5a.75.75 0 00-.75-.75H6.75a.75.75 0 00-.75.75v3.75c0 .415.336.75.75.75z"
23 }));
24}
25
26const ForwardRef = React.forwardRef(BuildingStorefrontIcon);
27module.exports = ForwardRef;
\No newline at end of file