500 lines
13 KiB
JavaScript
500 lines
13 KiB
JavaScript
import { o as __toESM } from "../_runtime.mjs";
|
|
import { h as require_react } from "./react+tanstack__react-query.mjs";
|
|
//#region node_modules/lucide-react/dist/esm/shared/src/utils.js
|
|
var import_react = /* @__PURE__ */ __toESM(require_react());
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
|
|
var mergeClasses = (...classes) => classes.filter((className, index, array) => {
|
|
return Boolean(className) && array.indexOf(className) === index;
|
|
}).join(" ");
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/defaultAttributes.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var defaultAttributes = {
|
|
xmlns: "http://www.w3.org/2000/svg",
|
|
width: 24,
|
|
height: 24,
|
|
viewBox: "0 0 24 24",
|
|
fill: "none",
|
|
stroke: "currentColor",
|
|
strokeWidth: 2,
|
|
strokeLinecap: "round",
|
|
strokeLinejoin: "round"
|
|
};
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/Icon.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var Icon = (0, import_react.forwardRef)(({ color = "currentColor", size = 24, strokeWidth = 2, absoluteStrokeWidth, className = "", children, iconNode, ...rest }, ref) => {
|
|
return (0, import_react.createElement)("svg", {
|
|
ref,
|
|
...defaultAttributes,
|
|
width: size,
|
|
height: size,
|
|
stroke: color,
|
|
strokeWidth: absoluteStrokeWidth ? Number(strokeWidth) * 24 / Number(size) : strokeWidth,
|
|
className: mergeClasses("lucide", className),
|
|
...rest
|
|
}, [...iconNode.map(([tag, attrs]) => (0, import_react.createElement)(tag, attrs)), ...Array.isArray(children) ? children : [children]]);
|
|
});
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/createLucideIcon.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var createLucideIcon = (iconName, iconNode) => {
|
|
const Component = (0, import_react.forwardRef)(({ className, ...props }, ref) => (0, import_react.createElement)(Icon, {
|
|
ref,
|
|
iconNode,
|
|
className: mergeClasses(`lucide-${toKebabCase(iconName)}`, className),
|
|
...props
|
|
}));
|
|
Component.displayName = `${iconName}`;
|
|
return Component;
|
|
};
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/arrow-left.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var ArrowLeft = createLucideIcon("ArrowLeft", [["path", {
|
|
d: "m12 19-7-7 7-7",
|
|
key: "1l729n"
|
|
}], ["path", {
|
|
d: "M19 12H5",
|
|
key: "x3x0zl"
|
|
}]]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/chevron-right.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var ChevronRight = createLucideIcon("ChevronRight", [["path", {
|
|
d: "m9 18 6-6-6-6",
|
|
key: "mthhwq"
|
|
}]]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/file-text.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var FileText = createLucideIcon("FileText", [
|
|
["path", {
|
|
d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",
|
|
key: "1rqfz7"
|
|
}],
|
|
["path", {
|
|
d: "M14 2v4a2 2 0 0 0 2 2h4",
|
|
key: "tnqrlb"
|
|
}],
|
|
["path", {
|
|
d: "M10 9H8",
|
|
key: "b1mrlr"
|
|
}],
|
|
["path", {
|
|
d: "M16 13H8",
|
|
key: "t4e002"
|
|
}],
|
|
["path", {
|
|
d: "M16 17H8",
|
|
key: "z1uh3a"
|
|
}]
|
|
]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/heart.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var Heart = createLucideIcon("Heart", [["path", {
|
|
d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",
|
|
key: "c3ymky"
|
|
}]]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/info.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var Info = createLucideIcon("Info", [
|
|
["circle", {
|
|
cx: "12",
|
|
cy: "12",
|
|
r: "10",
|
|
key: "1mglay"
|
|
}],
|
|
["path", {
|
|
d: "M12 16v-4",
|
|
key: "1dtifu"
|
|
}],
|
|
["path", {
|
|
d: "M12 8h.01",
|
|
key: "e9boi3"
|
|
}]
|
|
]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/leaf.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var Leaf = createLucideIcon("Leaf", [["path", {
|
|
d: "M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z",
|
|
key: "nnexq3"
|
|
}], ["path", {
|
|
d: "M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12",
|
|
key: "mt58a7"
|
|
}]]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/map-pin.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var MapPin = createLucideIcon("MapPin", [["path", {
|
|
d: "M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z",
|
|
key: "2oe9fu"
|
|
}], ["circle", {
|
|
cx: "12",
|
|
cy: "10",
|
|
r: "3",
|
|
key: "ilqhr7"
|
|
}]]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/message-square.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var MessageSquare = createLucideIcon("MessageSquare", [["path", {
|
|
d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",
|
|
key: "1lielz"
|
|
}]]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/minus.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var Minus = createLucideIcon("Minus", [["path", {
|
|
d: "M5 12h14",
|
|
key: "1ays0h"
|
|
}]]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/package.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var Package = createLucideIcon("Package", [
|
|
["path", {
|
|
d: "m7.5 4.27 9 5.15",
|
|
key: "1c824w"
|
|
}],
|
|
["path", {
|
|
d: "M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z",
|
|
key: "hh9hay"
|
|
}],
|
|
["path", {
|
|
d: "m3.3 7 8.7 5 8.7-5",
|
|
key: "g66t2b"
|
|
}],
|
|
["path", {
|
|
d: "M12 22V12",
|
|
key: "d0xqtd"
|
|
}]
|
|
]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/plus.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var Plus = createLucideIcon("Plus", [["path", {
|
|
d: "M5 12h14",
|
|
key: "1ays0h"
|
|
}], ["path", {
|
|
d: "M12 5v14",
|
|
key: "s699le"
|
|
}]]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/search.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var Search = createLucideIcon("Search", [["circle", {
|
|
cx: "11",
|
|
cy: "11",
|
|
r: "8",
|
|
key: "4ej97u"
|
|
}], ["path", {
|
|
d: "m21 21-4.3-4.3",
|
|
key: "1qie3q"
|
|
}]]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/shield.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var Shield = createLucideIcon("Shield", [["path", {
|
|
d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",
|
|
key: "oel41y"
|
|
}]]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/shopping-cart.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var ShoppingCart = createLucideIcon("ShoppingCart", [
|
|
["circle", {
|
|
cx: "8",
|
|
cy: "21",
|
|
r: "1",
|
|
key: "jimo8o"
|
|
}],
|
|
["circle", {
|
|
cx: "19",
|
|
cy: "21",
|
|
r: "1",
|
|
key: "13723u"
|
|
}],
|
|
["path", {
|
|
d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12",
|
|
key: "9zh506"
|
|
}]
|
|
]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/star.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var Star = createLucideIcon("Star", [["polygon", {
|
|
points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2",
|
|
key: "8f66p6"
|
|
}]]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/store.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var Store = createLucideIcon("Store", [
|
|
["path", {
|
|
d: "m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7",
|
|
key: "ztvudi"
|
|
}],
|
|
["path", {
|
|
d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8",
|
|
key: "1b2hhj"
|
|
}],
|
|
["path", {
|
|
d: "M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4",
|
|
key: "2ebpfo"
|
|
}],
|
|
["path", {
|
|
d: "M2 7h20",
|
|
key: "1fcdvo"
|
|
}],
|
|
["path", {
|
|
d: "M22 7v3a2 2 0 0 1-2 2a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 16 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 12 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 8 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 4 12a2 2 0 0 1-2-2V7",
|
|
key: "6c3vgh"
|
|
}]
|
|
]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/ticket.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var Ticket = createLucideIcon("Ticket", [
|
|
["path", {
|
|
d: "M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",
|
|
key: "qn84l0"
|
|
}],
|
|
["path", {
|
|
d: "M13 5v2",
|
|
key: "dyzc3o"
|
|
}],
|
|
["path", {
|
|
d: "M13 17v2",
|
|
key: "1ont0d"
|
|
}],
|
|
["path", {
|
|
d: "M13 11v2",
|
|
key: "1wjjxi"
|
|
}]
|
|
]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/trash-2.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var Trash2 = createLucideIcon("Trash2", [
|
|
["path", {
|
|
d: "M3 6h18",
|
|
key: "d0wm0j"
|
|
}],
|
|
["path", {
|
|
d: "M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",
|
|
key: "4alrt4"
|
|
}],
|
|
["path", {
|
|
d: "M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",
|
|
key: "v07s0e"
|
|
}],
|
|
["line", {
|
|
x1: "10",
|
|
x2: "10",
|
|
y1: "11",
|
|
y2: "17",
|
|
key: "1uufr5"
|
|
}],
|
|
["line", {
|
|
x1: "14",
|
|
x2: "14",
|
|
y1: "11",
|
|
y2: "17",
|
|
key: "xtxkd"
|
|
}]
|
|
]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/truck.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var Truck = createLucideIcon("Truck", [
|
|
["path", {
|
|
d: "M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2",
|
|
key: "wrbu53"
|
|
}],
|
|
["path", {
|
|
d: "M15 18H9",
|
|
key: "1lyqi6"
|
|
}],
|
|
["path", {
|
|
d: "M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14",
|
|
key: "lysw3i"
|
|
}],
|
|
["circle", {
|
|
cx: "17",
|
|
cy: "18",
|
|
r: "2",
|
|
key: "332jqn"
|
|
}],
|
|
["circle", {
|
|
cx: "7",
|
|
cy: "18",
|
|
r: "2",
|
|
key: "19iecd"
|
|
}]
|
|
]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/user.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var User = createLucideIcon("User", [["path", {
|
|
d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2",
|
|
key: "975kel"
|
|
}], ["circle", {
|
|
cx: "12",
|
|
cy: "7",
|
|
r: "4",
|
|
key: "17ys0d"
|
|
}]]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/x.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var X = createLucideIcon("X", [["path", {
|
|
d: "M18 6 6 18",
|
|
key: "1bl5f8"
|
|
}], ["path", {
|
|
d: "m6 6 12 12",
|
|
key: "d8bk6v"
|
|
}]]);
|
|
//#endregion
|
|
//#region node_modules/lucide-react/dist/esm/icons/zap.js
|
|
/**
|
|
* @license lucide-react v0.400.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
var Zap = createLucideIcon("Zap", [["path", {
|
|
d: "M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",
|
|
key: "1xq2db"
|
|
}]]);
|
|
//#endregion
|
|
export { ArrowLeft as S, Leaf as _, Trash2 as a, FileText as b, Star as c, Search as d, Plus as f, MapPin as g, MessageSquare as h, Truck as i, ShoppingCart as l, Minus as m, X as n, Ticket as o, Package as p, User as r, Store as s, Zap as t, Shield as u, Info as v, ChevronRight as x, Heart as y };
|