@n8n/chat 1.5.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/chat.bundle.es.js +896 -779
- package/dist/chat.bundle.umd.js +10 -10
- package/dist/chat.es.js +896 -779
- package/dist/chat.umd.js +9 -9
- package/dist/components/Button.vue.d.ts +2 -0
- package/dist/style.css +2 -2
- package/package.json +2 -2
package/dist/chat.bundle.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! Package version @n8n/chat@1.
|
|
1
|
+
/*! Package version @n8n/chat@1.6.0 */
|
|
2
2
|
var __create = Object.create, __defProp$1 = Object.defineProperty, __getOwnPropDesc = Object.getOwnPropertyDescriptor, __getOwnPropNames = Object.getOwnPropertyNames, __getProtoOf = Object.getPrototypeOf, __hasOwnProp$1 = Object.prototype.hasOwnProperty, __esmMin = (e, t) => () => (e && (t = e(e = 0)), t), __commonJSMin = (e, t) => () => (t || e((t = { exports: {} }).exports, t), t.exports), __export = (e, n) => {
|
|
3
3
|
let r = {};
|
|
4
4
|
for (var i in e) __defProp$1(r, i, {
|
|
@@ -3242,18 +3242,23 @@ function resolveRootNamespace(e) {
|
|
|
3242
3242
|
function normalizeContainer(e) {
|
|
3243
3243
|
return isString(e) ? document.querySelector(e) : e;
|
|
3244
3244
|
}
|
|
3245
|
-
var Button_default
|
|
3245
|
+
var Button_default = /* @__PURE__ */ defineComponent({
|
|
3246
|
+
inheritAttrs: !1,
|
|
3246
3247
|
__name: "Button",
|
|
3247
3248
|
props: {
|
|
3248
3249
|
type: { default: "primary" },
|
|
3249
|
-
element: { default: "button" }
|
|
3250
|
+
element: { default: "button" },
|
|
3251
|
+
disabled: {
|
|
3252
|
+
type: Boolean,
|
|
3253
|
+
default: !1
|
|
3254
|
+
}
|
|
3250
3255
|
},
|
|
3251
3256
|
setup(e) {
|
|
3252
|
-
let t = e, n = computed(() => `chat-button-${t.type}`);
|
|
3253
|
-
return (
|
|
3254
|
-
default: withCtx(() => [renderSlot(
|
|
3257
|
+
let t = e, n = computed(() => `chat-button-${t.type}${t.disabled ? "-disabled" : ""}`);
|
|
3258
|
+
return (r, i) => (openBlock(), createElementBlock("span", { class: normalizeClass({ "chat-button-wrapper-disabled": t.disabled }) }, [(openBlock(), createBlock(resolveDynamicComponent(e.element), mergeProps({ class: ["chat-button", n.value] }, r.$attrs), {
|
|
3259
|
+
default: withCtx(() => [renderSlot(r.$slots, "default")]),
|
|
3255
3260
|
_: 3
|
|
3256
|
-
},
|
|
3261
|
+
}, 16, ["class"]))], 2));
|
|
3257
3262
|
}
|
|
3258
3263
|
}), core_default = (/* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((e, t) => {
|
|
3259
3264
|
function n(e) {
|
|
@@ -11773,17 +11778,23 @@ var require_markdown_it_link_attributes = /* @__PURE__ */ __commonJSMin(((e, t)
|
|
|
11773
11778
|
buttons: {}
|
|
11774
11779
|
},
|
|
11775
11780
|
setup(e) {
|
|
11776
|
-
|
|
11777
|
-
|
|
11778
|
-
|
|
11779
|
-
|
|
11781
|
+
let t = ref(null), n = async (e, n) => {
|
|
11782
|
+
t.value === null && (await fetch(e)).ok && (t.value = n);
|
|
11783
|
+
};
|
|
11784
|
+
return (r, i) => (openBlock(), createElementBlock("div", null, [createVNode(MarkdownRenderer_default, { text: e.text }, null, 8, ["text"]), createBaseVNode("div", { class: normalizeClass(r.$style.buttons) }, [(openBlock(!0), createElementBlock(Fragment, null, renderList(e.buttons, (e, r) => (openBlock(), createElementBlock(Fragment, { key: e.text }, [t.value === null || r === t.value ? (openBlock(), createBlock(Button_default, {
|
|
11785
|
+
key: 0,
|
|
11786
|
+
element: "button",
|
|
11780
11787
|
type: e.type,
|
|
11781
|
-
|
|
11782
|
-
|
|
11788
|
+
disabled: r === t.value,
|
|
11789
|
+
onClick: (t) => n(e.link, r)
|
|
11783
11790
|
}, {
|
|
11784
11791
|
default: withCtx(() => [createTextVNode(toDisplayString(e.text), 1)]),
|
|
11785
11792
|
_: 2
|
|
11786
|
-
}, 1032, [
|
|
11793
|
+
}, 1032, [
|
|
11794
|
+
"type",
|
|
11795
|
+
"disabled",
|
|
11796
|
+
"onClick"
|
|
11797
|
+
])) : createCommentVNode("", !0)], 64))), 128))], 2)]));
|
|
11787
11798
|
}
|
|
11788
11799
|
}), MessageWithButtons_vue_vue_type_style_index_0_lang_module_default = { buttons: "_buttons_omuwb_1" }, __plugin_vue_export_helper_default = (e, t) => {
|
|
11789
11800
|
let n = e.__vccOpts || e;
|
|
@@ -12293,20 +12304,20 @@ const ChatPlugin = { install(e, t) {
|
|
|
12293
12304
|
};
|
|
12294
12305
|
e.provide(ChatSymbol, d), e.config.globalProperties.$chat = d;
|
|
12295
12306
|
} };
|
|
12296
|
-
var _hoisted_1$
|
|
12307
|
+
var _hoisted_1$236 = {
|
|
12297
12308
|
viewBox: "0 0 24 24",
|
|
12298
12309
|
width: "1.2em",
|
|
12299
12310
|
height: "1.2em"
|
|
12300
12311
|
};
|
|
12301
|
-
function render$
|
|
12302
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12312
|
+
function render$212(e, t) {
|
|
12313
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$236, [...t[0] ||= [createBaseVNode("path", {
|
|
12303
12314
|
fill: "currentColor",
|
|
12304
12315
|
d: "M19 6.41L17.59 5L12 10.59L6.41 5L5 6.41L10.59 12L5 17.59L6.41 19L12 13.41L17.59 19L19 17.59L13.41 12z"
|
|
12305
12316
|
}, null, -1)]]);
|
|
12306
12317
|
}
|
|
12307
12318
|
var close_default = {
|
|
12308
12319
|
name: "mdi-close",
|
|
12309
|
-
render: render$
|
|
12320
|
+
render: render$212
|
|
12310
12321
|
};
|
|
12311
12322
|
function useChat() {
|
|
12312
12323
|
return inject(ChatSymbol);
|
|
@@ -12328,24 +12339,24 @@ function useI18n() {
|
|
|
12328
12339
|
te: r
|
|
12329
12340
|
};
|
|
12330
12341
|
}
|
|
12331
|
-
var _hoisted_1$
|
|
12342
|
+
var _hoisted_1$235 = { class: "chat-get-started" }, GetStarted_default = /* @__PURE__ */ defineComponent({
|
|
12332
12343
|
__name: "GetStarted",
|
|
12333
12344
|
setup(e) {
|
|
12334
12345
|
let { t } = useI18n();
|
|
12335
|
-
return (e, n) => (openBlock(), createElementBlock("div", _hoisted_1$
|
|
12346
|
+
return (e, n) => (openBlock(), createElementBlock("div", _hoisted_1$235, [createVNode(Button_default, { onClick: n[0] ||= (t) => e.$emit("click:button") }, {
|
|
12336
12347
|
default: withCtx(() => [createTextVNode(toDisplayString(unref(t)("getStarted")), 1)]),
|
|
12337
12348
|
_: 1
|
|
12338
12349
|
})]));
|
|
12339
12350
|
}
|
|
12340
|
-
}), _sfc_main$8 = {}, _hoisted_1$
|
|
12351
|
+
}), _sfc_main$8 = {}, _hoisted_1$234 = { class: "chat-powered-by" };
|
|
12341
12352
|
function _sfc_render$8(e, t) {
|
|
12342
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
12353
|
+
return openBlock(), createElementBlock("div", _hoisted_1$234, [...t[0] ||= [createTextVNode(" Powered by ", -1), createBaseVNode("a", { href: "https://n8n.io?utm_source=n8n-external&utm_medium=widget-powered-by" }, "n8n", -1)]]);
|
|
12343
12354
|
}
|
|
12344
|
-
var PoweredBy_default = /* @__PURE__ */ __plugin_vue_export_helper_default(_sfc_main$8, [["render", _sfc_render$8]]), _hoisted_1$
|
|
12355
|
+
var PoweredBy_default = /* @__PURE__ */ __plugin_vue_export_helper_default(_sfc_main$8, [["render", _sfc_render$8]]), _hoisted_1$233 = { class: "chat-get-started-footer" }, _hoisted_2$16 = { key: 0 }, GetStartedFooter_default = /* @__PURE__ */ defineComponent({
|
|
12345
12356
|
__name: "GetStartedFooter",
|
|
12346
12357
|
setup(e) {
|
|
12347
12358
|
let { t, te: n } = useI18n();
|
|
12348
|
-
return (e, r) => (openBlock(), createElementBlock("div", _hoisted_1$
|
|
12359
|
+
return (e, r) => (openBlock(), createElementBlock("div", _hoisted_1$233, [unref(n)("footer") ? (openBlock(), createElementBlock("div", _hoisted_2$16, toDisplayString(unref(t)("footer")), 1)) : createCommentVNode("", !0), createVNode(PoweredBy_default)]));
|
|
12349
12360
|
}
|
|
12350
12361
|
});
|
|
12351
12362
|
function tryOnScopeDispose$1(e) {
|
|
@@ -12398,119 +12409,119 @@ function useFileDialog(e = {}) {
|
|
|
12398
12409
|
onChange: r
|
|
12399
12410
|
};
|
|
12400
12411
|
}
|
|
12401
|
-
var _hoisted_1$
|
|
12412
|
+
var _hoisted_1$232 = {
|
|
12402
12413
|
viewBox: "0 0 24 24",
|
|
12403
12414
|
width: "1.2em",
|
|
12404
12415
|
height: "1.2em"
|
|
12405
12416
|
};
|
|
12406
|
-
function render$
|
|
12407
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12417
|
+
function render$211(e, t) {
|
|
12418
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$232, [...t[0] ||= [createBaseVNode("path", {
|
|
12408
12419
|
fill: "currentColor",
|
|
12409
12420
|
d: "M16.5 6v11.5a4 4 0 0 1-4 4a4 4 0 0 1-4-4V5A2.5 2.5 0 0 1 11 2.5A2.5 2.5 0 0 1 13.5 5v10.5a1 1 0 0 1-1 1a1 1 0 0 1-1-1V6H10v9.5a2.5 2.5 0 0 0 2.5 2.5a2.5 2.5 0 0 0 2.5-2.5V5a4 4 0 0 0-4-4a4 4 0 0 0-4 4v12.5a5.5 5.5 0 0 0 5.5 5.5a5.5 5.5 0 0 0 5.5-5.5V6z"
|
|
12410
12421
|
}, null, -1)]]);
|
|
12411
12422
|
}
|
|
12412
12423
|
var paperclip_default$1 = {
|
|
12413
12424
|
name: "mdi-paperclip",
|
|
12414
|
-
render: render$
|
|
12415
|
-
}, _hoisted_1$
|
|
12425
|
+
render: render$211
|
|
12426
|
+
}, _hoisted_1$231 = {
|
|
12416
12427
|
viewBox: "0 0 24 24",
|
|
12417
12428
|
width: "1.2em",
|
|
12418
12429
|
height: "1.2em"
|
|
12419
12430
|
};
|
|
12420
|
-
function render$
|
|
12421
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12431
|
+
function render$210(e, t) {
|
|
12432
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$231, [...t[0] ||= [createBaseVNode("path", {
|
|
12422
12433
|
fill: "currentColor",
|
|
12423
12434
|
d: "m2 21l21-9L2 3v7l15 2l-15 2z"
|
|
12424
12435
|
}, null, -1)]]);
|
|
12425
12436
|
}
|
|
12426
12437
|
var send_default$1 = {
|
|
12427
12438
|
name: "mdi-send",
|
|
12428
|
-
render: render$
|
|
12429
|
-
}, _hoisted_1$
|
|
12439
|
+
render: render$210
|
|
12440
|
+
}, _hoisted_1$230 = {
|
|
12430
12441
|
viewBox: "0 0 24 24",
|
|
12431
12442
|
width: "1.2em",
|
|
12432
12443
|
height: "1.2em"
|
|
12433
12444
|
};
|
|
12434
|
-
function render$
|
|
12435
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12445
|
+
function render$209(e, t) {
|
|
12446
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$230, [...t[0] ||= [createBaseVNode("path", {
|
|
12436
12447
|
fill: "currentColor",
|
|
12437
12448
|
d: "M20 6.91L17.09 4L12 9.09L6.91 4L4 6.91L9.09 12L4 17.09L6.91 20L12 14.91L17.09 20L20 17.09L14.91 12z"
|
|
12438
12449
|
}, null, -1)]]);
|
|
12439
12450
|
}
|
|
12440
12451
|
var closeThick_default = {
|
|
12441
12452
|
name: "mdi-closeThick",
|
|
12442
|
-
render: render$
|
|
12443
|
-
}, _hoisted_1$
|
|
12453
|
+
render: render$209
|
|
12454
|
+
}, _hoisted_1$229 = {
|
|
12444
12455
|
viewBox: "0 0 24 24",
|
|
12445
12456
|
width: "1.2em",
|
|
12446
12457
|
height: "1.2em"
|
|
12447
12458
|
};
|
|
12448
|
-
function render$
|
|
12449
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12459
|
+
function render$208(e, t) {
|
|
12460
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$229, [...t[0] ||= [createBaseVNode("path", {
|
|
12450
12461
|
fill: "currentColor",
|
|
12451
12462
|
d: "M13 9h5.5L13 3.5zM6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m0 18h12v-8l-4 4l-2-2zM8 9a2 2 0 0 0-2 2a2 2 0 0 0 2 2a2 2 0 0 0 2-2a2 2 0 0 0-2-2"
|
|
12452
12463
|
}, null, -1)]]);
|
|
12453
12464
|
}
|
|
12454
12465
|
var fileImage_default = {
|
|
12455
12466
|
name: "mdi-fileImage",
|
|
12456
|
-
render: render$
|
|
12457
|
-
}, _hoisted_1$
|
|
12467
|
+
render: render$208
|
|
12468
|
+
}, _hoisted_1$228 = {
|
|
12458
12469
|
viewBox: "0 0 24 24",
|
|
12459
12470
|
width: "1.2em",
|
|
12460
12471
|
height: "1.2em"
|
|
12461
12472
|
};
|
|
12462
|
-
function render$
|
|
12463
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12473
|
+
function render$207(e, t) {
|
|
12474
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$228, [...t[0] ||= [createBaseVNode("path", {
|
|
12464
12475
|
fill: "currentColor",
|
|
12465
12476
|
d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm-1 11h-2v5a2 2 0 0 1-2 2a2 2 0 0 1-2-2a2 2 0 0 1 2-2c.4 0 .7.1 1 .3V11h3zm0-4V3.5L18.5 9z"
|
|
12466
12477
|
}, null, -1)]]);
|
|
12467
12478
|
}
|
|
12468
12479
|
var fileMusic_default = {
|
|
12469
12480
|
name: "mdi-fileMusic",
|
|
12470
|
-
render: render$
|
|
12471
|
-
}, _hoisted_1$
|
|
12481
|
+
render: render$207
|
|
12482
|
+
}, _hoisted_1$227 = {
|
|
12472
12483
|
viewBox: "0 0 24 24",
|
|
12473
12484
|
width: "1.2em",
|
|
12474
12485
|
height: "1.2em"
|
|
12475
12486
|
};
|
|
12476
|
-
function render$
|
|
12477
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12487
|
+
function render$206(e, t) {
|
|
12488
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$227, [...t[0] ||= [createBaseVNode("path", {
|
|
12478
12489
|
fill: "currentColor",
|
|
12479
12490
|
d: "M13 9h5.5L13 3.5zM6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m9 16v-2H6v2zm3-4v-2H6v2z"
|
|
12480
12491
|
}, null, -1)]]);
|
|
12481
12492
|
}
|
|
12482
12493
|
var fileText_default = {
|
|
12483
12494
|
name: "mdi-fileText",
|
|
12484
|
-
render: render$
|
|
12485
|
-
}, _hoisted_1$
|
|
12495
|
+
render: render$206
|
|
12496
|
+
}, _hoisted_1$226 = {
|
|
12486
12497
|
viewBox: "0 0 24 24",
|
|
12487
12498
|
width: "1.2em",
|
|
12488
12499
|
height: "1.2em"
|
|
12489
12500
|
};
|
|
12490
|
-
function render$
|
|
12491
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12501
|
+
function render$205(e, t) {
|
|
12502
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$226, [...t[0] ||= [createBaseVNode("path", {
|
|
12492
12503
|
fill: "currentColor",
|
|
12493
12504
|
d: "M13 9h5.5L13 3.5zM6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m11 17v-6l-3 2.2V13H7v6h7v-2.2z"
|
|
12494
12505
|
}, null, -1)]]);
|
|
12495
12506
|
}
|
|
12496
12507
|
var fileVideo_default = {
|
|
12497
12508
|
name: "mdi-fileVideo",
|
|
12498
|
-
render: render$
|
|
12499
|
-
}, _hoisted_1$
|
|
12509
|
+
render: render$205
|
|
12510
|
+
}, _hoisted_1$225 = {
|
|
12500
12511
|
viewBox: "0 0 24 24",
|
|
12501
12512
|
width: "1.2em",
|
|
12502
12513
|
height: "1.2em"
|
|
12503
12514
|
};
|
|
12504
|
-
function render$
|
|
12505
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12515
|
+
function render$204(e, t) {
|
|
12516
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$225, [...t[0] ||= [createBaseVNode("path", {
|
|
12506
12517
|
fill: "currentColor",
|
|
12507
12518
|
d: "M14 3v2h3.59l-9.83 9.83l1.41 1.41L19 6.41V10h2V3m-2 16H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7h-2z"
|
|
12508
12519
|
}, null, -1)]]);
|
|
12509
12520
|
}
|
|
12510
12521
|
var openInNew_default = {
|
|
12511
12522
|
name: "mdi-openInNew",
|
|
12512
|
-
render: render$
|
|
12513
|
-
}, _hoisted_1$
|
|
12523
|
+
render: render$204
|
|
12524
|
+
}, _hoisted_1$224 = { class: "chat-file-name" }, ChatFile_default = /* @__PURE__ */ __plugin_vue_export_helper_default(/* @__PURE__ */ defineComponent({
|
|
12514
12525
|
__name: "ChatFile",
|
|
12515
12526
|
props: {
|
|
12516
12527
|
file: {},
|
|
@@ -12542,7 +12553,7 @@ var openInNew_default = {
|
|
|
12542
12553
|
onClick: s
|
|
12543
12554
|
}, [
|
|
12544
12555
|
createVNode(unref(o), { class: "chat-icon" }),
|
|
12545
|
-
createBaseVNode("p", _hoisted_1$
|
|
12556
|
+
createBaseVNode("p", _hoisted_1$224, toDisplayString(e.file.name), 1),
|
|
12546
12557
|
e.isRemovable ? (openBlock(), createElementBlock("span", {
|
|
12547
12558
|
key: 0,
|
|
12548
12559
|
class: "chat-file-delete",
|
|
@@ -12554,7 +12565,7 @@ var openInNew_default = {
|
|
|
12554
12565
|
})) : createCommentVNode("", !0)
|
|
12555
12566
|
]));
|
|
12556
12567
|
}
|
|
12557
|
-
}), [["__scopeId", "data-v-dc3234f3"]]), _hoisted_1$
|
|
12568
|
+
}), [["__scopeId", "data-v-dc3234f3"]]), _hoisted_1$223 = { class: "chat-inputs" }, _hoisted_2$15 = {
|
|
12558
12569
|
key: 0,
|
|
12559
12570
|
class: "chat-input-left-panel"
|
|
12560
12571
|
}, _hoisted_3$6 = ["disabled", "placeholder"], _hoisted_4$1 = { class: "chat-inputs-controls" }, _hoisted_5$1 = ["disabled"], _hoisted_6$1 = ["disabled"], _hoisted_7 = {
|
|
@@ -12690,8 +12701,8 @@ var openInNew_default = {
|
|
|
12690
12701
|
class: "chat-input",
|
|
12691
12702
|
style: normalizeStyle(w.value),
|
|
12692
12703
|
onKeydown: withModifiers(R, ["stop"])
|
|
12693
|
-
}, [createBaseVNode("div", _hoisted_1$
|
|
12694
|
-
e.$slots.leftPanel ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
12704
|
+
}, [createBaseVNode("div", _hoisted_1$223, [
|
|
12705
|
+
e.$slots.leftPanel ? (openBlock(), createElementBlock("div", _hoisted_2$15, [renderSlot(e.$slots, "leftPanel", {}, void 0, !0)])) : createCommentVNode("", !0),
|
|
12695
12706
|
withDirectives(createBaseVNode("textarea", {
|
|
12696
12707
|
ref_key: "chatTextArea",
|
|
12697
12708
|
ref: u,
|
|
@@ -12729,7 +12740,7 @@ var openInNew_default = {
|
|
|
12729
12740
|
onRemove: L
|
|
12730
12741
|
}, null, 8, ["file"]))), 128))])) : createCommentVNode("", !0)], 36));
|
|
12731
12742
|
}
|
|
12732
|
-
}), [["__scopeId", "data-v-853f9bec"]]), _hoisted_1$
|
|
12743
|
+
}), [["__scopeId", "data-v-853f9bec"]]), _hoisted_1$222 = { class: "chat-layout" }, _hoisted_2$14 = {
|
|
12733
12744
|
key: 0,
|
|
12734
12745
|
class: "chat-header"
|
|
12735
12746
|
}, _hoisted_3$5 = {
|
|
@@ -12747,8 +12758,8 @@ var openInNew_default = {
|
|
|
12747
12758
|
chatEventBus.on("scrollToBottom", n), window.addEventListener("resize", n);
|
|
12748
12759
|
}), onBeforeUnmount(() => {
|
|
12749
12760
|
chatEventBus.off("scrollToBottom", n), window.removeEventListener("resize", n);
|
|
12750
|
-
}), (e, n) => (openBlock(), createElementBlock("main", _hoisted_1$
|
|
12751
|
-
e.$slots.header ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
12761
|
+
}), (e, n) => (openBlock(), createElementBlock("main", _hoisted_1$222, [
|
|
12762
|
+
e.$slots.header ? (openBlock(), createElementBlock("div", _hoisted_2$14, [renderSlot(e.$slots, "header")])) : createCommentVNode("", !0),
|
|
12752
12763
|
e.$slots.default ? (openBlock(), createElementBlock("div", {
|
|
12753
12764
|
key: 1,
|
|
12754
12765
|
ref_key: "chatBodyRef",
|
|
@@ -12758,13 +12769,13 @@ var openInNew_default = {
|
|
|
12758
12769
|
e.$slots.footer ? (openBlock(), createElementBlock("div", _hoisted_3$5, [renderSlot(e.$slots, "footer")])) : createCommentVNode("", !0)
|
|
12759
12770
|
]));
|
|
12760
12771
|
}
|
|
12761
|
-
}), anthropic_default = "data:image/svg+xml,%3csvg%20version='1.1'%20id='Layer_1'%20xmlns:x='ns_extend;'%20xmlns:i='ns_ai;'%20xmlns:graph='ns_graphs;'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2092.2%2065'%20style='enable-background:new%200%200%2092.2%2065;'%20xml:space='preserve'%3e%3cstyle%20type='text/css'%3e%20.st0{fill:%23181818;}%20%3c/style%3e%3cmetadata%3e%3csfw%20xmlns='ns_sfw;'%3e%3cslices%3e%3c/slices%3e%3csliceSourceBounds%20bottomLeftOrigin='true'%20height='65'%20width='92.2'%20x='-43.7'%20y='-98'%3e%3c/sliceSourceBounds%3e%3c/sfw%3e%3c/metadata%3e%3cpath%20class='st0'%20d='M66.5,0H52.4l25.7,65h14.1L66.5,0z%20M25.7,0L0,65h14.4l5.3-13.6h26.9L51.8,65h14.4L40.5,0C40.5,0,25.7,0,25.7,0z%20M24.3,39.3l8.8-22.8l8.8,22.8H24.3z'%3e%3c/path%3e%3c/svg%3e", binary_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2012%2012'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M1%200.642857C1%200.287817%201.27473%200%201.61364%200H4.06818C4.40708%200%204.68182%200.287817%204.68182%200.642857V4.5C4.68182%204.85504%204.40708%205.14286%204.06818%205.14286H1.61364C1.27473%205.14286%201%204.85504%201%204.5V0.642857ZM2.22727%201.28571V3.85714H3.45455V1.28571H2.22727ZM6.31818%200.642857C6.31818%200.287817%206.59292%200%206.93182%200H8.15909C8.49799%200%208.77273%200.287817%208.77273%200.642857V3.85714H9.38636C9.72527%203.85714%2010%204.14496%2010%204.5C10%204.85504%209.72527%205.14286%209.38636%205.14286H6.93182C6.59292%205.14286%206.31818%204.85504%206.31818%204.5C6.31818%204.14496%206.59292%203.85714%206.93182%203.85714H7.54545V1.28571H6.93182C6.59292%201.28571%206.31818%200.997897%206.31818%200.642857ZM1%207.5C1%207.14496%201.27473%206.85714%201.61364%206.85714H2.84091C3.17981%206.85714%203.45455%207.14496%203.45455%207.5V10.7143H4.06818C4.40708%2010.7143%204.68182%2011.0021%204.68182%2011.3571C4.68182%2011.7122%204.40708%2012%204.06818%2012H1.61364C1.27473%2012%201%2011.7122%201%2011.3571C1%2011.0021%201.27473%2010.7143%201.61364%2010.7143H2.22727V8.14286H1.61364C1.27473%208.14286%201%207.85504%201%207.5ZM6.31818%207.5C6.31818%207.14496%206.59292%206.85714%206.93182%206.85714H9.38636C9.72527%206.85714%2010%207.14496%2010%207.5V11.3571C10%2011.7122%209.72527%2012%209.38636%2012H6.93182C6.59292%2012%206.31818%2011.7122%206.31818%2011.3571V7.5ZM7.54545%208.14286V10.7143H8.77273V8.14286H7.54545Z'%20/%3e%3c/svg%3e", bolt_filled_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M13.2251%201.02271C13.5179%200.968554%2013.8195%201.00233%2014.0913%201.11939L14.2055%201.17506L14.3149%201.23951C14.5275%201.37763%2014.7014%201.56758%2014.8208%201.79127L14.8764%201.90553L14.9214%202.02467C15.0145%202.30522%2015.0227%202.60793%2014.9438%202.89478C14.9403%202.90772%2014.9372%202.92106%2014.9331%202.93385L13.0132%208.95338L12.9965%209.00025H19.9995C20.3769%208.99952%2020.7471%209.10523%2021.0669%209.30592C21.3874%209.50712%2021.6437%209.79562%2021.8071%2010.137C21.9704%2010.4783%2022.0341%2010.8588%2021.9897%2011.2346C21.9453%2011.6105%2021.7946%2011.9661%2021.5561%2012.26C21.5375%2012.2829%2021.5181%2012.3052%2021.4975%2012.3264L11.5971%2022.5266L11.5962%2022.5256C11.3774%2022.7595%2011.0907%2022.9194%2010.7749%2022.9778C10.4403%2023.0397%2010.0944%2022.9859%209.7944%2022.8254C9.4944%2022.665%209.25775%2022.4066%209.1235%2022.094C8.98941%2021.7815%208.96593%2021.4327%209.05612%2021.1047L9.06686%2021.0657L10.9868%2015.0462L11.0034%2015.0003H3.99948C3.62236%2015.0008%203.25253%2014.8941%202.93307%2014.6936C2.61276%2014.4925%202.35617%2014.2047%202.19284%2013.8635C2.02947%2013.5221%201.96581%2013.1408%202.01022%2012.7649C2.05468%2012.3892%202.20544%2012.0333%202.44382%2011.7395C2.46238%2011.7167%202.4819%2011.6942%202.50241%2011.6731L12.4028%201.47389C12.6215%201.23984%2012.9091%201.08117%2013.2251%201.02271Z'%20fill='currentColor'%20fill-opacity='0.9'%20style='fill:currentColor;fill-opacity:0.9;'/%3e%3c/svg%3e", continue_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%20512%20512'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M224.975%2049.429c17.138-17.139%2044.919-17.139%2062.057%200l175.546%20175.546a43.8%2043.8%200%200%201%209.347%2013.817l.146.349q.125.298.243.598.1.25.197.5l.147.388q.133.356.261.716l.09.257q.141.407.275.818l.044.136a39%2039%200%200%201%20.306.988%2043.9%2043.9%200%200%201%201.802%2012.473c0%2012.497-5.225%2023.774-13.608%2031.767L287.032%20462.578c-17.138%2017.138-44.919%2017.138-62.057%200s-17.139-44.92%200-62.059l100.618-100.618H80.458c-24.238%200-43.887-19.649-43.887-43.886s19.65-43.887%2043.887-43.887h245.158L224.975%20111.486c-17.139-17.138-17.139-44.919%200-62.057'%20fill='currentColor'/%3e%3c/svg%3e", empty_output_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%20512%20512'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M209.675%20387.718c20.945%2010.711%2030.794%2035.749%2022.073%2058.141-9.306%2023.886-36.221%2035.695-60.107%2026.389-29.106-11.34-56.354-28.746-79.744-52.137-20.47-20.47-36.356-43.894-47.607-68.932l-4.53-10.812-1.517-4.508c-6.284-22.673%205.511-46.874%2027.906-55.599%2022.392-8.721%2047.431%201.129%2058.141%2022.073l1.945%204.338%202.735%206.453c6.714%2014.943%2016.204%2028.982%2028.568%2041.346%2014.132%2014.132%2030.44%2024.54%2047.799%2031.304zM91.897%2091.905c23.39-23.39%2050.638-40.796%2079.744-52.137l4.508-1.517c22.673-6.284%2046.874%205.512%2055.599%2027.906%209.303%2023.885-2.526%2050.781-26.411%2060.086-17.359%206.763-33.667%2017.171-47.799%2031.303-12.364%2012.364-21.854%2026.403-28.568%2041.347l-2.735%206.453-1.945%204.337c-10.71%2020.945-35.75%2030.794-58.141%2022.073-23.886-9.306-35.695-36.221-26.39-60.107%2011.341-29.106%2028.747-56.353%2052.138-79.744M354.462%20354.47c12.364-12.364%2021.854-26.403%2028.568-41.346l2.735-6.453%201.945-4.338c10.71-20.944%2035.749-30.794%2058.141-22.073%2022.394%208.725%2034.19%2032.926%2027.906%2055.599l-1.517%204.508-4.53%2010.812c-11.251%2025.038-27.137%2048.462-47.607%2068.932-23.39%2023.391-50.638%2040.797-79.744%2052.137-23.886%209.306-50.801-2.503-60.107-26.389-9.303-23.885%202.526-50.78%2026.411-60.085l6.453-2.735c14.943-6.715%2028.982-16.205%2041.346-28.569m65.641-262.565c23.391%2023.391%2040.796%2050.638%2052.137%2079.744%209.306%2023.886-2.503%2050.801-26.389%2060.107-22.392%208.721-47.431-1.128-58.141-22.073l-1.945-4.337-2.735-6.453c-6.714-14.944-16.204-28.983-28.568-41.347-14.132-14.132-30.44-24.54-47.799-31.303-23.885-9.305-35.714-36.201-26.411-60.086%209.306-23.886%2036.221-35.694%2060.107-26.389l10.812%204.53c25.038%2011.25%2048.462%2027.137%2068.932%2047.607'%20fill='currentColor'%20/%3e%3c/svg%3e", filled_square_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2010%2010'%20fill='currentColor'%20overflow='hidden'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='0'%20y='0'%20width='10'%20height='10'%20rx='2'%20ry='2'/%3e%3c/svg%3e", form_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2050%2050'%20fill='none'%3e%3cpath%20fill='currentColor'%20d='M47.267%2022.554c-.002.31-.126.608-.344.829l-6.805%206.796a1.13%201.13%200%200%201-.828.344%201.15%201.15%200%200%201-.828-.344%201.18%201.18%200%200%201%200-1.656l5.977-5.969-1.313-1.312-1.383%201.414L28.595%2035.78l-4.617.781.781-4.617.336-.336%202.563%202.555c.214.227.515.351.828.343.311.006.611-.119.828-.343a1.18%201.18%200%200%200%200-1.657l-2.563-2.562%208.25-8.273%204.29-4.29%203.757%203.711%201.617-1.617%202.258%202.258c.218.218.342.512.344.82m-17.282%2015.15%203.032-3.032v8.297a1.56%201.56%200%200%201-1.563%201.563H4.298a1.56%201.56%200%200%201-1.563-1.563V14.843c0-.405.157-.794.438-1.086l6.304-6.531v5.344H6.251a1.172%201.172%200%201%200%200%202.344h4.43a1.17%201.17%200%200%200%201.171-1.172V5.468h19.602a1.56%201.56%200%200%201%201.563%201.563v13.281L22.86%2030.468a1.24%201.24%200%200%200-.328.633l-1.102%206.61c-.06.373.062.753.329%201.023.22.22.517.343.828.343h.195l6.602-1.101a1.16%201.16%200%200%200%20.601-.274m-21-16a1.18%201.18%200%200%200%201.172%201.172h15.266a1.172%201.172%200%201%200%200-2.344H10.157a1.17%201.17%200%200%200-1.172%201.172m10.711%2014.766a1.17%201.17%200%200%200-1.172-1.172h-8.367a1.172%201.172%200%201%200%200%202.343h8.367a1.17%201.17%200%200%200%201.172-1.172m.86-7.391a1.17%201.17%200%200%200-1.172-1.172h-9.227a1.172%201.172%200%201%200%200%202.344h9.227a1.164%201.164%200%200%200%201.171-1.172M45.75%2018.617a1.563%201.563%200%200%200%200-2.203l-1.64-1.64a1.563%201.563%200%200%200-2.204%200l-.93.929%203.852%203.828z'/%3e%3c/svg%3e", grip_lines_vertical_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9%203L9%2021'%20stroke='currentColor'%20style='stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%203L15%2021'%20stroke='currentColor'%20style='stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e", lovable_default = "data:image/svg+xml,%3csvg%20width='121'%20height='122'%20viewBox='0%200%20121%20122'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cmask%20id='mask0_572_319'%20style='mask-type:alpha'%20maskUnits='userSpaceOnUse'%20x='0'%20y='0'%20width='121'%20height='122'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M36.0687%200C55.9888%200%2072.1373%2016.1551%2072.1373%2036.0835V49.7975H84.141C104.061%2049.7975%20120.21%2065.9526%20120.21%2085.8809C120.21%20105.809%20104.061%20121.964%2084.141%20121.964H0V36.0835C0%2016.1551%2016.1485%200%2036.0687%200Z'%20fill='url(%23paint0_linear_572_319)'/%3e%3c/mask%3e%3cg%20mask='url(%23mask0_572_319)'%3e%3cg%20filter='url(%23filter0_f_572_319)'%3e%3cellipse%20cx='52.7381'%20cy='65.1011'%20rx='81.3729'%20ry='81.1923'%20fill='%234B73FF'/%3e%3c/g%3e%3cg%20filter='url(%23filter1_f_572_319)'%3e%3cellipse%20cx='61.6734'%20cy='20.547'%20rx='104.216'%20ry='81.1923'%20fill='%23FF66F4'/%3e%3c/g%3e%3cg%20filter='url(%23filter2_f_572_319)'%3e%3cellipse%20cx='78.6659'%20cy='5.26802'%20rx='81.3729'%20ry='71.3042'%20fill='%23FF0105'/%3e%3c/g%3e%3cg%20filter='url(%23filter3_f_572_319)'%3e%3cellipse%20cx='63.121'%20cy='20.5275'%20rx='48.9374'%20ry='48.8288'%20fill='%23FE7B02'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_f_572_319'%20x='-65.0219'%20y='-52.4784'%20width='235.52'%20height='235.159'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='BackgroundImageFix'%20result='shape'/%3e%3cfeGaussianBlur%20stdDeviation='18.1936'%20result='effect1_foregroundBlur_572_319'/%3e%3c/filter%3e%3cfilter%20id='filter1_f_572_319'%20x='-78.9301'%20y='-97.0324'%20width='281.208'%20height='235.159'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='BackgroundImageFix'%20result='shape'/%3e%3cfeGaussianBlur%20stdDeviation='18.1936'%20result='effect1_foregroundBlur_572_319'/%3e%3c/filter%3e%3cfilter%20id='filter2_f_572_319'%20x='-39.0942'%20y='-102.423'%20width='235.52'%20height='215.383'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='BackgroundImageFix'%20result='shape'/%3e%3cfeGaussianBlur%20stdDeviation='18.1936'%20result='effect1_foregroundBlur_572_319'/%3e%3c/filter%3e%3cfilter%20id='filter3_f_572_319'%20x='-22.2036'%20y='-64.6884'%20width='170.649'%20height='170.432'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='BackgroundImageFix'%20result='shape'/%3e%3cfeGaussianBlur%20stdDeviation='18.1936'%20result='effect1_foregroundBlur_572_319'/%3e%3c/filter%3e%3clinearGradient%20id='paint0_linear_572_319'%20x1='40.4527'%20y1='21.4331'%20x2='76.9327'%20y2='121.971'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.025'%20stop-color='%23FF8E63'/%3e%3cstop%20offset='0.56'%20stop-color='%23FF7EB0'/%3e%3cstop%20offset='0.95'%20stop-color='%234B73FF'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e", mcp_default = "data:image/svg+xml,%3csvg%20fill='currentColor'%20fill-rule='evenodd'%20height='1em'%20style='flex:none;line-height:1'%20viewBox='0%200%2024%2024'%20width='1em'%20xmlns='http://www.w3.org/2000/svg'%3e%3ctitle%3eModelContextProtocol%3c/title%3e%3cpath%20d='M15.688%202.343a2.588%202.588%200%2000-3.61%200l-9.626%209.44a.863.863%200%2001-1.203%200%20.823.823%200%20010-1.18l9.626-9.44a4.313%204.313%200%20016.016%200%204.116%204.116%200%20011.204%203.54%204.3%204.3%200%20013.609%201.18l.05.05a4.115%204.115%200%20010%205.9l-8.706%208.537a.274.274%200%20000%20.393l1.788%201.754a.823.823%200%20010%201.18.863.863%200%2001-1.203%200l-1.788-1.753a1.92%201.92%200%20010-2.754l8.706-8.538a2.47%202.47%200%20000-3.54l-.05-.049a2.588%202.588%200%2000-3.607-.003l-7.172%207.034-.002.002-.098.097a.863.863%200%2001-1.204%200%20.823.823%200%20010-1.18l7.273-7.133a2.47%202.47%200%2000-.003-3.537z'%3e%3c/path%3e%3cpath%20d='M14.485%204.703a.823.823%200%20000-1.18.863.863%200%2000-1.204%200l-7.119%206.982a4.115%204.115%200%20000%205.9%204.314%204.314%200%20006.016%200l7.12-6.982a.823.823%200%20000-1.18.863.863%200%2000-1.204%200l-7.119%206.982a2.588%202.588%200%2001-3.61%200%202.47%202.47%200%20010-3.54l7.12-6.982z'%3e%3c/path%3e%3c/svg%3e", node_dirty_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M10.12%203.3c.911-1.395%203.012-1.349%203.844.14l8.222%2014.712c.838%201.5-.246%203.348-1.964%203.348H3.778c-1.718%200-2.802-1.848-1.964-3.348L10.036%203.44zM5.057%2018.5h13.886L12%206.073z'/%3e%3c/svg%3e", node_ellipsis_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M4.5%209.5a2.5%202.5%200%201%201%200%205%202.5%202.5%200%200%201%200-5m7.5%200a2.5%202.5%200%201%201%200%205%202.5%202.5%200%200%201%200-5m7.5%200a2.5%202.5%200%201%201%200%205%202.5%202.5%200%200%201%200-5'/%3e%3c/svg%3e", node_execution_error_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20fill-rule='evenodd'%20d='M12%201c6.075%200%2011%204.925%2011%2011s-4.925%2011-11%2011S1%2018.075%201%2012%205.925%201%2012%201m5.56%205.44a1.5%201.5%200%200%200-2.12%200L12%209.878l-3.44-3.44A1.5%201.5%200%201%200%206.44%208.56L9.878%2012l-3.44%203.44a1.5%201.5%200%201%200%202.122%202.12L12%2014.122l3.44%203.44.114.103a1.5%201.5%200%200%200%202.11-2.11l-.104-.114L14.122%2012l3.44-3.44a1.5%201.5%200%200%200%200-2.12'%20clip-rule='evenodd'/%3e%3c/svg%3e", node_pin_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M16.297%202.515A3%203%200%200%201%2016%208.5v2.26l.01.138a1%201%200%200%200%20.545.756l.006.003%201.774.898.184.1A3%203%200%200%201%2020%2015.238V16a2%202%200%200%201-2%202h-4.5v4a1.5%201.5%200%200%201-3%200v-4H6a2%202%200%200%201-1.99-1.803L4%2016v-.76l.008-.209a3%203%200%200%201%201.657-2.476l1.773-.898.007-.003a1%201%200%200%200%20.545-.756L8%2010.76V8.5a3%203%200%200%201%200-6h8z'/%3e%3c/svg%3e", node_play_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%3e%3cpath%20fill='currentColor'%20d='M5.52%202.122c.322-.175.713-.16%201.021.037l14%209a1%201%200%200%201%200%201.682l-14%209A1.001%201.001%200%200%201%205%2021V3a1%201%200%200%201%20.52-.878'/%3e%3c/svg%3e", node_power_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M16.645%205.907a1.5%201.5%200%200%201%202.122.028%209.77%209.77%200%200%201%202.585%204.953%209.9%209.9%200%200%201-.53%205.579%209.66%209.66%200%200%201-3.476%204.357%209.36%209.36%200%200%201-5.28%201.657%209.36%209.36%200%200%201-5.292-1.623%209.66%209.66%200%200%201-3.504-4.335%209.9%209.9%200%200%201-.564-5.576%209.77%209.77%200%200%201%202.556-4.97l.11-.105a1.501%201.501%200%200%201%202.05%202.187l-.166.178a6.8%206.8%200%200%200-1.602%203.266%206.9%206.9%200%200%200%20.393%203.884%206.66%206.66%200%200%200%202.413%202.989%206.36%206.36%200%200%200%203.595%201.105%206.36%206.36%200%200%200%203.59-1.128%206.66%206.66%200%200%200%202.394-3.005%206.9%206.9%200%200%200%20.37-3.887%206.77%206.77%200%200%200-1.79-3.433%201.5%201.5%200%200%201%20.026-2.12'/%3e%3cpath%20fill='currentColor'%20d='M12.035%201.481a1.5%201.5%200%200%201%201.5%201.5v9a1.5%201.5%200%200%201-3%200v-9a1.5%201.5%200%200%201%201.5-1.5'/%3e%3c/svg%3e", node_success_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M19.94%205.502a1.5%201.5%200%201%201%202.12%202.12L9.687%2019.999a1.5%201.5%200%200%201-2.122%200L1.94%2014.373a1.5%201.5%200%200%201%202.007-2.225l.115.104%204.564%204.564z'/%3e%3c/svg%3e", node_trash_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M21%206a1%201%200%201%201%200%202h-1v12.125c0%20.817-.424%201.534-.941%202.019-.522.488-1.256.856-2.059.856H7c-.803%200-1.537-.368-2.059-.856C4.424%2021.659%204%2020.943%204%2020.125V8H3a1%201%200%200%201%200-2zm-7-5a3%203%200%200%201%203%203H7a3%203%200%200%201%203-3z'/%3e%3c/svg%3e", node_validation_error_default = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M10.0506%202.38452C10.9161%200.882058%2013.0845%200.882058%2013.95%202.38452L23.3065%2018.6267C24.1706%2020.1267%2023.0883%2021.9997%2021.3572%2021.9998H2.6424C0.911559%2021.9994%20-0.170877%2020.1266%200.693176%2018.6267L10.0506%202.38452ZM11.9998%2015.9998C11.1715%2015.9999%2010.4999%2016.6715%2010.4998%2017.4998C10.4998%2018.3281%2011.1715%2018.9997%2011.9998%2018.9998C12.8282%2018.9998%2013.4998%2018.3282%2013.4998%2017.4998C13.4997%2016.6714%2012.8282%2015.9998%2011.9998%2015.9998ZM11.9998%207.49976C11.1715%207.49986%2010.4999%208.17148%2010.4998%208.99976V12.4998C10.4998%2013.3281%2011.1715%2013.9997%2011.9998%2013.9998C12.8282%2013.9998%2013.4998%2013.3282%2013.4998%2012.4998V8.99976C13.4997%208.17142%2012.8282%207.49976%2011.9998%207.49976Z'%20fill='currentColor'/%3e%3c/svg%3e", pop_out_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2016%2016'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M13.3333%2012.5525V12.4489C14.2278%2012.0756%2014.8571%2011.1925%2014.8571%2010.1632V3.61924C14.8571%202.96252%2014.5962%202.3327%2014.1318%201.86832C13.6675%201.40395%2013.0376%201.14307%2012.3809%201.14307H5.90473C5.38113%201.14296%204.87098%201.30883%204.44756%201.61684C4.02414%201.92485%203.70926%202.35915%203.54816%202.85734H3.39501C2.70016%202.85734%202.10892%203.10191%201.70206%203.5842C1.30739%204.05124%201.14282%204.67372%201.14282%205.33352V12.0002C1.14282%2012.8078%201.43463%2013.5346%201.98854%2014.0573C2.54168%2014.5777%203.30892%2014.8535%204.19044%2014.8535H7.17711L10.2826%2014.8573H10.2842C11.0278%2014.8611%2011.7645%2014.7049%2012.336%2014.3392C12.9303%2013.9582%2013.3333%2013.3525%2013.3333%2012.5525ZM3.39501%204.0002H3.42854V10.1625C3.42854%2010.8192%203.68942%2011.449%204.1538%2011.9134C4.61817%2012.3777%205.248%2012.6386%205.90473%2012.6386H12.1874C12.163%2012.9571%2012.003%2013.1948%2011.7196%2013.3761C11.3897%2013.588%2010.8891%2013.7175%2010.2887%2013.7144H10.2857L7.17558%2013.7106H4.19044C3.54816%2013.7106%203.07806%2013.5125%202.7733%2013.2253C2.47006%2012.9403%202.28568%2012.5259%202.28568%2012.0002V5.33352C2.28568%204.84971%202.40758%204.52057%202.5752%204.32096C2.73139%204.13658%202.98054%204.0002%203.39501%204.0002ZM8.01673%203.80972H11.619C11.7706%203.80972%2011.9159%203.86992%2012.0231%203.97709C12.1302%204.08425%2012.1904%204.22959%2012.1904%204.38115V7.98418C12.1904%208.13573%2012.1302%208.28107%2012.0231%208.38823C11.9159%208.4954%2011.7706%208.5556%2011.619%208.5556C11.4675%208.5556%2011.3221%208.4954%2011.215%208.38823C11.1078%208.28107%2011.0476%208.13573%2011.0476%207.98418V5.76019L7.07044%209.73731C7.0177%209.79186%206.95463%209.83536%206.8849%209.86528C6.81517%209.89519%206.74018%209.91092%206.6643%209.91154C6.58843%209.91217%206.51319%209.89767%206.44298%209.86891C6.37277%209.84014%206.30899%209.79768%206.25536%209.74401C6.20173%209.69033%206.15933%209.62651%206.13063%209.55627C6.10193%209.48603%206.08751%209.41078%206.0882%209.3349C6.0889%209.25903%206.1047%209.18406%206.13468%209.11435C6.16466%209.04465%206.20822%208.98162%206.26282%208.92893L10.24%204.95257H8.01673C7.86517%204.95257%207.71983%204.89237%207.61267%204.7852C7.5055%204.67804%207.4453%204.5327%207.4453%204.38115C7.4453%204.22959%207.5055%204.08425%207.61267%203.97709C7.71983%203.86992%207.86517%203.80972%208.01673%203.80972Z'%20/%3e%3c/svg%3e", resolver_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='28'%20height='28'%20viewBox='0%200%2028%2028'%20fill='none'%3e%3cpath%20d='M23.0877%200H13.9944L16.8048%208.75784H25.8982L18.5411%2013.9805L21.3523%2022.788C26.0879%2019.3383%2027.6352%2014.1173%2025.899%208.75784L23.0877%200ZM2.09058%208.75784H11.1839L13.9944%200H4.90182L2.09058%208.75784C0.353512%2014.1173%201.90165%2019.3383%206.63727%2022.788L9.44769%2013.9805L2.09058%208.75784ZM6.63727%2022.788L13.9944%2028L21.3515%2022.788L13.9944%2017.4896L6.63727%2022.788Z'%20fill='currentColor'/%3e%3c/svg%3e", retry_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%20512%20512'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M416.648%20227.85c23.324%200%2042.232%2018.908%2042.232%2042.232v84.462c0%2038.872-31.513%2070.384-70.385%2070.385H191.423v36.402c0%2012.541-15.163%2018.822-24.031%209.954l-78.63-78.631c-5.498-5.497-5.498-14.411%200-19.908l78.63-78.631c8.868-8.868%2024.031-2.587%2024.031%209.954v36.398h182.995v-70.385c0-23.324%2018.907-42.231%2042.23-42.232M304.028%2050.669c0-12.541%2015.163-18.822%2024.031-9.954l78.63%2078.631c5.498%205.497%205.498%2014.41%200%2019.908l-78.63%2078.631c-8.868%208.867-24.031%202.587-24.031-9.954v-36.38H121.033v70.385c0%2023.324-18.908%2042.231-42.231%2042.231s-42.23-18.907-42.23-42.231v-84.462c0-38.872%2031.512-70.385%2070.384-70.385h197.072z'%20fill='currentColor'/%3e%3c/svg%3e", run_once_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%20512%20512'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M275.114%2036.8c22.13%202.247%2039.401%2020.934%2039.401%2043.657v307.204h73.142c24.237%200%2043.886%2019.648%2043.886%2043.885s-19.648%2043.886-43.886%2043.886H153.6c-24.238-.001-43.886-19.649-43.886-43.886s19.648-43.885%2043.886-43.885h73.143V124.343H153.6c-24.238%200-43.886-19.649-43.886-43.886s19.648-43.885%2043.886-43.886h117.029z'%20fill='currentColor'/%3e%3c/svg%3e", schema_default = "data:image/svg+xml,%3csvg%20viewBox='0%20-1%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M1.63636%200H8.18182C9.08556%200%209.81818%200.732625%209.81818%201.63636C9.81818%202.5401%209.08556%203.27273%208.18182%203.27273H1.63636C0.732626%203.27273%200%202.5401%200%201.63636C0%200.732625%200.732625%200%201.63636%200ZM1.63636%201.09091C1.33512%201.09091%201.09091%201.33512%201.09091%201.63636C1.09091%201.93761%201.33512%202.18182%201.63636%202.18182H8.18182C8.48306%202.18182%208.72727%201.93761%208.72727%201.63636C8.72727%201.33512%208.48306%201.09091%208.18182%201.09091H1.63636Z%20M7.09091%204.36353H11.4545C12.3583%204.36353%2013.0909%205.09615%2013.0909%205.99989C13.0909%206.90363%2012.3583%207.63625%2011.4545%207.63625H7.09091C6.18717%207.63625%205.45454%206.90363%205.45454%205.99989C5.45454%205.09615%206.18717%204.36353%207.09091%204.36353ZM7.09091%205.45443C6.78966%205.45443%206.54545%205.69864%206.54545%205.99989C6.54545%206.30114%206.78966%206.54534%207.09091%206.54534H11.4545C11.7558%206.54534%2012%206.30114%2012%205.99989C12%205.69864%2011.7558%205.45443%2011.4545%205.45443H7.09091Z%20M7.09091%208.72729H11.4545C12.3583%208.72729%2013.0909%209.45992%2013.0909%2010.3637C13.0909%2011.2674%2012.3583%2012%2011.4545%2012H7.09091C6.18717%2012%205.45454%2011.2674%205.45454%2010.3637C5.45454%209.45992%206.18717%208.72729%207.09091%208.72729ZM7.09091%209.8182C6.78966%209.8182%206.54545%2010.0624%206.54545%2010.3637C6.54545%2010.6649%206.78966%2010.9091%207.09091%2010.9091H11.4545C11.7558%2010.9091%2012%2010.6649%2012%2010.3637C12%2010.0624%2011.7558%209.8182%2011.4545%209.8182H7.09091Z'%20/%3e%3c/svg%3e", spinner_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12%202V5'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M12%2019V22'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M12%202V5'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M12%2019V22'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M22.005%2011.9951L19.005%2011.9951'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M5.005%2011.9951L2.005%2011.9951'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M19.0796%2019.0676L16.9583%2016.9463'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M7.05884%207.04688L4.93752%204.92555'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M4.9375%2019.0676L7.05882%2016.9463'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M16.9583%207.04688L19.0796%204.92556'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3c/svg%3e", status_canceled_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M%2014%207%20C%2014%2010.866%2010.866%2014%207%2014%20C%203.134%2014%200%2010.866%200%207%20C%200%203.134%203.134%200%207%200%20C%2010.866%200%2014%203.134%2014%207%20Z%20M%2011.243%206%20L%202.758%206%20L%202.758%208%20L%2011.243%208%20L%2011.243%206%20Z'%20/%3e%3c/svg%3e", status_completed_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M%2014%207%20C%2014%2010.866%2010.866%2014%207%2014%20C%203.134%2014%200%2010.866%200%207%20C%200%203.134%203.134%200%207%200%20C%2010.866%200%2014%203.134%2014%207%20Z%20M%202.575%207.728%20L%205.782%2010.935%20L%2011.489%205.228%20L%2010.075%203.814%20L%205.782%208.107%20L%203.989%206.314%20L%202.575%207.728%20Z'%20/%3e%3c/svg%3e", status_error_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M%204.207%202.793%20L%207%205.586%20L%209.793%202.793%20L%2011.207%204.207%20L%208.414%207%20L%2011.207%209.793%20L%209.793%2011.207%20L%207%208.414%20L%204.207%2011.207%20L%202.793%209.793%20L%205.586%207%20L%202.793%204.207%20L%204.207%202.793%20Z%20M%207%200%20C%203.134%200%200%203.134%200%207%20C%200%2010.866%203.134%2014%207%2014%20C%2010.866%2014%2014%2010.866%2014%207%20C%2014%203.134%2010.866%200%207%200%20Z'%20/%3e%3c/svg%3e", status_new_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M%2014%207.006%20C%2014%208.867%2013.162%2010.744%2011.95%2011.956%20C%2010.738%2013.168%208.861%2014.006%207%2014.006%20C%205.139%2014.006%203.262%2013.168%202.05%2011.956%20C%200.838%2010.744%200%208.867%200%207.006%20C%200%205.145%200.838%203.268%202.05%202.056%20C%203.262%200.844%205.139%200.006%207%200.006%20C%208.861%200.006%2010.738%200.844%2011.95%202.056%20C%2013.162%203.268%2014%205.145%2014%207.006%20Z%20M%2010.536%203.47%20C%209.576%202.511%208.453%202.006%207%202.006%20C%205.547%202.006%204.424%202.511%203.464%203.47%20C%202.505%204.43%202%205.553%202%207.006%20C%202%208.459%202.505%209.582%203.464%2010.542%20C%204.424%2011.501%205.547%2012.006%207%2012.006%20C%208.453%2012.006%209.576%2011.501%2010.536%2010.542%20C%2011.495%209.582%2012%208.459%2012%207.006%20C%2012%205.553%2011.495%204.43%2010.536%203.47%20Z'%20/%3e%3c/svg%3e", status_unknown_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M13.8668%208.36613L11.9048%207.978C11.967%207.66329%2012%207.33649%2012%207C12%206.66351%2011.967%206.3367%2011.9048%206.022L13.8668%205.63387C13.9542%206.07571%2014%206.5325%2014%207C14%207.4675%2013.9542%207.92429%2013.8668%208.36613ZM12.821%203.11069L11.159%204.22333C10.7934%203.67721%2010.3228%203.2066%209.77667%202.84098L10.8893%201.17904C11.6527%201.6901%2012.3099%202.34733%2012.821%203.11069ZM8.36613%200.133238L7.978%202.09521C7.66329%202.03296%207.33649%202%207%202C6.66351%202%206.3367%202.03296%206.022%202.09521L5.63387%200.133238C6.07571%200.0458286%206.5325%200%207%200C7.4675%200%207.92429%200.0458285%208.36613%200.133238ZM3.11069%201.17904L4.22333%202.84098C3.67721%203.2066%203.2066%203.67721%202.84098%204.22333L1.17904%203.11069C1.6901%202.34733%202.34733%201.6901%203.11069%201.17904ZM0.133238%205.63387C0.0458285%206.07571%200%206.5325%200%207C0%207.4675%200.0458286%207.92429%200.133238%208.36613L2.09521%207.978C2.03296%207.6633%202%207.33649%202%207C2%206.66351%202.03296%206.33671%202.09521%206.022L0.133238%205.63387ZM1.17904%2010.8893L2.84098%209.77667C3.2066%2010.3228%203.67721%2010.7934%204.22333%2011.159L3.11069%2012.821C2.34733%2012.3099%201.6901%2011.6527%201.17904%2010.8893ZM5.63387%2013.8668L6.022%2011.9048C6.33671%2011.967%206.66351%2012%207%2012C7.33649%2012%207.6633%2011.967%207.978%2011.9048L8.36613%2013.8668C7.92429%2013.9542%207.4675%2014%207%2014C6.5325%2014%206.07571%2013.9542%205.63387%2013.8668ZM10.8893%2012.821L9.77667%2011.159C10.3228%2010.7934%2010.7934%2010.3228%2011.159%209.77667L12.821%2010.8893C12.3099%2011.6527%2011.6527%2012.3099%2010.8893%2012.821Z'%20/%3e%3c/svg%3e", status_waiting_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M7%2014C10.866%2014%2014%2010.866%2014%207C14%203.13401%2010.866%200%207%200C3.13401%200%200%203.13401%200%207C0%2010.866%203.13401%2014%207%2014ZM7%2012C4.23858%2012%202%209.76142%202%207C2%204.23858%204.23858%202%207%202C9.76142%202%2012%204.23858%2012%207C12%209.76142%209.76142%2012%207%2012ZM6%203V8H11C11%205.23858%208.76142%203%206%203Z'%20/%3e%3c/svg%3e", status_warning_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M%2014%207%20C%2014%2010.866%2010.866%2014%207%2014%20C%203.134%2014%200%2010.866%200%207%20C%200%203.134%203.134%200%207%200%20C%2010.866%200%2014%203.134%2014%207%20Z%20M%206.5%209%20C%206.224%209%206%209.224%206%209.5%20L%206%2010.5%20C%206%2010.776%206.224%2011%206.5%2011%20L%207.5%2011%20C%207.776%2011%208%2010.776%208%2010.5%20L%208%209.5%20C%208%209.224%207.776%209%207.5%209%20L%206.5%209%20Z%20M%206.5%203%20C%206.224%203%206%203.224%206%203.5%20L%206%207.5%20C%206%207.776%206.224%208%206.5%208%20L%207.5%208%20C%207.776%208%208%207.776%208%207.5%20L%208%203.5%20C%208%203.224%207.776%203%207.5%203%20L%206.5%203%20Z'%20/%3e%3c/svg%3e", text_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2012%2012'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M1.78814e-07%200.666667C1.78814e-07%200.298477%200.298477%200%200.666667%200H11.3333C11.7015%200%2012%200.298477%2012%200.666667C12%201.03486%2011.7015%201.33333%2011.3333%201.33333H0.666667C0.298477%201.33333%201.78814e-07%201.03486%201.78814e-07%200.666667ZM1.78814e-07%203.62963C1.78814e-07%203.26144%200.298477%202.96296%200.666667%202.96296H11.3333C11.7015%202.96296%2012%203.26144%2012%203.62963C12%203.99782%2011.7015%204.2963%2011.3333%204.2963H0.666667C0.298477%204.2963%201.78814e-07%203.99782%201.78814e-07%203.62963ZM0%206.59259C0%206.2244%200.298477%205.92593%200.666667%205.92593H11.3333C11.7015%205.92593%2012%206.2244%2012%206.59259C12%206.96078%2011.7015%207.25926%2011.3333%207.25926H0.666667C0.298477%207.25926%200%206.96078%200%206.59259ZM0%209.55556C0%209.18737%200.298477%208.88889%200.666667%208.88889H8.66667C9.03486%208.88889%209.33333%209.18737%209.33333%209.55556C9.33333%209.92375%209.03486%2010.2222%208.66667%2010.2222H0.666667C0.298477%2010.2222%200%209.92375%200%209.55556Z'%20/%3e%3c/svg%3e", toolbox_default = "data:image/svg+xml,%3csvg%20aria-hidden='true'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20style='stroke:currentColor;stroke-opacity:%201;'%20d='M8%208V4a2%202%200%200%201%202-2h4a2%202%200%200%201%202%202v4m6%2012V10a2%202%200%200%200-2-2H4a2%202%200%200%200-2%202v10a2%202%200%200%200%202%202h16a2%202%200%200%200%202-2ZM8%2013v4m8-4v4M2%2015h20'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'/%3e%3c/svg%3e", triangle_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%20512%20512'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M214.433%2056C232.908%2023.9999%20279.096%2024.0001%20297.571%2056L477.704%20368C496.18%20400%20473.085%20440%20436.135%20440H75.8685C38.918%20440%2015.8241%20400%2034.2993%20368L214.433%2056ZM256.002%20144L131.294%20360H380.709L256.002%20144Z'%20/%3e%3c/svg%3e", vector_square_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='2'%20y='2'%20width='5'%20height='5'%20rx='1'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'/%3e%3crect%20x='17'%20y='2'%20width='5'%20height='5'%20rx='1'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'/%3e%3crect%20x='17'%20y='17'%20width='5'%20height='5'%20rx='1'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'/%3e%3crect%20x='2'%20y='17'%20width='5'%20height='5'%20rx='1'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'/%3e%3crect%20x='7'%20y='3'%20width='10'%20height='2'%20fill='currentColor'%20style='fill:currentColor;fill-opacity:1;'/%3e%3crect%20x='7'%20y='19'%20width='10'%20height='2'%20fill='currentColor'%20style='fill:currentColor;fill-opacity:1;'/%3e%3crect%20x='3'%20y='7'%20width='2'%20height='10'%20fill='currentColor'%20style='fill:currentColor;fill-opacity:1;'/%3e%3crect%20x='19'%20y='7'%20width='2'%20height='10'%20fill='currentColor'%20style='fill:currentColor;fill-opacity:1;'/%3e%3c/svg%3e", webhook_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2048%2048'%3e%3cpath%20fill='currentColor'%20d='M35%2037c-2.2%200-4-1.8-4-4s1.8-4%204-4%204%201.8%204%204-1.8%204-4%204'/%3e%3cpath%20fill='currentColor'%20d='M35%2043c-3%200-5.9-1.4-7.8-3.7l3.1-2.5c1.1%201.4%202.9%202.3%204.7%202.3%203.3%200%206-2.7%206-6s-2.7-6-6-6c-1%200-2%20.3-2.9.7l-1.7%201L23.3%2016l3.5-1.9%205.3%209.4c1-.3%202-.5%203-.5%205.5%200%2010%204.5%2010%2010S40.5%2043%2035%2043'/%3e%3cpath%20fill='currentColor'%20d='M14%2043C8.5%2043%204%2038.5%204%2033c0-4.6%203.1-8.5%207.5-9.7l1%203.9C9.9%2027.9%208%2030.3%208%2033c0%203.3%202.7%206%206%206s6-2.7%206-6v-2h15v4H23.8c-.9%204.6-5%208-9.8%208'/%3e%3cpath%20fill='currentColor'%20d='M14%2037c-2.2%200-4-1.8-4-4s1.8-4%204-4%204%201.8%204%204-1.8%204-4%204'/%3e%3cpath%20fill='currentColor'%20d='M25%2019c-2.2%200-4-1.8-4-4s1.8-4%204-4%204%201.8%204%204-1.8%204-4%204'/%3e%3cpath%20fill='currentColor'%20d='m15.7%2034-3.4-2%205.9-9.7c-2-1.9-3.2-4.5-3.2-7.3%200-5.5%204.5-10%2010-10s10%204.5%2010%2010c0%20.9-.1%201.7-.3%202.5l-3.9-1c.1-.5.2-1%20.2-1.5%200-3.3-2.7-6-6-6s-6%202.7-6%206c0%202.1%201.1%204%202.9%205.1l1.7%201z'/%3e%3c/svg%3e", _hoisted_1$218 = {
|
|
12772
|
+
}), anthropic_default = "data:image/svg+xml,%3csvg%20version='1.1'%20id='Layer_1'%20xmlns:x='ns_extend;'%20xmlns:i='ns_ai;'%20xmlns:graph='ns_graphs;'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2092.2%2065'%20style='enable-background:new%200%200%2092.2%2065;'%20xml:space='preserve'%3e%3cstyle%20type='text/css'%3e%20.st0{fill:%23181818;}%20%3c/style%3e%3cmetadata%3e%3csfw%20xmlns='ns_sfw;'%3e%3cslices%3e%3c/slices%3e%3csliceSourceBounds%20bottomLeftOrigin='true'%20height='65'%20width='92.2'%20x='-43.7'%20y='-98'%3e%3c/sliceSourceBounds%3e%3c/sfw%3e%3c/metadata%3e%3cpath%20class='st0'%20d='M66.5,0H52.4l25.7,65h14.1L66.5,0z%20M25.7,0L0,65h14.4l5.3-13.6h26.9L51.8,65h14.4L40.5,0C40.5,0,25.7,0,25.7,0z%20M24.3,39.3l8.8-22.8l8.8,22.8H24.3z'%3e%3c/path%3e%3c/svg%3e", binary_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2012%2012'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M1%200.642857C1%200.287817%201.27473%200%201.61364%200H4.06818C4.40708%200%204.68182%200.287817%204.68182%200.642857V4.5C4.68182%204.85504%204.40708%205.14286%204.06818%205.14286H1.61364C1.27473%205.14286%201%204.85504%201%204.5V0.642857ZM2.22727%201.28571V3.85714H3.45455V1.28571H2.22727ZM6.31818%200.642857C6.31818%200.287817%206.59292%200%206.93182%200H8.15909C8.49799%200%208.77273%200.287817%208.77273%200.642857V3.85714H9.38636C9.72527%203.85714%2010%204.14496%2010%204.5C10%204.85504%209.72527%205.14286%209.38636%205.14286H6.93182C6.59292%205.14286%206.31818%204.85504%206.31818%204.5C6.31818%204.14496%206.59292%203.85714%206.93182%203.85714H7.54545V1.28571H6.93182C6.59292%201.28571%206.31818%200.997897%206.31818%200.642857ZM1%207.5C1%207.14496%201.27473%206.85714%201.61364%206.85714H2.84091C3.17981%206.85714%203.45455%207.14496%203.45455%207.5V10.7143H4.06818C4.40708%2010.7143%204.68182%2011.0021%204.68182%2011.3571C4.68182%2011.7122%204.40708%2012%204.06818%2012H1.61364C1.27473%2012%201%2011.7122%201%2011.3571C1%2011.0021%201.27473%2010.7143%201.61364%2010.7143H2.22727V8.14286H1.61364C1.27473%208.14286%201%207.85504%201%207.5ZM6.31818%207.5C6.31818%207.14496%206.59292%206.85714%206.93182%206.85714H9.38636C9.72527%206.85714%2010%207.14496%2010%207.5V11.3571C10%2011.7122%209.72527%2012%209.38636%2012H6.93182C6.59292%2012%206.31818%2011.7122%206.31818%2011.3571V7.5ZM7.54545%208.14286V10.7143H8.77273V8.14286H7.54545Z'%20/%3e%3c/svg%3e", bolt_filled_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M13.2251%201.02271C13.5179%200.968554%2013.8195%201.00233%2014.0913%201.11939L14.2055%201.17506L14.3149%201.23951C14.5275%201.37763%2014.7014%201.56758%2014.8208%201.79127L14.8764%201.90553L14.9214%202.02467C15.0145%202.30522%2015.0227%202.60793%2014.9438%202.89478C14.9403%202.90772%2014.9372%202.92106%2014.9331%202.93385L13.0132%208.95338L12.9965%209.00025H19.9995C20.3769%208.99952%2020.7471%209.10523%2021.0669%209.30592C21.3874%209.50712%2021.6437%209.79562%2021.8071%2010.137C21.9704%2010.4783%2022.0341%2010.8588%2021.9897%2011.2346C21.9453%2011.6105%2021.7946%2011.9661%2021.5561%2012.26C21.5375%2012.2829%2021.5181%2012.3052%2021.4975%2012.3264L11.5971%2022.5266L11.5962%2022.5256C11.3774%2022.7595%2011.0907%2022.9194%2010.7749%2022.9778C10.4403%2023.0397%2010.0944%2022.9859%209.7944%2022.8254C9.4944%2022.665%209.25775%2022.4066%209.1235%2022.094C8.98941%2021.7815%208.96593%2021.4327%209.05612%2021.1047L9.06686%2021.0657L10.9868%2015.0462L11.0034%2015.0003H3.99948C3.62236%2015.0008%203.25253%2014.8941%202.93307%2014.6936C2.61276%2014.4925%202.35617%2014.2047%202.19284%2013.8635C2.02947%2013.5221%201.96581%2013.1408%202.01022%2012.7649C2.05468%2012.3892%202.20544%2012.0333%202.44382%2011.7395C2.46238%2011.7167%202.4819%2011.6942%202.50241%2011.6731L12.4028%201.47389C12.6215%201.23984%2012.9091%201.08117%2013.2251%201.02271Z'%20fill='currentColor'%20fill-opacity='0.9'%20style='fill:currentColor;fill-opacity:0.9;'/%3e%3c/svg%3e", continue_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%20512%20512'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M224.975%2049.429c17.138-17.139%2044.919-17.139%2062.057%200l175.546%20175.546a43.8%2043.8%200%200%201%209.347%2013.817l.146.349q.125.298.243.598.1.25.197.5l.147.388q.133.356.261.716l.09.257q.141.407.275.818l.044.136a39%2039%200%200%201%20.306.988%2043.9%2043.9%200%200%201%201.802%2012.473c0%2012.497-5.225%2023.774-13.608%2031.767L287.032%20462.578c-17.138%2017.138-44.919%2017.138-62.057%200s-17.139-44.92%200-62.059l100.618-100.618H80.458c-24.238%200-43.887-19.649-43.887-43.886s19.65-43.887%2043.887-43.887h245.158L224.975%20111.486c-17.139-17.138-17.139-44.919%200-62.057'%20fill='currentColor'/%3e%3c/svg%3e", empty_output_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%20512%20512'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M209.675%20387.718c20.945%2010.711%2030.794%2035.749%2022.073%2058.141-9.306%2023.886-36.221%2035.695-60.107%2026.389-29.106-11.34-56.354-28.746-79.744-52.137-20.47-20.47-36.356-43.894-47.607-68.932l-4.53-10.812-1.517-4.508c-6.284-22.673%205.511-46.874%2027.906-55.599%2022.392-8.721%2047.431%201.129%2058.141%2022.073l1.945%204.338%202.735%206.453c6.714%2014.943%2016.204%2028.982%2028.568%2041.346%2014.132%2014.132%2030.44%2024.54%2047.799%2031.304zM91.897%2091.905c23.39-23.39%2050.638-40.796%2079.744-52.137l4.508-1.517c22.673-6.284%2046.874%205.512%2055.599%2027.906%209.303%2023.885-2.526%2050.781-26.411%2060.086-17.359%206.763-33.667%2017.171-47.799%2031.303-12.364%2012.364-21.854%2026.403-28.568%2041.347l-2.735%206.453-1.945%204.337c-10.71%2020.945-35.75%2030.794-58.141%2022.073-23.886-9.306-35.695-36.221-26.39-60.107%2011.341-29.106%2028.747-56.353%2052.138-79.744M354.462%20354.47c12.364-12.364%2021.854-26.403%2028.568-41.346l2.735-6.453%201.945-4.338c10.71-20.944%2035.749-30.794%2058.141-22.073%2022.394%208.725%2034.19%2032.926%2027.906%2055.599l-1.517%204.508-4.53%2010.812c-11.251%2025.038-27.137%2048.462-47.607%2068.932-23.39%2023.391-50.638%2040.797-79.744%2052.137-23.886%209.306-50.801-2.503-60.107-26.389-9.303-23.885%202.526-50.78%2026.411-60.085l6.453-2.735c14.943-6.715%2028.982-16.205%2041.346-28.569m65.641-262.565c23.391%2023.391%2040.796%2050.638%2052.137%2079.744%209.306%2023.886-2.503%2050.801-26.389%2060.107-22.392%208.721-47.431-1.128-58.141-22.073l-1.945-4.337-2.735-6.453c-6.714-14.944-16.204-28.983-28.568-41.347-14.132-14.132-30.44-24.54-47.799-31.303-23.885-9.305-35.714-36.201-26.411-60.086%209.306-23.886%2036.221-35.694%2060.107-26.389l10.812%204.53c25.038%2011.25%2048.462%2027.137%2068.932%2047.607'%20fill='currentColor'%20/%3e%3c/svg%3e", filled_square_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2010%2010'%20fill='currentColor'%20overflow='hidden'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='0'%20y='0'%20width='10'%20height='10'%20rx='2'%20ry='2'/%3e%3c/svg%3e", form_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2050%2050'%20fill='none'%3e%3cpath%20fill='currentColor'%20d='M47.267%2022.554c-.002.31-.126.608-.344.829l-6.805%206.796a1.13%201.13%200%200%201-.828.344%201.15%201.15%200%200%201-.828-.344%201.18%201.18%200%200%201%200-1.656l5.977-5.969-1.313-1.312-1.383%201.414L28.595%2035.78l-4.617.781.781-4.617.336-.336%202.563%202.555c.214.227.515.351.828.343.311.006.611-.119.828-.343a1.18%201.18%200%200%200%200-1.657l-2.563-2.562%208.25-8.273%204.29-4.29%203.757%203.711%201.617-1.617%202.258%202.258c.218.218.342.512.344.82m-17.282%2015.15%203.032-3.032v8.297a1.56%201.56%200%200%201-1.563%201.563H4.298a1.56%201.56%200%200%201-1.563-1.563V14.843c0-.405.157-.794.438-1.086l6.304-6.531v5.344H6.251a1.172%201.172%200%201%200%200%202.344h4.43a1.17%201.17%200%200%200%201.171-1.172V5.468h19.602a1.56%201.56%200%200%201%201.563%201.563v13.281L22.86%2030.468a1.24%201.24%200%200%200-.328.633l-1.102%206.61c-.06.373.062.753.329%201.023.22.22.517.343.828.343h.195l6.602-1.101a1.16%201.16%200%200%200%20.601-.274m-21-16a1.18%201.18%200%200%200%201.172%201.172h15.266a1.172%201.172%200%201%200%200-2.344H10.157a1.17%201.17%200%200%200-1.172%201.172m10.711%2014.766a1.17%201.17%200%200%200-1.172-1.172h-8.367a1.172%201.172%200%201%200%200%202.343h8.367a1.17%201.17%200%200%200%201.172-1.172m.86-7.391a1.17%201.17%200%200%200-1.172-1.172h-9.227a1.172%201.172%200%201%200%200%202.344h9.227a1.164%201.164%200%200%200%201.171-1.172M45.75%2018.617a1.563%201.563%200%200%200%200-2.203l-1.64-1.64a1.563%201.563%200%200%200-2.204%200l-.93.929%203.852%203.828z'/%3e%3c/svg%3e", grip_lines_vertical_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9%203L9%2021'%20stroke='currentColor'%20style='stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15%203L15%2021'%20stroke='currentColor'%20style='stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e", lovable_default = "data:image/svg+xml,%3csvg%20width='121'%20height='122'%20viewBox='0%200%20121%20122'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cmask%20id='mask0_572_319'%20style='mask-type:alpha'%20maskUnits='userSpaceOnUse'%20x='0'%20y='0'%20width='121'%20height='122'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M36.0687%200C55.9888%200%2072.1373%2016.1551%2072.1373%2036.0835V49.7975H84.141C104.061%2049.7975%20120.21%2065.9526%20120.21%2085.8809C120.21%20105.809%20104.061%20121.964%2084.141%20121.964H0V36.0835C0%2016.1551%2016.1485%200%2036.0687%200Z'%20fill='url(%23paint0_linear_572_319)'/%3e%3c/mask%3e%3cg%20mask='url(%23mask0_572_319)'%3e%3cg%20filter='url(%23filter0_f_572_319)'%3e%3cellipse%20cx='52.7381'%20cy='65.1011'%20rx='81.3729'%20ry='81.1923'%20fill='%234B73FF'/%3e%3c/g%3e%3cg%20filter='url(%23filter1_f_572_319)'%3e%3cellipse%20cx='61.6734'%20cy='20.547'%20rx='104.216'%20ry='81.1923'%20fill='%23FF66F4'/%3e%3c/g%3e%3cg%20filter='url(%23filter2_f_572_319)'%3e%3cellipse%20cx='78.6659'%20cy='5.26802'%20rx='81.3729'%20ry='71.3042'%20fill='%23FF0105'/%3e%3c/g%3e%3cg%20filter='url(%23filter3_f_572_319)'%3e%3cellipse%20cx='63.121'%20cy='20.5275'%20rx='48.9374'%20ry='48.8288'%20fill='%23FE7B02'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_f_572_319'%20x='-65.0219'%20y='-52.4784'%20width='235.52'%20height='235.159'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='BackgroundImageFix'%20result='shape'/%3e%3cfeGaussianBlur%20stdDeviation='18.1936'%20result='effect1_foregroundBlur_572_319'/%3e%3c/filter%3e%3cfilter%20id='filter1_f_572_319'%20x='-78.9301'%20y='-97.0324'%20width='281.208'%20height='235.159'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='BackgroundImageFix'%20result='shape'/%3e%3cfeGaussianBlur%20stdDeviation='18.1936'%20result='effect1_foregroundBlur_572_319'/%3e%3c/filter%3e%3cfilter%20id='filter2_f_572_319'%20x='-39.0942'%20y='-102.423'%20width='235.52'%20height='215.383'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='BackgroundImageFix'%20result='shape'/%3e%3cfeGaussianBlur%20stdDeviation='18.1936'%20result='effect1_foregroundBlur_572_319'/%3e%3c/filter%3e%3cfilter%20id='filter3_f_572_319'%20x='-22.2036'%20y='-64.6884'%20width='170.649'%20height='170.432'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='BackgroundImageFix'%20result='shape'/%3e%3cfeGaussianBlur%20stdDeviation='18.1936'%20result='effect1_foregroundBlur_572_319'/%3e%3c/filter%3e%3clinearGradient%20id='paint0_linear_572_319'%20x1='40.4527'%20y1='21.4331'%20x2='76.9327'%20y2='121.971'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.025'%20stop-color='%23FF8E63'/%3e%3cstop%20offset='0.56'%20stop-color='%23FF7EB0'/%3e%3cstop%20offset='0.95'%20stop-color='%234B73FF'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e", mcp_default = "data:image/svg+xml,%3csvg%20fill='currentColor'%20fill-rule='evenodd'%20height='1em'%20style='flex:none;line-height:1'%20viewBox='0%200%2024%2024'%20width='1em'%20xmlns='http://www.w3.org/2000/svg'%3e%3ctitle%3eModelContextProtocol%3c/title%3e%3cpath%20d='M15.688%202.343a2.588%202.588%200%2000-3.61%200l-9.626%209.44a.863.863%200%2001-1.203%200%20.823.823%200%20010-1.18l9.626-9.44a4.313%204.313%200%20016.016%200%204.116%204.116%200%20011.204%203.54%204.3%204.3%200%20013.609%201.18l.05.05a4.115%204.115%200%20010%205.9l-8.706%208.537a.274.274%200%20000%20.393l1.788%201.754a.823.823%200%20010%201.18.863.863%200%2001-1.203%200l-1.788-1.753a1.92%201.92%200%20010-2.754l8.706-8.538a2.47%202.47%200%20000-3.54l-.05-.049a2.588%202.588%200%2000-3.607-.003l-7.172%207.034-.002.002-.098.097a.863.863%200%2001-1.204%200%20.823.823%200%20010-1.18l7.273-7.133a2.47%202.47%200%2000-.003-3.537z'%3e%3c/path%3e%3cpath%20d='M14.485%204.703a.823.823%200%20000-1.18.863.863%200%2000-1.204%200l-7.119%206.982a4.115%204.115%200%20000%205.9%204.314%204.314%200%20006.016%200l7.12-6.982a.823.823%200%20000-1.18.863.863%200%2000-1.204%200l-7.119%206.982a2.588%202.588%200%2001-3.61%200%202.47%202.47%200%20010-3.54l7.12-6.982z'%3e%3c/path%3e%3c/svg%3e", node_dirty_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M10.12%203.3c.911-1.395%203.012-1.349%203.844.14l8.222%2014.712c.838%201.5-.246%203.348-1.964%203.348H3.778c-1.718%200-2.802-1.848-1.964-3.348L10.036%203.44zM5.057%2018.5h13.886L12%206.073z'/%3e%3c/svg%3e", node_ellipsis_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M4.5%209.5a2.5%202.5%200%201%201%200%205%202.5%202.5%200%200%201%200-5m7.5%200a2.5%202.5%200%201%201%200%205%202.5%202.5%200%200%201%200-5m7.5%200a2.5%202.5%200%201%201%200%205%202.5%202.5%200%200%201%200-5'/%3e%3c/svg%3e", node_execution_error_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20fill-rule='evenodd'%20d='M12%201c6.075%200%2011%204.925%2011%2011s-4.925%2011-11%2011S1%2018.075%201%2012%205.925%201%2012%201m5.56%205.44a1.5%201.5%200%200%200-2.12%200L12%209.878l-3.44-3.44A1.5%201.5%200%201%200%206.44%208.56L9.878%2012l-3.44%203.44a1.5%201.5%200%201%200%202.122%202.12L12%2014.122l3.44%203.44.114.103a1.5%201.5%200%200%200%202.11-2.11l-.104-.114L14.122%2012l3.44-3.44a1.5%201.5%200%200%200%200-2.12'%20clip-rule='evenodd'/%3e%3c/svg%3e", node_pin_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M16.297%202.515A3%203%200%200%201%2016%208.5v2.26l.01.138a1%201%200%200%200%20.545.756l.006.003%201.774.898.184.1A3%203%200%200%201%2020%2015.238V16a2%202%200%200%201-2%202h-4.5v4a1.5%201.5%200%200%201-3%200v-4H6a2%202%200%200%201-1.99-1.803L4%2016v-.76l.008-.209a3%203%200%200%201%201.657-2.476l1.773-.898.007-.003a1%201%200%200%200%20.545-.756L8%2010.76V8.5a3%203%200%200%201%200-6h8z'/%3e%3c/svg%3e", node_play_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%3e%3cpath%20fill='currentColor'%20d='M5.52%202.122c.322-.175.713-.16%201.021.037l14%209a1%201%200%200%201%200%201.682l-14%209A1.001%201.001%200%200%201%205%2021V3a1%201%200%200%201%20.52-.878'/%3e%3c/svg%3e", node_power_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M16.645%205.907a1.5%201.5%200%200%201%202.122.028%209.77%209.77%200%200%201%202.585%204.953%209.9%209.9%200%200%201-.53%205.579%209.66%209.66%200%200%201-3.476%204.357%209.36%209.36%200%200%201-5.28%201.657%209.36%209.36%200%200%201-5.292-1.623%209.66%209.66%200%200%201-3.504-4.335%209.9%209.9%200%200%201-.564-5.576%209.77%209.77%200%200%201%202.556-4.97l.11-.105a1.501%201.501%200%200%201%202.05%202.187l-.166.178a6.8%206.8%200%200%200-1.602%203.266%206.9%206.9%200%200%200%20.393%203.884%206.66%206.66%200%200%200%202.413%202.989%206.36%206.36%200%200%200%203.595%201.105%206.36%206.36%200%200%200%203.59-1.128%206.66%206.66%200%200%200%202.394-3.005%206.9%206.9%200%200%200%20.37-3.887%206.77%206.77%200%200%200-1.79-3.433%201.5%201.5%200%200%201%20.026-2.12'/%3e%3cpath%20fill='currentColor'%20d='M12.035%201.481a1.5%201.5%200%200%201%201.5%201.5v9a1.5%201.5%200%200%201-3%200v-9a1.5%201.5%200%200%201%201.5-1.5'/%3e%3c/svg%3e", node_success_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M19.94%205.502a1.5%201.5%200%201%201%202.12%202.12L9.687%2019.999a1.5%201.5%200%200%201-2.122%200L1.94%2014.373a1.5%201.5%200%200%201%202.007-2.225l.115.104%204.564%204.564z'/%3e%3c/svg%3e", node_trash_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20fill='none'%20viewBox='0%200%2024%2024'%3e%3cpath%20fill='currentColor'%20d='M21%206a1%201%200%201%201%200%202h-1v12.125c0%20.817-.424%201.534-.941%202.019-.522.488-1.256.856-2.059.856H7c-.803%200-1.537-.368-2.059-.856C4.424%2021.659%204%2020.943%204%2020.125V8H3a1%201%200%200%201%200-2zm-7-5a3%203%200%200%201%203%203H7a3%203%200%200%201%203-3z'/%3e%3c/svg%3e", node_validation_error_default = "data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M10.0506%202.38452C10.9161%200.882058%2013.0845%200.882058%2013.95%202.38452L23.3065%2018.6267C24.1706%2020.1267%2023.0883%2021.9997%2021.3572%2021.9998H2.6424C0.911559%2021.9994%20-0.170877%2020.1266%200.693176%2018.6267L10.0506%202.38452ZM11.9998%2015.9998C11.1715%2015.9999%2010.4999%2016.6715%2010.4998%2017.4998C10.4998%2018.3281%2011.1715%2018.9997%2011.9998%2018.9998C12.8282%2018.9998%2013.4998%2018.3282%2013.4998%2017.4998C13.4997%2016.6714%2012.8282%2015.9998%2011.9998%2015.9998ZM11.9998%207.49976C11.1715%207.49986%2010.4999%208.17148%2010.4998%208.99976V12.4998C10.4998%2013.3281%2011.1715%2013.9997%2011.9998%2013.9998C12.8282%2013.9998%2013.4998%2013.3282%2013.4998%2012.4998V8.99976C13.4997%208.17142%2012.8282%207.49976%2011.9998%207.49976Z'%20fill='currentColor'/%3e%3c/svg%3e", pop_out_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2016%2016'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M13.3333%2012.5525V12.4489C14.2278%2012.0756%2014.8571%2011.1925%2014.8571%2010.1632V3.61924C14.8571%202.96252%2014.5962%202.3327%2014.1318%201.86832C13.6675%201.40395%2013.0376%201.14307%2012.3809%201.14307H5.90473C5.38113%201.14296%204.87098%201.30883%204.44756%201.61684C4.02414%201.92485%203.70926%202.35915%203.54816%202.85734H3.39501C2.70016%202.85734%202.10892%203.10191%201.70206%203.5842C1.30739%204.05124%201.14282%204.67372%201.14282%205.33352V12.0002C1.14282%2012.8078%201.43463%2013.5346%201.98854%2014.0573C2.54168%2014.5777%203.30892%2014.8535%204.19044%2014.8535H7.17711L10.2826%2014.8573H10.2842C11.0278%2014.8611%2011.7645%2014.7049%2012.336%2014.3392C12.9303%2013.9582%2013.3333%2013.3525%2013.3333%2012.5525ZM3.39501%204.0002H3.42854V10.1625C3.42854%2010.8192%203.68942%2011.449%204.1538%2011.9134C4.61817%2012.3777%205.248%2012.6386%205.90473%2012.6386H12.1874C12.163%2012.9571%2012.003%2013.1948%2011.7196%2013.3761C11.3897%2013.588%2010.8891%2013.7175%2010.2887%2013.7144H10.2857L7.17558%2013.7106H4.19044C3.54816%2013.7106%203.07806%2013.5125%202.7733%2013.2253C2.47006%2012.9403%202.28568%2012.5259%202.28568%2012.0002V5.33352C2.28568%204.84971%202.40758%204.52057%202.5752%204.32096C2.73139%204.13658%202.98054%204.0002%203.39501%204.0002ZM8.01673%203.80972H11.619C11.7706%203.80972%2011.9159%203.86992%2012.0231%203.97709C12.1302%204.08425%2012.1904%204.22959%2012.1904%204.38115V7.98418C12.1904%208.13573%2012.1302%208.28107%2012.0231%208.38823C11.9159%208.4954%2011.7706%208.5556%2011.619%208.5556C11.4675%208.5556%2011.3221%208.4954%2011.215%208.38823C11.1078%208.28107%2011.0476%208.13573%2011.0476%207.98418V5.76019L7.07044%209.73731C7.0177%209.79186%206.95463%209.83536%206.8849%209.86528C6.81517%209.89519%206.74018%209.91092%206.6643%209.91154C6.58843%209.91217%206.51319%209.89767%206.44298%209.86891C6.37277%209.84014%206.30899%209.79768%206.25536%209.74401C6.20173%209.69033%206.15933%209.62651%206.13063%209.55627C6.10193%209.48603%206.08751%209.41078%206.0882%209.3349C6.0889%209.25903%206.1047%209.18406%206.13468%209.11435C6.16466%209.04465%206.20822%208.98162%206.26282%208.92893L10.24%204.95257H8.01673C7.86517%204.95257%207.71983%204.89237%207.61267%204.7852C7.5055%204.67804%207.4453%204.5327%207.4453%204.38115C7.4453%204.22959%207.5055%204.08425%207.61267%203.97709C7.71983%203.86992%207.86517%203.80972%208.01673%203.80972Z'%20/%3e%3c/svg%3e", resolver_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='28'%20height='28'%20viewBox='0%200%2028%2028'%20fill='none'%3e%3cpath%20d='M23.0877%200H13.9944L16.8048%208.75784H25.8982L18.5411%2013.9805L21.3523%2022.788C26.0879%2019.3383%2027.6352%2014.1173%2025.899%208.75784L23.0877%200ZM2.09058%208.75784H11.1839L13.9944%200H4.90182L2.09058%208.75784C0.353512%2014.1173%201.90165%2019.3383%206.63727%2022.788L9.44769%2013.9805L2.09058%208.75784ZM6.63727%2022.788L13.9944%2028L21.3515%2022.788L13.9944%2017.4896L6.63727%2022.788Z'%20fill='currentColor'/%3e%3c/svg%3e", retry_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%20512%20512'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M416.648%20227.85c23.324%200%2042.232%2018.908%2042.232%2042.232v84.462c0%2038.872-31.513%2070.384-70.385%2070.385H191.423v36.402c0%2012.541-15.163%2018.822-24.031%209.954l-78.63-78.631c-5.498-5.497-5.498-14.411%200-19.908l78.63-78.631c8.868-8.868%2024.031-2.587%2024.031%209.954v36.398h182.995v-70.385c0-23.324%2018.907-42.231%2042.23-42.232M304.028%2050.669c0-12.541%2015.163-18.822%2024.031-9.954l78.63%2078.631c5.498%205.497%205.498%2014.41%200%2019.908l-78.63%2078.631c-8.868%208.867-24.031%202.587-24.031-9.954v-36.38H121.033v70.385c0%2023.324-18.908%2042.231-42.231%2042.231s-42.23-18.907-42.23-42.231v-84.462c0-38.872%2031.512-70.385%2070.384-70.385h197.072z'%20fill='currentColor'/%3e%3c/svg%3e", run_once_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%20512%20512'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M275.114%2036.8c22.13%202.247%2039.401%2020.934%2039.401%2043.657v307.204h73.142c24.237%200%2043.886%2019.648%2043.886%2043.885s-19.648%2043.886-43.886%2043.886H153.6c-24.238-.001-43.886-19.649-43.886-43.886s19.648-43.885%2043.886-43.885h73.143V124.343H153.6c-24.238%200-43.886-19.649-43.886-43.886s19.648-43.885%2043.886-43.886h117.029z'%20fill='currentColor'/%3e%3c/svg%3e", schema_default = "data:image/svg+xml,%3csvg%20viewBox='0%20-1%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M1.63636%200H8.18182C9.08556%200%209.81818%200.732625%209.81818%201.63636C9.81818%202.5401%209.08556%203.27273%208.18182%203.27273H1.63636C0.732626%203.27273%200%202.5401%200%201.63636C0%200.732625%200.732625%200%201.63636%200ZM1.63636%201.09091C1.33512%201.09091%201.09091%201.33512%201.09091%201.63636C1.09091%201.93761%201.33512%202.18182%201.63636%202.18182H8.18182C8.48306%202.18182%208.72727%201.93761%208.72727%201.63636C8.72727%201.33512%208.48306%201.09091%208.18182%201.09091H1.63636Z%20M7.09091%204.36353H11.4545C12.3583%204.36353%2013.0909%205.09615%2013.0909%205.99989C13.0909%206.90363%2012.3583%207.63625%2011.4545%207.63625H7.09091C6.18717%207.63625%205.45454%206.90363%205.45454%205.99989C5.45454%205.09615%206.18717%204.36353%207.09091%204.36353ZM7.09091%205.45443C6.78966%205.45443%206.54545%205.69864%206.54545%205.99989C6.54545%206.30114%206.78966%206.54534%207.09091%206.54534H11.4545C11.7558%206.54534%2012%206.30114%2012%205.99989C12%205.69864%2011.7558%205.45443%2011.4545%205.45443H7.09091Z%20M7.09091%208.72729H11.4545C12.3583%208.72729%2013.0909%209.45992%2013.0909%2010.3637C13.0909%2011.2674%2012.3583%2012%2011.4545%2012H7.09091C6.18717%2012%205.45454%2011.2674%205.45454%2010.3637C5.45454%209.45992%206.18717%208.72729%207.09091%208.72729ZM7.09091%209.8182C6.78966%209.8182%206.54545%2010.0624%206.54545%2010.3637C6.54545%2010.6649%206.78966%2010.9091%207.09091%2010.9091H11.4545C11.7558%2010.9091%2012%2010.6649%2012%2010.3637C12%2010.0624%2011.7558%209.8182%2011.4545%209.8182H7.09091Z'%20/%3e%3c/svg%3e", spinner_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12%202V5'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M12%2019V22'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M12%202V5'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M12%2019V22'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M22.005%2011.9951L19.005%2011.9951'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M5.005%2011.9951L2.005%2011.9951'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M19.0796%2019.0676L16.9583%2016.9463'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M7.05884%207.04688L4.93752%204.92555'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M4.9375%2019.0676L7.05882%2016.9463'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3cpath%20d='M16.9583%207.04688L19.0796%204.92556'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'%20stroke-linecap='round'/%3e%3c/svg%3e", status_canceled_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M%2014%207%20C%2014%2010.866%2010.866%2014%207%2014%20C%203.134%2014%200%2010.866%200%207%20C%200%203.134%203.134%200%207%200%20C%2010.866%200%2014%203.134%2014%207%20Z%20M%2011.243%206%20L%202.758%206%20L%202.758%208%20L%2011.243%208%20L%2011.243%206%20Z'%20/%3e%3c/svg%3e", status_completed_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M%2014%207%20C%2014%2010.866%2010.866%2014%207%2014%20C%203.134%2014%200%2010.866%200%207%20C%200%203.134%203.134%200%207%200%20C%2010.866%200%2014%203.134%2014%207%20Z%20M%202.575%207.728%20L%205.782%2010.935%20L%2011.489%205.228%20L%2010.075%203.814%20L%205.782%208.107%20L%203.989%206.314%20L%202.575%207.728%20Z'%20/%3e%3c/svg%3e", status_error_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M%204.207%202.793%20L%207%205.586%20L%209.793%202.793%20L%2011.207%204.207%20L%208.414%207%20L%2011.207%209.793%20L%209.793%2011.207%20L%207%208.414%20L%204.207%2011.207%20L%202.793%209.793%20L%205.586%207%20L%202.793%204.207%20L%204.207%202.793%20Z%20M%207%200%20C%203.134%200%200%203.134%200%207%20C%200%2010.866%203.134%2014%207%2014%20C%2010.866%2014%2014%2010.866%2014%207%20C%2014%203.134%2010.866%200%207%200%20Z'%20/%3e%3c/svg%3e", status_new_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M%2014%207.006%20C%2014%208.867%2013.162%2010.744%2011.95%2011.956%20C%2010.738%2013.168%208.861%2014.006%207%2014.006%20C%205.139%2014.006%203.262%2013.168%202.05%2011.956%20C%200.838%2010.744%200%208.867%200%207.006%20C%200%205.145%200.838%203.268%202.05%202.056%20C%203.262%200.844%205.139%200.006%207%200.006%20C%208.861%200.006%2010.738%200.844%2011.95%202.056%20C%2013.162%203.268%2014%205.145%2014%207.006%20Z%20M%2010.536%203.47%20C%209.576%202.511%208.453%202.006%207%202.006%20C%205.547%202.006%204.424%202.511%203.464%203.47%20C%202.505%204.43%202%205.553%202%207.006%20C%202%208.459%202.505%209.582%203.464%2010.542%20C%204.424%2011.501%205.547%2012.006%207%2012.006%20C%208.453%2012.006%209.576%2011.501%2010.536%2010.542%20C%2011.495%209.582%2012%208.459%2012%207.006%20C%2012%205.553%2011.495%204.43%2010.536%203.47%20Z'%20/%3e%3c/svg%3e", status_unknown_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M13.8668%208.36613L11.9048%207.978C11.967%207.66329%2012%207.33649%2012%207C12%206.66351%2011.967%206.3367%2011.9048%206.022L13.8668%205.63387C13.9542%206.07571%2014%206.5325%2014%207C14%207.4675%2013.9542%207.92429%2013.8668%208.36613ZM12.821%203.11069L11.159%204.22333C10.7934%203.67721%2010.3228%203.2066%209.77667%202.84098L10.8893%201.17904C11.6527%201.6901%2012.3099%202.34733%2012.821%203.11069ZM8.36613%200.133238L7.978%202.09521C7.66329%202.03296%207.33649%202%207%202C6.66351%202%206.3367%202.03296%206.022%202.09521L5.63387%200.133238C6.07571%200.0458286%206.5325%200%207%200C7.4675%200%207.92429%200.0458285%208.36613%200.133238ZM3.11069%201.17904L4.22333%202.84098C3.67721%203.2066%203.2066%203.67721%202.84098%204.22333L1.17904%203.11069C1.6901%202.34733%202.34733%201.6901%203.11069%201.17904ZM0.133238%205.63387C0.0458285%206.07571%200%206.5325%200%207C0%207.4675%200.0458286%207.92429%200.133238%208.36613L2.09521%207.978C2.03296%207.6633%202%207.33649%202%207C2%206.66351%202.03296%206.33671%202.09521%206.022L0.133238%205.63387ZM1.17904%2010.8893L2.84098%209.77667C3.2066%2010.3228%203.67721%2010.7934%204.22333%2011.159L3.11069%2012.821C2.34733%2012.3099%201.6901%2011.6527%201.17904%2010.8893ZM5.63387%2013.8668L6.022%2011.9048C6.33671%2011.967%206.66351%2012%207%2012C7.33649%2012%207.6633%2011.967%207.978%2011.9048L8.36613%2013.8668C7.92429%2013.9542%207.4675%2014%207%2014C6.5325%2014%206.07571%2013.9542%205.63387%2013.8668ZM10.8893%2012.821L9.77667%2011.159C10.3228%2010.7934%2010.7934%2010.3228%2011.159%209.77667L12.821%2010.8893C12.3099%2011.6527%2011.6527%2012.3099%2010.8893%2012.821Z'%20/%3e%3c/svg%3e", status_waiting_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M7%2014C10.866%2014%2014%2010.866%2014%207C14%203.13401%2010.866%200%207%200C3.13401%200%200%203.13401%200%207C0%2010.866%203.13401%2014%207%2014ZM7%2012C4.23858%2012%202%209.76142%202%207C2%204.23858%204.23858%202%207%202C9.76142%202%2012%204.23858%2012%207C12%209.76142%209.76142%2012%207%2012ZM6%203V8H11C11%205.23858%208.76142%203%206%203Z'%20/%3e%3c/svg%3e", status_warning_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2014%2014'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M%2014%207%20C%2014%2010.866%2010.866%2014%207%2014%20C%203.134%2014%200%2010.866%200%207%20C%200%203.134%203.134%200%207%200%20C%2010.866%200%2014%203.134%2014%207%20Z%20M%206.5%209%20C%206.224%209%206%209.224%206%209.5%20L%206%2010.5%20C%206%2010.776%206.224%2011%206.5%2011%20L%207.5%2011%20C%207.776%2011%208%2010.776%208%2010.5%20L%208%209.5%20C%208%209.224%207.776%209%207.5%209%20L%206.5%209%20Z%20M%206.5%203%20C%206.224%203%206%203.224%206%203.5%20L%206%207.5%20C%206%207.776%206.224%208%206.5%208%20L%207.5%208%20C%207.776%208%208%207.776%208%207.5%20L%208%203.5%20C%208%203.224%207.776%203%207.5%203%20L%206.5%203%20Z'%20/%3e%3c/svg%3e", text_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2012%2012'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M1.78814e-07%200.666667C1.78814e-07%200.298477%200.298477%200%200.666667%200H11.3333C11.7015%200%2012%200.298477%2012%200.666667C12%201.03486%2011.7015%201.33333%2011.3333%201.33333H0.666667C0.298477%201.33333%201.78814e-07%201.03486%201.78814e-07%200.666667ZM1.78814e-07%203.62963C1.78814e-07%203.26144%200.298477%202.96296%200.666667%202.96296H11.3333C11.7015%202.96296%2012%203.26144%2012%203.62963C12%203.99782%2011.7015%204.2963%2011.3333%204.2963H0.666667C0.298477%204.2963%201.78814e-07%203.99782%201.78814e-07%203.62963ZM0%206.59259C0%206.2244%200.298477%205.92593%200.666667%205.92593H11.3333C11.7015%205.92593%2012%206.2244%2012%206.59259C12%206.96078%2011.7015%207.25926%2011.3333%207.25926H0.666667C0.298477%207.25926%200%206.96078%200%206.59259ZM0%209.55556C0%209.18737%200.298477%208.88889%200.666667%208.88889H8.66667C9.03486%208.88889%209.33333%209.18737%209.33333%209.55556C9.33333%209.92375%209.03486%2010.2222%208.66667%2010.2222H0.666667C0.298477%2010.2222%200%209.92375%200%209.55556Z'%20/%3e%3c/svg%3e", toolbox_default = "data:image/svg+xml,%3csvg%20aria-hidden='true'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20style='stroke:currentColor;stroke-opacity:%201;'%20d='M8%208V4a2%202%200%200%201%202-2h4a2%202%200%200%201%202%202v4m6%2012V10a2%202%200%200%200-2-2H4a2%202%200%200%200-2%202v10a2%202%200%200%200%202%202h16a2%202%200%200%200%202-2ZM8%2013v4m8-4v4M2%2015h20'%20stroke='currentColor'%20stroke-width='2'%20stroke-linecap='round'/%3e%3c/svg%3e", triangle_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%20512%20512'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill='currentColor'%20d='M214.433%2056C232.908%2023.9999%20279.096%2024.0001%20297.571%2056L477.704%20368C496.18%20400%20473.085%20440%20436.135%20440H75.8685C38.918%20440%2015.8241%20400%2034.2993%20368L214.433%2056ZM256.002%20144L131.294%20360H380.709L256.002%20144Z'%20/%3e%3c/svg%3e", vector_square_default = "data:image/svg+xml,%3csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='2'%20y='2'%20width='5'%20height='5'%20rx='1'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'/%3e%3crect%20x='17'%20y='2'%20width='5'%20height='5'%20rx='1'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'/%3e%3crect%20x='17'%20y='17'%20width='5'%20height='5'%20rx='1'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'/%3e%3crect%20x='2'%20y='17'%20width='5'%20height='5'%20rx='1'%20stroke='currentColor'%20style='stroke:currentColor;stroke-opacity:1;'%20stroke-width='2'/%3e%3crect%20x='7'%20y='3'%20width='10'%20height='2'%20fill='currentColor'%20style='fill:currentColor;fill-opacity:1;'/%3e%3crect%20x='7'%20y='19'%20width='10'%20height='2'%20fill='currentColor'%20style='fill:currentColor;fill-opacity:1;'/%3e%3crect%20x='3'%20y='7'%20width='2'%20height='10'%20fill='currentColor'%20style='fill:currentColor;fill-opacity:1;'/%3e%3crect%20x='19'%20y='7'%20width='2'%20height='10'%20fill='currentColor'%20style='fill:currentColor;fill-opacity:1;'/%3e%3c/svg%3e", webhook_default = "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2048%2048'%3e%3cpath%20fill='currentColor'%20d='M35%2037c-2.2%200-4-1.8-4-4s1.8-4%204-4%204%201.8%204%204-1.8%204-4%204'/%3e%3cpath%20fill='currentColor'%20d='M35%2043c-3%200-5.9-1.4-7.8-3.7l3.1-2.5c1.1%201.4%202.9%202.3%204.7%202.3%203.3%200%206-2.7%206-6s-2.7-6-6-6c-1%200-2%20.3-2.9.7l-1.7%201L23.3%2016l3.5-1.9%205.3%209.4c1-.3%202-.5%203-.5%205.5%200%2010%204.5%2010%2010S40.5%2043%2035%2043'/%3e%3cpath%20fill='currentColor'%20d='M14%2043C8.5%2043%204%2038.5%204%2033c0-4.6%203.1-8.5%207.5-9.7l1%203.9C9.9%2027.9%208%2030.3%208%2033c0%203.3%202.7%206%206%206s6-2.7%206-6v-2h15v4H23.8c-.9%204.6-5%208-9.8%208'/%3e%3cpath%20fill='currentColor'%20d='M14%2037c-2.2%200-4-1.8-4-4s1.8-4%204-4%204%201.8%204%204-1.8%204-4%204'/%3e%3cpath%20fill='currentColor'%20d='M25%2019c-2.2%200-4-1.8-4-4s1.8-4%204-4%204%201.8%204%204-1.8%204-4%204'/%3e%3cpath%20fill='currentColor'%20d='m15.7%2034-3.4-2%205.9-9.7c-2-1.9-3.2-4.5-3.2-7.3%200-5.5%204.5-10%2010-10s10%204.5%2010%2010c0%20.9-.1%201.7-.3%202.5l-3.9-1c.1-.5.2-1%20.2-1.5%200-3.3-2.7-6-6-6s-6%202.7-6%206c0%202.1%201.1%204%202.9%205.1l1.7%201z'/%3e%3c/svg%3e", _hoisted_1$221 = {
|
|
12762
12773
|
viewBox: "0 0 24 24",
|
|
12763
12774
|
width: "1.2em",
|
|
12764
12775
|
height: "1.2em"
|
|
12765
12776
|
};
|
|
12766
|
-
function render$
|
|
12767
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12777
|
+
function render$203(e, t) {
|
|
12778
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$221, [...t[0] ||= [createBaseVNode("path", {
|
|
12768
12779
|
fill: "none",
|
|
12769
12780
|
stroke: "currentColor",
|
|
12770
12781
|
"stroke-linecap": "round",
|
|
@@ -12775,14 +12786,14 @@ function render$198(e, t) {
|
|
|
12775
12786
|
}
|
|
12776
12787
|
var align_right_default = {
|
|
12777
12788
|
name: "lucide-align-right",
|
|
12778
|
-
render: render$
|
|
12779
|
-
}, _hoisted_1$
|
|
12789
|
+
render: render$203
|
|
12790
|
+
}, _hoisted_1$220 = {
|
|
12780
12791
|
viewBox: "0 0 24 24",
|
|
12781
12792
|
width: "1.2em",
|
|
12782
12793
|
height: "1.2em"
|
|
12783
12794
|
};
|
|
12784
|
-
function render$
|
|
12785
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12795
|
+
function render$202(e, t) {
|
|
12796
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$220, [...t[0] ||= [createBaseVNode("g", {
|
|
12786
12797
|
fill: "none",
|
|
12787
12798
|
stroke: "currentColor",
|
|
12788
12799
|
"stroke-linecap": "round",
|
|
@@ -12798,14 +12809,14 @@ function render$197(e, t) {
|
|
|
12798
12809
|
}
|
|
12799
12810
|
var archive_default = {
|
|
12800
12811
|
name: "lucide-archive",
|
|
12801
|
-
render: render$
|
|
12802
|
-
}, _hoisted_1$
|
|
12812
|
+
render: render$202
|
|
12813
|
+
}, _hoisted_1$219 = {
|
|
12803
12814
|
viewBox: "0 0 24 24",
|
|
12804
12815
|
width: "1.2em",
|
|
12805
12816
|
height: "1.2em"
|
|
12806
12817
|
};
|
|
12807
|
-
function render$
|
|
12808
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12818
|
+
function render$201(e, t) {
|
|
12819
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$219, [...t[0] ||= [createBaseVNode("g", {
|
|
12809
12820
|
fill: "none",
|
|
12810
12821
|
stroke: "currentColor",
|
|
12811
12822
|
"stroke-linecap": "round",
|
|
@@ -12821,14 +12832,14 @@ function render$196(e, t) {
|
|
|
12821
12832
|
}
|
|
12822
12833
|
var archive_restore_default = {
|
|
12823
12834
|
name: "lucide-archive-restore",
|
|
12824
|
-
render: render$
|
|
12825
|
-
}, _hoisted_1$
|
|
12835
|
+
render: render$201
|
|
12836
|
+
}, _hoisted_1$218 = {
|
|
12826
12837
|
viewBox: "0 0 24 24",
|
|
12827
12838
|
width: "1.2em",
|
|
12828
12839
|
height: "1.2em"
|
|
12829
12840
|
};
|
|
12830
|
-
function render$
|
|
12831
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12841
|
+
function render$200(e, t) {
|
|
12842
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$218, [...t[0] ||= [createBaseVNode("path", {
|
|
12832
12843
|
fill: "none",
|
|
12833
12844
|
stroke: "currentColor",
|
|
12834
12845
|
"stroke-linecap": "round",
|
|
@@ -12839,14 +12850,14 @@ function render$195(e, t) {
|
|
|
12839
12850
|
}
|
|
12840
12851
|
var arrow_down_default$1 = {
|
|
12841
12852
|
name: "lucide-arrow-down",
|
|
12842
|
-
render: render$
|
|
12843
|
-
}, _hoisted_1$
|
|
12853
|
+
render: render$200
|
|
12854
|
+
}, _hoisted_1$217 = {
|
|
12844
12855
|
viewBox: "0 0 24 24",
|
|
12845
12856
|
width: "1.2em",
|
|
12846
12857
|
height: "1.2em"
|
|
12847
12858
|
};
|
|
12848
|
-
function render$
|
|
12849
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12859
|
+
function render$199(e, t) {
|
|
12860
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$217, [...t[0] ||= [createBaseVNode("path", {
|
|
12850
12861
|
fill: "none",
|
|
12851
12862
|
stroke: "currentColor",
|
|
12852
12863
|
"stroke-linecap": "round",
|
|
@@ -12857,14 +12868,14 @@ function render$194(e, t) {
|
|
|
12857
12868
|
}
|
|
12858
12869
|
var arrow_left_default$1 = {
|
|
12859
12870
|
name: "lucide-arrow-left",
|
|
12860
|
-
render: render$
|
|
12861
|
-
}, _hoisted_1$
|
|
12871
|
+
render: render$199
|
|
12872
|
+
}, _hoisted_1$216 = {
|
|
12862
12873
|
viewBox: "0 0 24 24",
|
|
12863
12874
|
width: "1.2em",
|
|
12864
12875
|
height: "1.2em"
|
|
12865
12876
|
};
|
|
12866
|
-
function render$
|
|
12867
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12877
|
+
function render$198(e, t) {
|
|
12878
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$216, [...t[0] ||= [createBaseVNode("path", {
|
|
12868
12879
|
fill: "none",
|
|
12869
12880
|
stroke: "currentColor",
|
|
12870
12881
|
"stroke-linecap": "round",
|
|
@@ -12875,14 +12886,14 @@ function render$193(e, t) {
|
|
|
12875
12886
|
}
|
|
12876
12887
|
var arrow_left_right_default = {
|
|
12877
12888
|
name: "lucide-arrow-left-right",
|
|
12878
|
-
render: render$
|
|
12879
|
-
}, _hoisted_1$
|
|
12889
|
+
render: render$198
|
|
12890
|
+
}, _hoisted_1$215 = {
|
|
12880
12891
|
viewBox: "0 0 24 24",
|
|
12881
12892
|
width: "1.2em",
|
|
12882
12893
|
height: "1.2em"
|
|
12883
12894
|
};
|
|
12884
|
-
function render$
|
|
12885
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12895
|
+
function render$197(e, t) {
|
|
12896
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$215, [...t[0] ||= [createBaseVNode("path", {
|
|
12886
12897
|
fill: "none",
|
|
12887
12898
|
stroke: "currentColor",
|
|
12888
12899
|
"stroke-linecap": "round",
|
|
@@ -12893,14 +12904,14 @@ function render$192(e, t) {
|
|
|
12893
12904
|
}
|
|
12894
12905
|
var arrow_right_default$1 = {
|
|
12895
12906
|
name: "lucide-arrow-right",
|
|
12896
|
-
render: render$
|
|
12897
|
-
}, _hoisted_1$
|
|
12907
|
+
render: render$197
|
|
12908
|
+
}, _hoisted_1$214 = {
|
|
12898
12909
|
viewBox: "0 0 24 24",
|
|
12899
12910
|
width: "1.2em",
|
|
12900
12911
|
height: "1.2em"
|
|
12901
12912
|
};
|
|
12902
|
-
function render$
|
|
12903
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12913
|
+
function render$196(e, t) {
|
|
12914
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$214, [...t[0] ||= [createBaseVNode("path", {
|
|
12904
12915
|
fill: "none",
|
|
12905
12916
|
stroke: "currentColor",
|
|
12906
12917
|
"stroke-linecap": "round",
|
|
@@ -12911,14 +12922,14 @@ function render$191(e, t) {
|
|
|
12911
12922
|
}
|
|
12912
12923
|
var arrow_right_from_line_default = {
|
|
12913
12924
|
name: "lucide-arrow-right-from-line",
|
|
12914
|
-
render: render$
|
|
12915
|
-
}, _hoisted_1$
|
|
12925
|
+
render: render$196
|
|
12926
|
+
}, _hoisted_1$213 = {
|
|
12916
12927
|
viewBox: "0 0 24 24",
|
|
12917
12928
|
width: "1.2em",
|
|
12918
12929
|
height: "1.2em"
|
|
12919
12930
|
};
|
|
12920
|
-
function render$
|
|
12921
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12931
|
+
function render$195(e, t) {
|
|
12932
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$213, [...t[0] ||= [createBaseVNode("path", {
|
|
12922
12933
|
fill: "none",
|
|
12923
12934
|
stroke: "currentColor",
|
|
12924
12935
|
"stroke-linecap": "round",
|
|
@@ -12929,14 +12940,14 @@ function render$190(e, t) {
|
|
|
12929
12940
|
}
|
|
12930
12941
|
var arrow_right_to_line_default = {
|
|
12931
12942
|
name: "lucide-arrow-right-to-line",
|
|
12932
|
-
render: render$
|
|
12933
|
-
}, _hoisted_1$
|
|
12943
|
+
render: render$195
|
|
12944
|
+
}, _hoisted_1$212 = {
|
|
12934
12945
|
viewBox: "0 0 24 24",
|
|
12935
12946
|
width: "1.2em",
|
|
12936
12947
|
height: "1.2em"
|
|
12937
12948
|
};
|
|
12938
|
-
function render$
|
|
12939
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12949
|
+
function render$194(e, t) {
|
|
12950
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$212, [...t[0] ||= [createBaseVNode("path", {
|
|
12940
12951
|
fill: "none",
|
|
12941
12952
|
stroke: "currentColor",
|
|
12942
12953
|
"stroke-linecap": "round",
|
|
@@ -12947,14 +12958,14 @@ function render$189(e, t) {
|
|
|
12947
12958
|
}
|
|
12948
12959
|
var arrow_up_default = {
|
|
12949
12960
|
name: "lucide-arrow-up",
|
|
12950
|
-
render: render$
|
|
12951
|
-
}, _hoisted_1$
|
|
12961
|
+
render: render$194
|
|
12962
|
+
}, _hoisted_1$211 = {
|
|
12952
12963
|
viewBox: "0 0 24 24",
|
|
12953
12964
|
width: "1.2em",
|
|
12954
12965
|
height: "1.2em"
|
|
12955
12966
|
};
|
|
12956
|
-
function render$
|
|
12957
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12967
|
+
function render$193(e, t) {
|
|
12968
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$211, [...t[0] ||= [createBaseVNode("path", {
|
|
12958
12969
|
fill: "none",
|
|
12959
12970
|
stroke: "currentColor",
|
|
12960
12971
|
"stroke-linecap": "round",
|
|
@@ -12965,14 +12976,14 @@ function render$188(e, t) {
|
|
|
12965
12976
|
}
|
|
12966
12977
|
var arrow_up_right_default = {
|
|
12967
12978
|
name: "lucide-arrow-up-right",
|
|
12968
|
-
render: render$
|
|
12969
|
-
}, _hoisted_1$
|
|
12979
|
+
render: render$193
|
|
12980
|
+
}, _hoisted_1$210 = {
|
|
12970
12981
|
viewBox: "0 0 24 24",
|
|
12971
12982
|
width: "1.2em",
|
|
12972
12983
|
height: "1.2em"
|
|
12973
12984
|
};
|
|
12974
|
-
function render$
|
|
12975
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
12985
|
+
function render$192(e, t) {
|
|
12986
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$210, [...t[0] ||= [createBaseVNode("g", {
|
|
12976
12987
|
fill: "none",
|
|
12977
12988
|
stroke: "currentColor",
|
|
12978
12989
|
"stroke-linecap": "round",
|
|
@@ -12986,14 +12997,31 @@ function render$187(e, t) {
|
|
|
12986
12997
|
}
|
|
12987
12998
|
var at_sign_default = {
|
|
12988
12999
|
name: "lucide-at-sign",
|
|
12989
|
-
render: render$
|
|
12990
|
-
}, _hoisted_1$
|
|
13000
|
+
render: render$192
|
|
13001
|
+
}, _hoisted_1$209 = {
|
|
12991
13002
|
viewBox: "0 0 24 24",
|
|
12992
13003
|
width: "1.2em",
|
|
12993
13004
|
height: "1.2em"
|
|
12994
13005
|
};
|
|
12995
|
-
function render$
|
|
12996
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13006
|
+
function render$191(e, t) {
|
|
13007
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$209, [...t[0] ||= [createBaseVNode("g", {
|
|
13008
|
+
fill: "none",
|
|
13009
|
+
stroke: "currentColor",
|
|
13010
|
+
"stroke-linecap": "round",
|
|
13011
|
+
"stroke-linejoin": "round",
|
|
13012
|
+
"stroke-width": "2"
|
|
13013
|
+
}, [createBaseVNode("path", { d: "M3.85 8.62a4 4 0 0 1 4.78-4.77a4 4 0 0 1 6.74 0a4 4 0 0 1 4.78 4.78a4 4 0 0 1 0 6.74a4 4 0 0 1-4.77 4.78a4 4 0 0 1-6.75 0a4 4 0 0 1-4.78-4.77a4 4 0 0 1 0-6.76" }), createBaseVNode("path", { d: "m9 12l2 2l4-4" })], -1)]]);
|
|
13014
|
+
}
|
|
13015
|
+
var badge_check_default = {
|
|
13016
|
+
name: "lucide-badge-check",
|
|
13017
|
+
render: render$191
|
|
13018
|
+
}, _hoisted_1$208 = {
|
|
13019
|
+
viewBox: "0 0 24 24",
|
|
13020
|
+
width: "1.2em",
|
|
13021
|
+
height: "1.2em"
|
|
13022
|
+
};
|
|
13023
|
+
function render$190(e, t) {
|
|
13024
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$208, [...t[0] ||= [createBaseVNode("g", {
|
|
12997
13025
|
fill: "none",
|
|
12998
13026
|
stroke: "currentColor",
|
|
12999
13027
|
"stroke-linecap": "round",
|
|
@@ -13007,14 +13035,14 @@ function render$186(e, t) {
|
|
|
13007
13035
|
}
|
|
13008
13036
|
var ban_default = {
|
|
13009
13037
|
name: "lucide-ban",
|
|
13010
|
-
render: render$
|
|
13011
|
-
}, _hoisted_1$
|
|
13038
|
+
render: render$190
|
|
13039
|
+
}, _hoisted_1$207 = {
|
|
13012
13040
|
viewBox: "0 0 24 24",
|
|
13013
13041
|
width: "1.2em",
|
|
13014
13042
|
height: "1.2em"
|
|
13015
13043
|
};
|
|
13016
|
-
function render$
|
|
13017
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13044
|
+
function render$189(e, t) {
|
|
13045
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$207, [...t[0] ||= [createBaseVNode("path", {
|
|
13018
13046
|
fill: "none",
|
|
13019
13047
|
stroke: "currentColor",
|
|
13020
13048
|
"stroke-linecap": "round",
|
|
@@ -13025,14 +13053,14 @@ function render$185(e, t) {
|
|
|
13025
13053
|
}
|
|
13026
13054
|
var bell_default = {
|
|
13027
13055
|
name: "lucide-bell",
|
|
13028
|
-
render: render$
|
|
13029
|
-
}, _hoisted_1$
|
|
13056
|
+
render: render$189
|
|
13057
|
+
}, _hoisted_1$206 = {
|
|
13030
13058
|
viewBox: "0 0 24 24",
|
|
13031
13059
|
width: "1.2em",
|
|
13032
13060
|
height: "1.2em"
|
|
13033
13061
|
};
|
|
13034
|
-
function render$
|
|
13035
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13062
|
+
function render$188(e, t) {
|
|
13063
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$206, [...t[0] ||= [createBaseVNode("path", {
|
|
13036
13064
|
fill: "none",
|
|
13037
13065
|
stroke: "currentColor",
|
|
13038
13066
|
"stroke-linecap": "round",
|
|
@@ -13043,14 +13071,14 @@ function render$184(e, t) {
|
|
|
13043
13071
|
}
|
|
13044
13072
|
var book_default = {
|
|
13045
13073
|
name: "lucide-book",
|
|
13046
|
-
render: render$
|
|
13047
|
-
}, _hoisted_1$
|
|
13074
|
+
render: render$188
|
|
13075
|
+
}, _hoisted_1$205 = {
|
|
13048
13076
|
viewBox: "0 0 24 24",
|
|
13049
13077
|
width: "1.2em",
|
|
13050
13078
|
height: "1.2em"
|
|
13051
13079
|
};
|
|
13052
|
-
function render$
|
|
13053
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13080
|
+
function render$187(e, t) {
|
|
13081
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$205, [...t[0] ||= [createBaseVNode("path", {
|
|
13054
13082
|
fill: "none",
|
|
13055
13083
|
stroke: "currentColor",
|
|
13056
13084
|
"stroke-linecap": "round",
|
|
@@ -13061,14 +13089,14 @@ function render$183(e, t) {
|
|
|
13061
13089
|
}
|
|
13062
13090
|
var book_open_default = {
|
|
13063
13091
|
name: "lucide-book-open",
|
|
13064
|
-
render: render$
|
|
13065
|
-
}, _hoisted_1$
|
|
13092
|
+
render: render$187
|
|
13093
|
+
}, _hoisted_1$204 = {
|
|
13066
13094
|
viewBox: "0 0 24 24",
|
|
13067
13095
|
width: "1.2em",
|
|
13068
13096
|
height: "1.2em"
|
|
13069
13097
|
};
|
|
13070
|
-
function render$
|
|
13071
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13098
|
+
function render$186(e, t) {
|
|
13099
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$204, [...t[0] ||= [createBaseVNode("g", {
|
|
13072
13100
|
fill: "none",
|
|
13073
13101
|
stroke: "currentColor",
|
|
13074
13102
|
"stroke-linecap": "round",
|
|
@@ -13088,14 +13116,14 @@ function render$182(e, t) {
|
|
|
13088
13116
|
}
|
|
13089
13117
|
var bot_default = {
|
|
13090
13118
|
name: "lucide-bot",
|
|
13091
|
-
render: render$
|
|
13092
|
-
}, _hoisted_1$
|
|
13119
|
+
render: render$186
|
|
13120
|
+
}, _hoisted_1$203 = {
|
|
13093
13121
|
viewBox: "0 0 24 24",
|
|
13094
13122
|
width: "1.2em",
|
|
13095
13123
|
height: "1.2em"
|
|
13096
13124
|
};
|
|
13097
|
-
function render$
|
|
13098
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13125
|
+
function render$185(e, t) {
|
|
13126
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$203, [...t[0] ||= [createBaseVNode("g", {
|
|
13099
13127
|
fill: "none",
|
|
13100
13128
|
stroke: "currentColor",
|
|
13101
13129
|
"stroke-linecap": "round",
|
|
@@ -13105,14 +13133,14 @@ function render$181(e, t) {
|
|
|
13105
13133
|
}
|
|
13106
13134
|
var box_default = {
|
|
13107
13135
|
name: "lucide-box",
|
|
13108
|
-
render: render$
|
|
13109
|
-
}, _hoisted_1$
|
|
13136
|
+
render: render$185
|
|
13137
|
+
}, _hoisted_1$202 = {
|
|
13110
13138
|
viewBox: "0 0 24 24",
|
|
13111
13139
|
width: "1.2em",
|
|
13112
13140
|
height: "1.2em"
|
|
13113
13141
|
};
|
|
13114
|
-
function render$
|
|
13115
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13142
|
+
function render$184(e, t) {
|
|
13143
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$202, [...t[0] ||= [createBaseVNode("path", {
|
|
13116
13144
|
fill: "none",
|
|
13117
13145
|
stroke: "currentColor",
|
|
13118
13146
|
"stroke-linecap": "round",
|
|
@@ -13123,14 +13151,14 @@ function render$180(e, t) {
|
|
|
13123
13151
|
}
|
|
13124
13152
|
var braces_default = {
|
|
13125
13153
|
name: "lucide-braces",
|
|
13126
|
-
render: render$
|
|
13127
|
-
}, _hoisted_1$
|
|
13154
|
+
render: render$184
|
|
13155
|
+
}, _hoisted_1$201 = {
|
|
13128
13156
|
viewBox: "0 0 24 24",
|
|
13129
13157
|
width: "1.2em",
|
|
13130
13158
|
height: "1.2em"
|
|
13131
13159
|
};
|
|
13132
|
-
function render$
|
|
13133
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13160
|
+
function render$183(e, t) {
|
|
13161
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$201, [...t[0] ||= [createBaseVNode("g", {
|
|
13134
13162
|
fill: "none",
|
|
13135
13163
|
stroke: "currentColor",
|
|
13136
13164
|
"stroke-linecap": "round",
|
|
@@ -13144,14 +13172,14 @@ function render$179(e, t) {
|
|
|
13144
13172
|
}
|
|
13145
13173
|
var brain_default = {
|
|
13146
13174
|
name: "lucide-brain",
|
|
13147
|
-
render: render$
|
|
13148
|
-
}, _hoisted_1$
|
|
13175
|
+
render: render$183
|
|
13176
|
+
}, _hoisted_1$200 = {
|
|
13149
13177
|
viewBox: "0 0 24 24",
|
|
13150
13178
|
width: "1.2em",
|
|
13151
13179
|
height: "1.2em"
|
|
13152
13180
|
};
|
|
13153
|
-
function render$
|
|
13154
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13181
|
+
function render$182(e, t) {
|
|
13182
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$200, [...t[0] ||= [createBaseVNode("g", {
|
|
13155
13183
|
fill: "none",
|
|
13156
13184
|
stroke: "currentColor",
|
|
13157
13185
|
"stroke-linecap": "round",
|
|
@@ -13165,14 +13193,14 @@ function render$178(e, t) {
|
|
|
13165
13193
|
}
|
|
13166
13194
|
var bug_default = {
|
|
13167
13195
|
name: "lucide-bug",
|
|
13168
|
-
render: render$
|
|
13169
|
-
}, _hoisted_1$
|
|
13196
|
+
render: render$182
|
|
13197
|
+
}, _hoisted_1$199 = {
|
|
13170
13198
|
viewBox: "0 0 24 24",
|
|
13171
13199
|
width: "1.2em",
|
|
13172
13200
|
height: "1.2em"
|
|
13173
13201
|
};
|
|
13174
|
-
function render$
|
|
13175
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13202
|
+
function render$181(e, t) {
|
|
13203
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$199, [...t[0] ||= [createBaseVNode("g", {
|
|
13176
13204
|
fill: "none",
|
|
13177
13205
|
stroke: "currentColor",
|
|
13178
13206
|
"stroke-linecap": "round",
|
|
@@ -13188,14 +13216,14 @@ function render$177(e, t) {
|
|
|
13188
13216
|
}
|
|
13189
13217
|
var calculator_default = {
|
|
13190
13218
|
name: "lucide-calculator",
|
|
13191
|
-
render: render$
|
|
13192
|
-
}, _hoisted_1$
|
|
13219
|
+
render: render$181
|
|
13220
|
+
}, _hoisted_1$198 = {
|
|
13193
13221
|
viewBox: "0 0 24 24",
|
|
13194
13222
|
width: "1.2em",
|
|
13195
13223
|
height: "1.2em"
|
|
13196
13224
|
};
|
|
13197
|
-
function render$
|
|
13198
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13225
|
+
function render$180(e, t) {
|
|
13226
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$198, [...t[0] ||= [createBaseVNode("g", {
|
|
13199
13227
|
fill: "none",
|
|
13200
13228
|
stroke: "currentColor",
|
|
13201
13229
|
"stroke-linecap": "round",
|
|
@@ -13215,14 +13243,14 @@ function render$176(e, t) {
|
|
|
13215
13243
|
}
|
|
13216
13244
|
var calendar_default = {
|
|
13217
13245
|
name: "lucide-calendar",
|
|
13218
|
-
render: render$
|
|
13219
|
-
}, _hoisted_1$
|
|
13246
|
+
render: render$180
|
|
13247
|
+
}, _hoisted_1$197 = {
|
|
13220
13248
|
viewBox: "0 0 24 24",
|
|
13221
13249
|
width: "1.2em",
|
|
13222
13250
|
height: "1.2em"
|
|
13223
13251
|
};
|
|
13224
|
-
function render$
|
|
13225
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13252
|
+
function render$179(e, t) {
|
|
13253
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$197, [...t[0] ||= [createBaseVNode("path", {
|
|
13226
13254
|
fill: "none",
|
|
13227
13255
|
stroke: "currentColor",
|
|
13228
13256
|
"stroke-linecap": "round",
|
|
@@ -13233,14 +13261,14 @@ function render$175(e, t) {
|
|
|
13233
13261
|
}
|
|
13234
13262
|
var case_upper_default = {
|
|
13235
13263
|
name: "lucide-case-upper",
|
|
13236
|
-
render: render$
|
|
13237
|
-
}, _hoisted_1$
|
|
13264
|
+
render: render$179
|
|
13265
|
+
}, _hoisted_1$196 = {
|
|
13238
13266
|
viewBox: "0 0 24 24",
|
|
13239
13267
|
width: "1.2em",
|
|
13240
13268
|
height: "1.2em"
|
|
13241
13269
|
};
|
|
13242
|
-
function render$
|
|
13243
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13270
|
+
function render$178(e, t) {
|
|
13271
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$196, [...t[0] ||= [createBaseVNode("path", {
|
|
13244
13272
|
fill: "none",
|
|
13245
13273
|
stroke: "currentColor",
|
|
13246
13274
|
"stroke-linecap": "round",
|
|
@@ -13251,14 +13279,14 @@ function render$174(e, t) {
|
|
|
13251
13279
|
}
|
|
13252
13280
|
var chart_column_decreasing_default = {
|
|
13253
13281
|
name: "lucide-chart-column-decreasing",
|
|
13254
|
-
render: render$
|
|
13255
|
-
}, _hoisted_1$
|
|
13282
|
+
render: render$178
|
|
13283
|
+
}, _hoisted_1$195 = {
|
|
13256
13284
|
viewBox: "0 0 24 24",
|
|
13257
13285
|
width: "1.2em",
|
|
13258
13286
|
height: "1.2em"
|
|
13259
13287
|
};
|
|
13260
|
-
function render$
|
|
13261
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13288
|
+
function render$177(e, t) {
|
|
13289
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$195, [...t[0] ||= [createBaseVNode("path", {
|
|
13262
13290
|
fill: "none",
|
|
13263
13291
|
stroke: "currentColor",
|
|
13264
13292
|
"stroke-linecap": "round",
|
|
@@ -13269,14 +13297,14 @@ function render$173(e, t) {
|
|
|
13269
13297
|
}
|
|
13270
13298
|
var check_default = {
|
|
13271
13299
|
name: "lucide-check",
|
|
13272
|
-
render: render$
|
|
13273
|
-
}, _hoisted_1$
|
|
13300
|
+
render: render$177
|
|
13301
|
+
}, _hoisted_1$194 = {
|
|
13274
13302
|
viewBox: "0 0 24 24",
|
|
13275
13303
|
width: "1.2em",
|
|
13276
13304
|
height: "1.2em"
|
|
13277
13305
|
};
|
|
13278
|
-
function render$
|
|
13279
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13306
|
+
function render$176(e, t) {
|
|
13307
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$194, [...t[0] ||= [createBaseVNode("path", {
|
|
13280
13308
|
fill: "none",
|
|
13281
13309
|
stroke: "currentColor",
|
|
13282
13310
|
"stroke-linecap": "round",
|
|
@@ -13287,15 +13315,15 @@ function render$172(e, t) {
|
|
|
13287
13315
|
}
|
|
13288
13316
|
var check_check_default = {
|
|
13289
13317
|
name: "lucide-check-check",
|
|
13290
|
-
render: render$
|
|
13291
|
-
}, _hoisted_1$
|
|
13318
|
+
render: render$176
|
|
13319
|
+
}, _hoisted_1$193 = {
|
|
13292
13320
|
viewBox: "0 0 24 24",
|
|
13293
13321
|
width: "1.2em",
|
|
13294
13322
|
height: "1.2em"
|
|
13295
13323
|
};
|
|
13296
|
-
function render$
|
|
13297
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13298
|
-
fill: "none",
|
|
13324
|
+
function render$175(e, t) {
|
|
13325
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$193, [...t[0] ||= [createBaseVNode("path", {
|
|
13326
|
+
fill: "none",
|
|
13299
13327
|
stroke: "currentColor",
|
|
13300
13328
|
"stroke-linecap": "round",
|
|
13301
13329
|
"stroke-linejoin": "round",
|
|
@@ -13305,14 +13333,14 @@ function render$171(e, t) {
|
|
|
13305
13333
|
}
|
|
13306
13334
|
var chevron_down_default$1 = {
|
|
13307
13335
|
name: "lucide-chevron-down",
|
|
13308
|
-
render: render$
|
|
13309
|
-
}, _hoisted_1$
|
|
13336
|
+
render: render$175
|
|
13337
|
+
}, _hoisted_1$192 = {
|
|
13310
13338
|
viewBox: "0 0 24 24",
|
|
13311
13339
|
width: "1.2em",
|
|
13312
13340
|
height: "1.2em"
|
|
13313
13341
|
};
|
|
13314
|
-
function render$
|
|
13315
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13342
|
+
function render$174(e, t) {
|
|
13343
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$192, [...t[0] ||= [createBaseVNode("path", {
|
|
13316
13344
|
fill: "none",
|
|
13317
13345
|
stroke: "currentColor",
|
|
13318
13346
|
"stroke-linecap": "round",
|
|
@@ -13323,14 +13351,14 @@ function render$170(e, t) {
|
|
|
13323
13351
|
}
|
|
13324
13352
|
var chevron_left_default = {
|
|
13325
13353
|
name: "lucide-chevron-left",
|
|
13326
|
-
render: render$
|
|
13327
|
-
}, _hoisted_1$
|
|
13354
|
+
render: render$174
|
|
13355
|
+
}, _hoisted_1$191 = {
|
|
13328
13356
|
viewBox: "0 0 24 24",
|
|
13329
13357
|
width: "1.2em",
|
|
13330
13358
|
height: "1.2em"
|
|
13331
13359
|
};
|
|
13332
|
-
function render$
|
|
13333
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13360
|
+
function render$173(e, t) {
|
|
13361
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$191, [...t[0] ||= [createBaseVNode("path", {
|
|
13334
13362
|
fill: "none",
|
|
13335
13363
|
stroke: "currentColor",
|
|
13336
13364
|
"stroke-linecap": "round",
|
|
@@ -13341,14 +13369,14 @@ function render$169(e, t) {
|
|
|
13341
13369
|
}
|
|
13342
13370
|
var chevron_right_default = {
|
|
13343
13371
|
name: "lucide-chevron-right",
|
|
13344
|
-
render: render$
|
|
13345
|
-
}, _hoisted_1$
|
|
13372
|
+
render: render$173
|
|
13373
|
+
}, _hoisted_1$190 = {
|
|
13346
13374
|
viewBox: "0 0 24 24",
|
|
13347
13375
|
width: "1.2em",
|
|
13348
13376
|
height: "1.2em"
|
|
13349
13377
|
};
|
|
13350
|
-
function render$
|
|
13351
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13378
|
+
function render$172(e, t) {
|
|
13379
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$190, [...t[0] ||= [createBaseVNode("path", {
|
|
13352
13380
|
fill: "none",
|
|
13353
13381
|
stroke: "currentColor",
|
|
13354
13382
|
"stroke-linecap": "round",
|
|
@@ -13359,14 +13387,14 @@ function render$168(e, t) {
|
|
|
13359
13387
|
}
|
|
13360
13388
|
var chevron_up_default = {
|
|
13361
13389
|
name: "lucide-chevron-up",
|
|
13362
|
-
render: render$
|
|
13363
|
-
}, _hoisted_1$
|
|
13390
|
+
render: render$172
|
|
13391
|
+
}, _hoisted_1$189 = {
|
|
13364
13392
|
viewBox: "0 0 24 24",
|
|
13365
13393
|
width: "1.2em",
|
|
13366
13394
|
height: "1.2em"
|
|
13367
13395
|
};
|
|
13368
|
-
function render$
|
|
13369
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13396
|
+
function render$171(e, t) {
|
|
13397
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$189, [...t[0] ||= [createBaseVNode("path", {
|
|
13370
13398
|
fill: "none",
|
|
13371
13399
|
stroke: "currentColor",
|
|
13372
13400
|
"stroke-linecap": "round",
|
|
@@ -13377,14 +13405,14 @@ function render$167(e, t) {
|
|
|
13377
13405
|
}
|
|
13378
13406
|
var chevrons_down_up_default = {
|
|
13379
13407
|
name: "lucide-chevrons-down-up",
|
|
13380
|
-
render: render$
|
|
13381
|
-
}, _hoisted_1$
|
|
13408
|
+
render: render$171
|
|
13409
|
+
}, _hoisted_1$188 = {
|
|
13382
13410
|
viewBox: "0 0 24 24",
|
|
13383
13411
|
width: "1.2em",
|
|
13384
13412
|
height: "1.2em"
|
|
13385
13413
|
};
|
|
13386
|
-
function render$
|
|
13387
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13414
|
+
function render$170(e, t) {
|
|
13415
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$188, [...t[0] ||= [createBaseVNode("path", {
|
|
13388
13416
|
fill: "none",
|
|
13389
13417
|
stroke: "currentColor",
|
|
13390
13418
|
"stroke-linecap": "round",
|
|
@@ -13395,14 +13423,14 @@ function render$166(e, t) {
|
|
|
13395
13423
|
}
|
|
13396
13424
|
var chevrons_left_default = {
|
|
13397
13425
|
name: "lucide-chevrons-left",
|
|
13398
|
-
render: render$
|
|
13399
|
-
}, _hoisted_1$
|
|
13426
|
+
render: render$170
|
|
13427
|
+
}, _hoisted_1$187 = {
|
|
13400
13428
|
viewBox: "0 0 24 24",
|
|
13401
13429
|
width: "1.2em",
|
|
13402
13430
|
height: "1.2em"
|
|
13403
13431
|
};
|
|
13404
|
-
function render$
|
|
13405
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13432
|
+
function render$169(e, t) {
|
|
13433
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$187, [...t[0] ||= [createBaseVNode("path", {
|
|
13406
13434
|
fill: "none",
|
|
13407
13435
|
stroke: "currentColor",
|
|
13408
13436
|
"stroke-linecap": "round",
|
|
@@ -13413,14 +13441,14 @@ function render$165(e, t) {
|
|
|
13413
13441
|
}
|
|
13414
13442
|
var chevrons_up_down_default = {
|
|
13415
13443
|
name: "lucide-chevrons-up-down",
|
|
13416
|
-
render: render$
|
|
13417
|
-
}, _hoisted_1$
|
|
13444
|
+
render: render$169
|
|
13445
|
+
}, _hoisted_1$186 = {
|
|
13418
13446
|
viewBox: "0 0 24 24",
|
|
13419
13447
|
width: "1.2em",
|
|
13420
13448
|
height: "1.2em"
|
|
13421
13449
|
};
|
|
13422
|
-
function render$
|
|
13423
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13450
|
+
function render$168(e, t) {
|
|
13451
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$186, [...t[0] ||= [createBaseVNode("circle", {
|
|
13424
13452
|
cx: "12",
|
|
13425
13453
|
cy: "12",
|
|
13426
13454
|
r: "10",
|
|
@@ -13433,14 +13461,14 @@ function render$164(e, t) {
|
|
|
13433
13461
|
}
|
|
13434
13462
|
var circle_default = {
|
|
13435
13463
|
name: "lucide-circle",
|
|
13436
|
-
render: render$
|
|
13437
|
-
}, _hoisted_1$
|
|
13464
|
+
render: render$168
|
|
13465
|
+
}, _hoisted_1$185 = {
|
|
13438
13466
|
viewBox: "0 0 24 24",
|
|
13439
13467
|
width: "1.2em",
|
|
13440
13468
|
height: "1.2em"
|
|
13441
13469
|
};
|
|
13442
|
-
function render$
|
|
13443
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13470
|
+
function render$167(e, t) {
|
|
13471
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$185, [...t[0] ||= [createBaseVNode("g", {
|
|
13444
13472
|
fill: "none",
|
|
13445
13473
|
stroke: "currentColor",
|
|
13446
13474
|
"stroke-linecap": "round",
|
|
@@ -13454,14 +13482,14 @@ function render$163(e, t) {
|
|
|
13454
13482
|
}
|
|
13455
13483
|
var circle_alert_default = {
|
|
13456
13484
|
name: "lucide-circle-alert",
|
|
13457
|
-
render: render$
|
|
13458
|
-
}, _hoisted_1$
|
|
13485
|
+
render: render$167
|
|
13486
|
+
}, _hoisted_1$184 = {
|
|
13459
13487
|
viewBox: "0 0 24 24",
|
|
13460
13488
|
width: "1.2em",
|
|
13461
13489
|
height: "1.2em"
|
|
13462
13490
|
};
|
|
13463
|
-
function render$
|
|
13464
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13491
|
+
function render$166(e, t) {
|
|
13492
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$184, [...t[0] ||= [createBaseVNode("g", {
|
|
13465
13493
|
fill: "none",
|
|
13466
13494
|
stroke: "currentColor",
|
|
13467
13495
|
"stroke-linecap": "round",
|
|
@@ -13475,14 +13503,14 @@ function render$162(e, t) {
|
|
|
13475
13503
|
}
|
|
13476
13504
|
var circle_check_default$1 = {
|
|
13477
13505
|
name: "lucide-circle-check",
|
|
13478
|
-
render: render$
|
|
13479
|
-
}, _hoisted_1$
|
|
13506
|
+
render: render$166
|
|
13507
|
+
}, _hoisted_1$183 = {
|
|
13480
13508
|
viewBox: "0 0 24 24",
|
|
13481
13509
|
width: "1.2em",
|
|
13482
13510
|
height: "1.2em"
|
|
13483
13511
|
};
|
|
13484
|
-
function render$
|
|
13485
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13512
|
+
function render$165(e, t) {
|
|
13513
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$183, [...t[0] ||= [createBaseVNode("g", {
|
|
13486
13514
|
fill: "none",
|
|
13487
13515
|
stroke: "currentColor",
|
|
13488
13516
|
"stroke-linecap": "round",
|
|
@@ -13500,14 +13528,14 @@ function render$161(e, t) {
|
|
|
13500
13528
|
}
|
|
13501
13529
|
var circle_dot_default = {
|
|
13502
13530
|
name: "lucide-circle-dot",
|
|
13503
|
-
render: render$
|
|
13504
|
-
}, _hoisted_1$
|
|
13531
|
+
render: render$165
|
|
13532
|
+
}, _hoisted_1$182 = {
|
|
13505
13533
|
viewBox: "0 0 24 24",
|
|
13506
13534
|
width: "1.2em",
|
|
13507
13535
|
height: "1.2em"
|
|
13508
13536
|
};
|
|
13509
|
-
function render$
|
|
13510
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13537
|
+
function render$164(e, t) {
|
|
13538
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$182, [...t[0] ||= [createBaseVNode("g", {
|
|
13511
13539
|
fill: "none",
|
|
13512
13540
|
stroke: "currentColor",
|
|
13513
13541
|
"stroke-linecap": "round",
|
|
@@ -13521,14 +13549,14 @@ function render$160(e, t) {
|
|
|
13521
13549
|
}
|
|
13522
13550
|
var circle_ellipsis_default = {
|
|
13523
13551
|
name: "lucide-circle-ellipsis",
|
|
13524
|
-
render: render$
|
|
13525
|
-
}, _hoisted_1$
|
|
13552
|
+
render: render$164
|
|
13553
|
+
}, _hoisted_1$181 = {
|
|
13526
13554
|
viewBox: "0 0 24 24",
|
|
13527
13555
|
width: "1.2em",
|
|
13528
13556
|
height: "1.2em"
|
|
13529
13557
|
};
|
|
13530
|
-
function render$
|
|
13531
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13558
|
+
function render$163(e, t) {
|
|
13559
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$181, [...t[0] ||= [createBaseVNode("g", {
|
|
13532
13560
|
fill: "none",
|
|
13533
13561
|
stroke: "currentColor",
|
|
13534
13562
|
"stroke-linecap": "round",
|
|
@@ -13542,14 +13570,14 @@ function render$159(e, t) {
|
|
|
13542
13570
|
}
|
|
13543
13571
|
var circle_help_default = {
|
|
13544
13572
|
name: "lucide-circle-help",
|
|
13545
|
-
render: render$
|
|
13546
|
-
}, _hoisted_1$
|
|
13573
|
+
render: render$163
|
|
13574
|
+
}, _hoisted_1$180 = {
|
|
13547
13575
|
viewBox: "0 0 24 24",
|
|
13548
13576
|
width: "1.2em",
|
|
13549
13577
|
height: "1.2em"
|
|
13550
13578
|
};
|
|
13551
|
-
function render$
|
|
13552
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13579
|
+
function render$162(e, t) {
|
|
13580
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$180, [...t[0] ||= [createBaseVNode("g", {
|
|
13553
13581
|
fill: "none",
|
|
13554
13582
|
stroke: "currentColor",
|
|
13555
13583
|
"stroke-linecap": "round",
|
|
@@ -13563,14 +13591,14 @@ function render$158(e, t) {
|
|
|
13563
13591
|
}
|
|
13564
13592
|
var circle_minus_default = {
|
|
13565
13593
|
name: "lucide-circle-minus",
|
|
13566
|
-
render: render$
|
|
13567
|
-
}, _hoisted_1$
|
|
13594
|
+
render: render$162
|
|
13595
|
+
}, _hoisted_1$179 = {
|
|
13568
13596
|
viewBox: "0 0 24 24",
|
|
13569
13597
|
width: "1.2em",
|
|
13570
13598
|
height: "1.2em"
|
|
13571
13599
|
};
|
|
13572
|
-
function render$
|
|
13573
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13600
|
+
function render$161(e, t) {
|
|
13601
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$179, [...t[0] ||= [createBaseVNode("g", {
|
|
13574
13602
|
fill: "none",
|
|
13575
13603
|
stroke: "currentColor",
|
|
13576
13604
|
"stroke-linecap": "round",
|
|
@@ -13584,14 +13612,14 @@ function render$157(e, t) {
|
|
|
13584
13612
|
}
|
|
13585
13613
|
var circle_pause_default = {
|
|
13586
13614
|
name: "lucide-circle-pause",
|
|
13587
|
-
render: render$
|
|
13588
|
-
}, _hoisted_1$
|
|
13615
|
+
render: render$161
|
|
13616
|
+
}, _hoisted_1$178 = {
|
|
13589
13617
|
viewBox: "0 0 24 24",
|
|
13590
13618
|
width: "1.2em",
|
|
13591
13619
|
height: "1.2em"
|
|
13592
13620
|
};
|
|
13593
|
-
function render$
|
|
13594
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13621
|
+
function render$160(e, t) {
|
|
13622
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$178, [...t[0] ||= [createBaseVNode("g", {
|
|
13595
13623
|
fill: "none",
|
|
13596
13624
|
stroke: "currentColor",
|
|
13597
13625
|
"stroke-linecap": "round",
|
|
@@ -13605,14 +13633,14 @@ function render$156(e, t) {
|
|
|
13605
13633
|
}
|
|
13606
13634
|
var circle_play_default = {
|
|
13607
13635
|
name: "lucide-circle-play",
|
|
13608
|
-
render: render$
|
|
13609
|
-
}, _hoisted_1$
|
|
13636
|
+
render: render$160
|
|
13637
|
+
}, _hoisted_1$177 = {
|
|
13610
13638
|
viewBox: "0 0 24 24",
|
|
13611
13639
|
width: "1.2em",
|
|
13612
13640
|
height: "1.2em"
|
|
13613
13641
|
};
|
|
13614
|
-
function render$
|
|
13615
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13642
|
+
function render$159(e, t) {
|
|
13643
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$177, [...t[0] ||= [createBaseVNode("g", {
|
|
13616
13644
|
fill: "none",
|
|
13617
13645
|
stroke: "currentColor",
|
|
13618
13646
|
"stroke-linecap": "round",
|
|
@@ -13626,14 +13654,14 @@ function render$155(e, t) {
|
|
|
13626
13654
|
}
|
|
13627
13655
|
var circle_plus_default = {
|
|
13628
13656
|
name: "lucide-circle-plus",
|
|
13629
|
-
render: render$
|
|
13630
|
-
}, _hoisted_1$
|
|
13657
|
+
render: render$159
|
|
13658
|
+
}, _hoisted_1$176 = {
|
|
13631
13659
|
viewBox: "0 0 24 24",
|
|
13632
13660
|
width: "1.2em",
|
|
13633
13661
|
height: "1.2em"
|
|
13634
13662
|
};
|
|
13635
|
-
function render$
|
|
13636
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13663
|
+
function render$158(e, t) {
|
|
13664
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$176, [...t[0] ||= [createBaseVNode("g", {
|
|
13637
13665
|
fill: "none",
|
|
13638
13666
|
stroke: "currentColor",
|
|
13639
13667
|
"stroke-linecap": "round",
|
|
@@ -13655,14 +13683,14 @@ function render$154(e, t) {
|
|
|
13655
13683
|
}
|
|
13656
13684
|
var circle_user_round_default = {
|
|
13657
13685
|
name: "lucide-circle-user-round",
|
|
13658
|
-
render: render$
|
|
13659
|
-
}, _hoisted_1$
|
|
13686
|
+
render: render$158
|
|
13687
|
+
}, _hoisted_1$175 = {
|
|
13660
13688
|
viewBox: "0 0 24 24",
|
|
13661
13689
|
width: "1.2em",
|
|
13662
13690
|
height: "1.2em"
|
|
13663
13691
|
};
|
|
13664
|
-
function render$
|
|
13665
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13692
|
+
function render$157(e, t) {
|
|
13693
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$175, [...t[0] ||= [createBaseVNode("g", {
|
|
13666
13694
|
fill: "none",
|
|
13667
13695
|
stroke: "currentColor",
|
|
13668
13696
|
"stroke-linecap": "round",
|
|
@@ -13676,14 +13704,14 @@ function render$153(e, t) {
|
|
|
13676
13704
|
}
|
|
13677
13705
|
var circle_x_default = {
|
|
13678
13706
|
name: "lucide-circle-x",
|
|
13679
|
-
render: render$
|
|
13680
|
-
}, _hoisted_1$
|
|
13707
|
+
render: render$157
|
|
13708
|
+
}, _hoisted_1$174 = {
|
|
13681
13709
|
viewBox: "0 0 24 24",
|
|
13682
13710
|
width: "1.2em",
|
|
13683
13711
|
height: "1.2em"
|
|
13684
13712
|
};
|
|
13685
|
-
function render$
|
|
13686
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13713
|
+
function render$156(e, t) {
|
|
13714
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$174, [...t[0] ||= [createBaseVNode("g", {
|
|
13687
13715
|
fill: "none",
|
|
13688
13716
|
stroke: "currentColor",
|
|
13689
13717
|
"stroke-linecap": "round",
|
|
@@ -13700,14 +13728,14 @@ function render$152(e, t) {
|
|
|
13700
13728
|
}
|
|
13701
13729
|
var clipboard_default = {
|
|
13702
13730
|
name: "lucide-clipboard",
|
|
13703
|
-
render: render$
|
|
13704
|
-
}, _hoisted_1$
|
|
13731
|
+
render: render$156
|
|
13732
|
+
}, _hoisted_1$173 = {
|
|
13705
13733
|
viewBox: "0 0 24 24",
|
|
13706
13734
|
width: "1.2em",
|
|
13707
13735
|
height: "1.2em"
|
|
13708
13736
|
};
|
|
13709
|
-
function render$
|
|
13710
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13737
|
+
function render$155(e, t) {
|
|
13738
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$173, [...t[0] ||= [createBaseVNode("g", {
|
|
13711
13739
|
fill: "none",
|
|
13712
13740
|
stroke: "currentColor",
|
|
13713
13741
|
"stroke-linecap": "round",
|
|
@@ -13728,14 +13756,14 @@ function render$151(e, t) {
|
|
|
13728
13756
|
}
|
|
13729
13757
|
var clipboard_check_default = {
|
|
13730
13758
|
name: "lucide-clipboard-check",
|
|
13731
|
-
render: render$
|
|
13732
|
-
}, _hoisted_1$
|
|
13759
|
+
render: render$155
|
|
13760
|
+
}, _hoisted_1$172 = {
|
|
13733
13761
|
viewBox: "0 0 24 24",
|
|
13734
13762
|
width: "1.2em",
|
|
13735
13763
|
height: "1.2em"
|
|
13736
13764
|
};
|
|
13737
|
-
function render$
|
|
13738
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13765
|
+
function render$154(e, t) {
|
|
13766
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$172, [...t[0] ||= [createBaseVNode("g", {
|
|
13739
13767
|
fill: "none",
|
|
13740
13768
|
stroke: "currentColor",
|
|
13741
13769
|
"stroke-linecap": "round",
|
|
@@ -13752,14 +13780,14 @@ function render$150(e, t) {
|
|
|
13752
13780
|
}
|
|
13753
13781
|
var clipboard_list_default = {
|
|
13754
13782
|
name: "lucide-clipboard-list",
|
|
13755
|
-
render: render$
|
|
13756
|
-
}, _hoisted_1$
|
|
13783
|
+
render: render$154
|
|
13784
|
+
}, _hoisted_1$171 = {
|
|
13757
13785
|
viewBox: "0 0 24 24",
|
|
13758
13786
|
width: "1.2em",
|
|
13759
13787
|
height: "1.2em"
|
|
13760
13788
|
};
|
|
13761
|
-
function render$
|
|
13762
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13789
|
+
function render$153(e, t) {
|
|
13790
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$171, [...t[0] ||= [createBaseVNode("g", {
|
|
13763
13791
|
fill: "none",
|
|
13764
13792
|
stroke: "currentColor",
|
|
13765
13793
|
"stroke-linecap": "round",
|
|
@@ -13773,14 +13801,14 @@ function render$149(e, t) {
|
|
|
13773
13801
|
}
|
|
13774
13802
|
var clock_default = {
|
|
13775
13803
|
name: "lucide-clock",
|
|
13776
|
-
render: render$
|
|
13777
|
-
}, _hoisted_1$
|
|
13804
|
+
render: render$153
|
|
13805
|
+
}, _hoisted_1$170 = {
|
|
13778
13806
|
viewBox: "0 0 24 24",
|
|
13779
13807
|
width: "1.2em",
|
|
13780
13808
|
height: "1.2em"
|
|
13781
13809
|
};
|
|
13782
|
-
function render$
|
|
13783
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13810
|
+
function render$152(e, t) {
|
|
13811
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$170, [...t[0] ||= [createBaseVNode("path", {
|
|
13784
13812
|
fill: "none",
|
|
13785
13813
|
stroke: "currentColor",
|
|
13786
13814
|
"stroke-linecap": "round",
|
|
@@ -13791,14 +13819,14 @@ function render$148(e, t) {
|
|
|
13791
13819
|
}
|
|
13792
13820
|
var cloud_default = {
|
|
13793
13821
|
name: "lucide-cloud",
|
|
13794
|
-
render: render$
|
|
13795
|
-
}, _hoisted_1$
|
|
13822
|
+
render: render$152
|
|
13823
|
+
}, _hoisted_1$169 = {
|
|
13796
13824
|
viewBox: "0 0 24 24",
|
|
13797
13825
|
width: "1.2em",
|
|
13798
13826
|
height: "1.2em"
|
|
13799
13827
|
};
|
|
13800
|
-
function render$
|
|
13801
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13828
|
+
function render$151(e, t) {
|
|
13829
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$169, [...t[0] ||= [createBaseVNode("g", {
|
|
13802
13830
|
fill: "none",
|
|
13803
13831
|
stroke: "currentColor",
|
|
13804
13832
|
"stroke-linecap": "round",
|
|
@@ -13808,14 +13836,14 @@ function render$147(e, t) {
|
|
|
13808
13836
|
}
|
|
13809
13837
|
var cloud_download_default = {
|
|
13810
13838
|
name: "lucide-cloud-download",
|
|
13811
|
-
render: render$
|
|
13812
|
-
}, _hoisted_1$
|
|
13839
|
+
render: render$151
|
|
13840
|
+
}, _hoisted_1$168 = {
|
|
13813
13841
|
viewBox: "0 0 24 24",
|
|
13814
13842
|
width: "1.2em",
|
|
13815
13843
|
height: "1.2em"
|
|
13816
13844
|
};
|
|
13817
|
-
function render$
|
|
13818
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13845
|
+
function render$150(e, t) {
|
|
13846
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$168, [...t[0] ||= [createBaseVNode("path", {
|
|
13819
13847
|
fill: "none",
|
|
13820
13848
|
stroke: "currentColor",
|
|
13821
13849
|
"stroke-linecap": "round",
|
|
@@ -13826,14 +13854,14 @@ function render$146(e, t) {
|
|
|
13826
13854
|
}
|
|
13827
13855
|
var code_default = {
|
|
13828
13856
|
name: "lucide-code",
|
|
13829
|
-
render: render$
|
|
13830
|
-
}, _hoisted_1$
|
|
13857
|
+
render: render$150
|
|
13858
|
+
}, _hoisted_1$167 = {
|
|
13831
13859
|
viewBox: "0 0 24 24",
|
|
13832
13860
|
width: "1.2em",
|
|
13833
13861
|
height: "1.2em"
|
|
13834
13862
|
};
|
|
13835
|
-
function render$
|
|
13836
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13863
|
+
function render$149(e, t) {
|
|
13864
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$167, [...t[0] ||= [createBaseVNode("g", {
|
|
13837
13865
|
fill: "none",
|
|
13838
13866
|
stroke: "currentColor",
|
|
13839
13867
|
"stroke-linecap": "round",
|
|
@@ -13843,14 +13871,14 @@ function render$145(e, t) {
|
|
|
13843
13871
|
}
|
|
13844
13872
|
var cog_default = {
|
|
13845
13873
|
name: "lucide-cog",
|
|
13846
|
-
render: render$
|
|
13847
|
-
}, _hoisted_1$
|
|
13874
|
+
render: render$149
|
|
13875
|
+
}, _hoisted_1$166 = {
|
|
13848
13876
|
viewBox: "0 0 24 24",
|
|
13849
13877
|
width: "1.2em",
|
|
13850
13878
|
height: "1.2em"
|
|
13851
13879
|
};
|
|
13852
|
-
function render$
|
|
13853
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13880
|
+
function render$148(e, t) {
|
|
13881
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$166, [...t[0] ||= [createBaseVNode("g", {
|
|
13854
13882
|
fill: "none",
|
|
13855
13883
|
stroke: "currentColor",
|
|
13856
13884
|
"stroke-linecap": "round",
|
|
@@ -13864,14 +13892,14 @@ function render$144(e, t) {
|
|
|
13864
13892
|
}
|
|
13865
13893
|
var columns_3_cog_default = {
|
|
13866
13894
|
name: "lucide-columns-3-cog",
|
|
13867
|
-
render: render$
|
|
13868
|
-
}, _hoisted_1$
|
|
13895
|
+
render: render$148
|
|
13896
|
+
}, _hoisted_1$165 = {
|
|
13869
13897
|
viewBox: "0 0 24 24",
|
|
13870
13898
|
width: "1.2em",
|
|
13871
13899
|
height: "1.2em"
|
|
13872
13900
|
};
|
|
13873
|
-
function render$
|
|
13874
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13901
|
+
function render$147(e, t) {
|
|
13902
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$165, [...t[0] ||= [createBaseVNode("g", {
|
|
13875
13903
|
fill: "none",
|
|
13876
13904
|
stroke: "currentColor",
|
|
13877
13905
|
"stroke-linecap": "round",
|
|
@@ -13885,14 +13913,14 @@ function render$143(e, t) {
|
|
|
13885
13913
|
}
|
|
13886
13914
|
var contrast_default = {
|
|
13887
13915
|
name: "lucide-contrast",
|
|
13888
|
-
render: render$
|
|
13889
|
-
}, _hoisted_1$
|
|
13916
|
+
render: render$147
|
|
13917
|
+
}, _hoisted_1$164 = {
|
|
13890
13918
|
viewBox: "0 0 24 24",
|
|
13891
13919
|
width: "1.2em",
|
|
13892
13920
|
height: "1.2em"
|
|
13893
13921
|
};
|
|
13894
|
-
function render$
|
|
13895
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13922
|
+
function render$146(e, t) {
|
|
13923
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$164, [...t[0] ||= [createBaseVNode("g", {
|
|
13896
13924
|
fill: "none",
|
|
13897
13925
|
stroke: "currentColor",
|
|
13898
13926
|
"stroke-linecap": "round",
|
|
@@ -13909,14 +13937,14 @@ function render$142(e, t) {
|
|
|
13909
13937
|
}
|
|
13910
13938
|
var copy_default = {
|
|
13911
13939
|
name: "lucide-copy",
|
|
13912
|
-
render: render$
|
|
13913
|
-
}, _hoisted_1$
|
|
13940
|
+
render: render$146
|
|
13941
|
+
}, _hoisted_1$163 = {
|
|
13914
13942
|
viewBox: "0 0 24 24",
|
|
13915
13943
|
width: "1.2em",
|
|
13916
13944
|
height: "1.2em"
|
|
13917
13945
|
};
|
|
13918
|
-
function render$
|
|
13919
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13946
|
+
function render$145(e, t) {
|
|
13947
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$163, [...t[0] ||= [createBaseVNode("g", {
|
|
13920
13948
|
fill: "none",
|
|
13921
13949
|
stroke: "currentColor",
|
|
13922
13950
|
"stroke-linecap": "round",
|
|
@@ -13930,14 +13958,14 @@ function render$141(e, t) {
|
|
|
13930
13958
|
}
|
|
13931
13959
|
var crosshair_default = {
|
|
13932
13960
|
name: "lucide-crosshair",
|
|
13933
|
-
render: render$
|
|
13934
|
-
}, _hoisted_1$
|
|
13961
|
+
render: render$145
|
|
13962
|
+
}, _hoisted_1$162 = {
|
|
13935
13963
|
viewBox: "0 0 24 24",
|
|
13936
13964
|
width: "1.2em",
|
|
13937
13965
|
height: "1.2em"
|
|
13938
13966
|
};
|
|
13939
|
-
function render$
|
|
13940
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13967
|
+
function render$144(e, t) {
|
|
13968
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$162, [...t[0] ||= [createBaseVNode("g", {
|
|
13941
13969
|
fill: "none",
|
|
13942
13970
|
stroke: "currentColor",
|
|
13943
13971
|
"stroke-linecap": "round",
|
|
@@ -13956,14 +13984,14 @@ function render$140(e, t) {
|
|
|
13956
13984
|
}
|
|
13957
13985
|
var database_default = {
|
|
13958
13986
|
name: "lucide-database",
|
|
13959
|
-
render: render$
|
|
13960
|
-
}, _hoisted_1$
|
|
13987
|
+
render: render$144
|
|
13988
|
+
}, _hoisted_1$161 = {
|
|
13961
13989
|
viewBox: "0 0 24 24",
|
|
13962
13990
|
width: "1.2em",
|
|
13963
13991
|
height: "1.2em"
|
|
13964
13992
|
};
|
|
13965
|
-
function render$
|
|
13966
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
13993
|
+
function render$143(e, t) {
|
|
13994
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$161, [...t[0] ||= [createBaseVNode("path", {
|
|
13967
13995
|
fill: "none",
|
|
13968
13996
|
stroke: "currentColor",
|
|
13969
13997
|
"stroke-linecap": "round",
|
|
@@ -13974,14 +14002,14 @@ function render$139(e, t) {
|
|
|
13974
14002
|
}
|
|
13975
14003
|
var door_open_default = {
|
|
13976
14004
|
name: "lucide-door-open",
|
|
13977
|
-
render: render$
|
|
13978
|
-
}, _hoisted_1$
|
|
14005
|
+
render: render$143
|
|
14006
|
+
}, _hoisted_1$160 = {
|
|
13979
14007
|
viewBox: "0 0 24 24",
|
|
13980
14008
|
width: "1.2em",
|
|
13981
14009
|
height: "1.2em"
|
|
13982
14010
|
};
|
|
13983
|
-
function render$
|
|
13984
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14011
|
+
function render$142(e, t) {
|
|
14012
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$160, [...t[0] ||= [createBaseVNode("circle", {
|
|
13985
14013
|
cx: "12.1",
|
|
13986
14014
|
cy: "12.1",
|
|
13987
14015
|
r: "1",
|
|
@@ -13994,14 +14022,14 @@ function render$138(e, t) {
|
|
|
13994
14022
|
}
|
|
13995
14023
|
var dot_default = {
|
|
13996
14024
|
name: "lucide-dot",
|
|
13997
|
-
render: render$
|
|
13998
|
-
}, _hoisted_1$
|
|
14025
|
+
render: render$142
|
|
14026
|
+
}, _hoisted_1$159 = {
|
|
13999
14027
|
viewBox: "0 0 24 24",
|
|
14000
14028
|
width: "1.2em",
|
|
14001
14029
|
height: "1.2em"
|
|
14002
14030
|
};
|
|
14003
|
-
function render$
|
|
14004
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14031
|
+
function render$141(e, t) {
|
|
14032
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$159, [...t[0] ||= [createBaseVNode("g", {
|
|
14005
14033
|
fill: "none",
|
|
14006
14034
|
stroke: "currentColor",
|
|
14007
14035
|
"stroke-linecap": "round",
|
|
@@ -14011,14 +14039,14 @@ function render$137(e, t) {
|
|
|
14011
14039
|
}
|
|
14012
14040
|
var download_default = {
|
|
14013
14041
|
name: "lucide-download",
|
|
14014
|
-
render: render$
|
|
14015
|
-
}, _hoisted_1$
|
|
14042
|
+
render: render$141
|
|
14043
|
+
}, _hoisted_1$158 = {
|
|
14016
14044
|
viewBox: "0 0 24 24",
|
|
14017
14045
|
width: "1.2em",
|
|
14018
14046
|
height: "1.2em"
|
|
14019
14047
|
};
|
|
14020
|
-
function render$
|
|
14021
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14048
|
+
function render$140(e, t) {
|
|
14049
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$158, [...t[0] ||= [createBaseVNode("g", {
|
|
14022
14050
|
fill: "none",
|
|
14023
14051
|
stroke: "currentColor",
|
|
14024
14052
|
"stroke-linecap": "round",
|
|
@@ -14032,14 +14060,14 @@ function render$136(e, t) {
|
|
|
14032
14060
|
}
|
|
14033
14061
|
var earth_default = {
|
|
14034
14062
|
name: "lucide-earth",
|
|
14035
|
-
render: render$
|
|
14036
|
-
}, _hoisted_1$
|
|
14063
|
+
render: render$140
|
|
14064
|
+
}, _hoisted_1$157 = {
|
|
14037
14065
|
viewBox: "0 0 24 24",
|
|
14038
14066
|
width: "1.2em",
|
|
14039
14067
|
height: "1.2em"
|
|
14040
14068
|
};
|
|
14041
|
-
function render$
|
|
14042
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14069
|
+
function render$139(e, t) {
|
|
14070
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$157, [...t[0] ||= [createBaseVNode("g", {
|
|
14043
14071
|
fill: "none",
|
|
14044
14072
|
stroke: "currentColor",
|
|
14045
14073
|
"stroke-linecap": "round",
|
|
@@ -14065,14 +14093,14 @@ function render$135(e, t) {
|
|
|
14065
14093
|
}
|
|
14066
14094
|
var ellipsis_default = {
|
|
14067
14095
|
name: "lucide-ellipsis",
|
|
14068
|
-
render: render$
|
|
14069
|
-
}, _hoisted_1$
|
|
14096
|
+
render: render$139
|
|
14097
|
+
}, _hoisted_1$156 = {
|
|
14070
14098
|
viewBox: "0 0 24 24",
|
|
14071
14099
|
width: "1.2em",
|
|
14072
14100
|
height: "1.2em"
|
|
14073
14101
|
};
|
|
14074
|
-
function render$
|
|
14075
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14102
|
+
function render$138(e, t) {
|
|
14103
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$156, [...t[0] ||= [createBaseVNode("g", {
|
|
14076
14104
|
fill: "none",
|
|
14077
14105
|
stroke: "currentColor",
|
|
14078
14106
|
"stroke-linecap": "round",
|
|
@@ -14098,14 +14126,14 @@ function render$134(e, t) {
|
|
|
14098
14126
|
}
|
|
14099
14127
|
var ellipsis_vertical_default = {
|
|
14100
14128
|
name: "lucide-ellipsis-vertical",
|
|
14101
|
-
render: render$
|
|
14102
|
-
}, _hoisted_1$
|
|
14129
|
+
render: render$138
|
|
14130
|
+
}, _hoisted_1$155 = {
|
|
14103
14131
|
viewBox: "0 0 24 24",
|
|
14104
14132
|
width: "1.2em",
|
|
14105
14133
|
height: "1.2em"
|
|
14106
14134
|
};
|
|
14107
|
-
function render$
|
|
14108
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14135
|
+
function render$137(e, t) {
|
|
14136
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$155, [...t[0] ||= [createBaseVNode("path", {
|
|
14109
14137
|
fill: "none",
|
|
14110
14138
|
stroke: "currentColor",
|
|
14111
14139
|
"stroke-linecap": "round",
|
|
@@ -14116,14 +14144,14 @@ function render$133(e, t) {
|
|
|
14116
14144
|
}
|
|
14117
14145
|
var equal_default = {
|
|
14118
14146
|
name: "lucide-equal",
|
|
14119
|
-
render: render$
|
|
14120
|
-
}, _hoisted_1$
|
|
14147
|
+
render: render$137
|
|
14148
|
+
}, _hoisted_1$154 = {
|
|
14121
14149
|
viewBox: "0 0 24 24",
|
|
14122
14150
|
width: "1.2em",
|
|
14123
14151
|
height: "1.2em"
|
|
14124
14152
|
};
|
|
14125
|
-
function render$
|
|
14126
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14153
|
+
function render$136(e, t) {
|
|
14154
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$154, [...t[0] ||= [createBaseVNode("path", {
|
|
14127
14155
|
fill: "none",
|
|
14128
14156
|
stroke: "currentColor",
|
|
14129
14157
|
"stroke-linecap": "round",
|
|
@@ -14134,14 +14162,14 @@ function render$132(e, t) {
|
|
|
14134
14162
|
}
|
|
14135
14163
|
var expand_default = {
|
|
14136
14164
|
name: "lucide-expand",
|
|
14137
|
-
render: render$
|
|
14138
|
-
}, _hoisted_1$
|
|
14165
|
+
render: render$136
|
|
14166
|
+
}, _hoisted_1$153 = {
|
|
14139
14167
|
viewBox: "0 0 24 24",
|
|
14140
14168
|
width: "1.2em",
|
|
14141
14169
|
height: "1.2em"
|
|
14142
14170
|
};
|
|
14143
|
-
function render$
|
|
14144
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14171
|
+
function render$135(e, t) {
|
|
14172
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$153, [...t[0] ||= [createBaseVNode("path", {
|
|
14145
14173
|
fill: "none",
|
|
14146
14174
|
stroke: "currentColor",
|
|
14147
14175
|
"stroke-linecap": "round",
|
|
@@ -14152,14 +14180,14 @@ function render$131(e, t) {
|
|
|
14152
14180
|
}
|
|
14153
14181
|
var external_link_default = {
|
|
14154
14182
|
name: "lucide-external-link",
|
|
14155
|
-
render: render$
|
|
14156
|
-
}, _hoisted_1$
|
|
14183
|
+
render: render$135
|
|
14184
|
+
}, _hoisted_1$152 = {
|
|
14157
14185
|
viewBox: "0 0 24 24",
|
|
14158
14186
|
width: "1.2em",
|
|
14159
14187
|
height: "1.2em"
|
|
14160
14188
|
};
|
|
14161
|
-
function render$
|
|
14162
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14189
|
+
function render$134(e, t) {
|
|
14190
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$152, [...t[0] ||= [createBaseVNode("g", {
|
|
14163
14191
|
fill: "none",
|
|
14164
14192
|
stroke: "currentColor",
|
|
14165
14193
|
"stroke-linecap": "round",
|
|
@@ -14173,14 +14201,14 @@ function render$130(e, t) {
|
|
|
14173
14201
|
}
|
|
14174
14202
|
var eye_default = {
|
|
14175
14203
|
name: "lucide-eye",
|
|
14176
|
-
render: render$
|
|
14177
|
-
}, _hoisted_1$
|
|
14204
|
+
render: render$134
|
|
14205
|
+
}, _hoisted_1$151 = {
|
|
14178
14206
|
viewBox: "0 0 24 24",
|
|
14179
14207
|
width: "1.2em",
|
|
14180
14208
|
height: "1.2em"
|
|
14181
14209
|
};
|
|
14182
|
-
function render$
|
|
14183
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14210
|
+
function render$133(e, t) {
|
|
14211
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$151, [...t[0] ||= [createBaseVNode("g", {
|
|
14184
14212
|
fill: "none",
|
|
14185
14213
|
stroke: "currentColor",
|
|
14186
14214
|
"stroke-linecap": "round",
|
|
@@ -14190,14 +14218,14 @@ function render$129(e, t) {
|
|
|
14190
14218
|
}
|
|
14191
14219
|
var eye_off_default = {
|
|
14192
14220
|
name: "lucide-eye-off",
|
|
14193
|
-
render: render$
|
|
14194
|
-
}, _hoisted_1$
|
|
14221
|
+
render: render$133
|
|
14222
|
+
}, _hoisted_1$150 = {
|
|
14195
14223
|
viewBox: "0 0 24 24",
|
|
14196
14224
|
width: "1.2em",
|
|
14197
14225
|
height: "1.2em"
|
|
14198
14226
|
};
|
|
14199
|
-
function render$
|
|
14200
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14227
|
+
function render$132(e, t) {
|
|
14228
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$150, [...t[0] ||= [createBaseVNode("g", {
|
|
14201
14229
|
fill: "none",
|
|
14202
14230
|
stroke: "currentColor",
|
|
14203
14231
|
"stroke-linecap": "round",
|
|
@@ -14207,14 +14235,14 @@ function render$128(e, t) {
|
|
|
14207
14235
|
}
|
|
14208
14236
|
var file_default = {
|
|
14209
14237
|
name: "lucide-file",
|
|
14210
|
-
render: render$
|
|
14211
|
-
}, _hoisted_1$
|
|
14238
|
+
render: render$132
|
|
14239
|
+
}, _hoisted_1$149 = {
|
|
14212
14240
|
viewBox: "0 0 24 24",
|
|
14213
14241
|
width: "1.2em",
|
|
14214
14242
|
height: "1.2em"
|
|
14215
14243
|
};
|
|
14216
|
-
function render$
|
|
14217
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14244
|
+
function render$131(e, t) {
|
|
14245
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$149, [...t[0] ||= [createBaseVNode("g", {
|
|
14218
14246
|
fill: "none",
|
|
14219
14247
|
stroke: "currentColor",
|
|
14220
14248
|
"stroke-linecap": "round",
|
|
@@ -14232,14 +14260,14 @@ function render$127(e, t) {
|
|
|
14232
14260
|
}
|
|
14233
14261
|
var file_archive_default = {
|
|
14234
14262
|
name: "lucide-file-archive",
|
|
14235
|
-
render: render$
|
|
14236
|
-
}, _hoisted_1$
|
|
14263
|
+
render: render$131
|
|
14264
|
+
}, _hoisted_1$148 = {
|
|
14237
14265
|
viewBox: "0 0 24 24",
|
|
14238
14266
|
width: "1.2em",
|
|
14239
14267
|
height: "1.2em"
|
|
14240
14268
|
};
|
|
14241
|
-
function render$
|
|
14242
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14269
|
+
function render$130(e, t) {
|
|
14270
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$148, [...t[0] ||= [createBaseVNode("g", {
|
|
14243
14271
|
fill: "none",
|
|
14244
14272
|
stroke: "currentColor",
|
|
14245
14273
|
"stroke-linecap": "round",
|
|
@@ -14249,14 +14277,14 @@ function render$126(e, t) {
|
|
|
14249
14277
|
}
|
|
14250
14278
|
var file_code_default = {
|
|
14251
14279
|
name: "lucide-file-code",
|
|
14252
|
-
render: render$
|
|
14253
|
-
}, _hoisted_1$
|
|
14280
|
+
render: render$130
|
|
14281
|
+
}, _hoisted_1$147 = {
|
|
14254
14282
|
viewBox: "0 0 24 24",
|
|
14255
14283
|
width: "1.2em",
|
|
14256
14284
|
height: "1.2em"
|
|
14257
14285
|
};
|
|
14258
|
-
function render$
|
|
14259
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14286
|
+
function render$129(e, t) {
|
|
14287
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$147, [...t[0] ||= [createBaseVNode("path", {
|
|
14260
14288
|
fill: "none",
|
|
14261
14289
|
stroke: "currentColor",
|
|
14262
14290
|
"stroke-linecap": "round",
|
|
@@ -14267,14 +14295,14 @@ function render$125(e, t) {
|
|
|
14267
14295
|
}
|
|
14268
14296
|
var file_diff_default = {
|
|
14269
14297
|
name: "lucide-file-diff",
|
|
14270
|
-
render: render$
|
|
14271
|
-
}, _hoisted_1$
|
|
14298
|
+
render: render$129
|
|
14299
|
+
}, _hoisted_1$146 = {
|
|
14272
14300
|
viewBox: "0 0 24 24",
|
|
14273
14301
|
width: "1.2em",
|
|
14274
14302
|
height: "1.2em"
|
|
14275
14303
|
};
|
|
14276
|
-
function render$
|
|
14277
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14304
|
+
function render$128(e, t) {
|
|
14305
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$146, [...t[0] ||= [createBaseVNode("g", {
|
|
14278
14306
|
fill: "none",
|
|
14279
14307
|
stroke: "currentColor",
|
|
14280
14308
|
"stroke-linecap": "round",
|
|
@@ -14284,14 +14312,14 @@ function render$124(e, t) {
|
|
|
14284
14312
|
}
|
|
14285
14313
|
var file_down_default = {
|
|
14286
14314
|
name: "lucide-file-down",
|
|
14287
|
-
render: render$
|
|
14288
|
-
}, _hoisted_1$
|
|
14315
|
+
render: render$128
|
|
14316
|
+
}, _hoisted_1$145 = {
|
|
14289
14317
|
viewBox: "0 0 24 24",
|
|
14290
14318
|
width: "1.2em",
|
|
14291
14319
|
height: "1.2em"
|
|
14292
14320
|
};
|
|
14293
|
-
function render$
|
|
14294
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14321
|
+
function render$127(e, t) {
|
|
14322
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$145, [...t[0] ||= [createBaseVNode("g", {
|
|
14295
14323
|
fill: "none",
|
|
14296
14324
|
stroke: "currentColor",
|
|
14297
14325
|
"stroke-linecap": "round",
|
|
@@ -14301,14 +14329,14 @@ function render$123(e, t) {
|
|
|
14301
14329
|
}
|
|
14302
14330
|
var file_input_default = {
|
|
14303
14331
|
name: "lucide-file-input",
|
|
14304
|
-
render: render$
|
|
14305
|
-
}, _hoisted_1$
|
|
14332
|
+
render: render$127
|
|
14333
|
+
}, _hoisted_1$144 = {
|
|
14306
14334
|
viewBox: "0 0 24 24",
|
|
14307
14335
|
width: "1.2em",
|
|
14308
14336
|
height: "1.2em"
|
|
14309
14337
|
};
|
|
14310
|
-
function render$
|
|
14311
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14338
|
+
function render$126(e, t) {
|
|
14339
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$144, [...t[0] ||= [createBaseVNode("g", {
|
|
14312
14340
|
fill: "none",
|
|
14313
14341
|
stroke: "currentColor",
|
|
14314
14342
|
"stroke-linecap": "round",
|
|
@@ -14322,14 +14350,14 @@ function render$122(e, t) {
|
|
|
14322
14350
|
}
|
|
14323
14351
|
var file_output_default = {
|
|
14324
14352
|
name: "lucide-file-output",
|
|
14325
|
-
render: render$
|
|
14326
|
-
}, _hoisted_1$
|
|
14353
|
+
render: render$126
|
|
14354
|
+
}, _hoisted_1$143 = {
|
|
14327
14355
|
viewBox: "0 0 24 24",
|
|
14328
14356
|
width: "1.2em",
|
|
14329
14357
|
height: "1.2em"
|
|
14330
14358
|
};
|
|
14331
|
-
function render$
|
|
14332
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14359
|
+
function render$125(e, t) {
|
|
14360
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$143, [...t[0] ||= [createBaseVNode("g", {
|
|
14333
14361
|
fill: "none",
|
|
14334
14362
|
stroke: "currentColor",
|
|
14335
14363
|
"stroke-linecap": "round",
|
|
@@ -14339,14 +14367,14 @@ function render$121(e, t) {
|
|
|
14339
14367
|
}
|
|
14340
14368
|
var file_text_default = {
|
|
14341
14369
|
name: "lucide-file-text",
|
|
14342
|
-
render: render$
|
|
14343
|
-
}, _hoisted_1$
|
|
14370
|
+
render: render$125
|
|
14371
|
+
}, _hoisted_1$142 = {
|
|
14344
14372
|
viewBox: "0 0 24 24",
|
|
14345
14373
|
width: "1.2em",
|
|
14346
14374
|
height: "1.2em"
|
|
14347
14375
|
};
|
|
14348
|
-
function render$
|
|
14349
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14376
|
+
function render$124(e, t) {
|
|
14377
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$142, [...t[0] ||= [createBaseVNode("g", {
|
|
14350
14378
|
fill: "none",
|
|
14351
14379
|
stroke: "currentColor",
|
|
14352
14380
|
"stroke-linecap": "round",
|
|
@@ -14360,14 +14388,14 @@ function render$120(e, t) {
|
|
|
14360
14388
|
}
|
|
14361
14389
|
var files_default = {
|
|
14362
14390
|
name: "lucide-files",
|
|
14363
|
-
render: render$
|
|
14364
|
-
}, _hoisted_1$
|
|
14391
|
+
render: render$124
|
|
14392
|
+
}, _hoisted_1$141 = {
|
|
14365
14393
|
viewBox: "0 0 24 24",
|
|
14366
14394
|
width: "1.2em",
|
|
14367
14395
|
height: "1.2em"
|
|
14368
14396
|
};
|
|
14369
|
-
function render$
|
|
14370
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14397
|
+
function render$123(e, t) {
|
|
14398
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$141, [...t[0] ||= [createBaseVNode("g", {
|
|
14371
14399
|
fill: "none",
|
|
14372
14400
|
stroke: "currentColor",
|
|
14373
14401
|
"stroke-linecap": "round",
|
|
@@ -14377,14 +14405,14 @@ function render$119(e, t) {
|
|
|
14377
14405
|
}
|
|
14378
14406
|
var fingerprint_default = {
|
|
14379
14407
|
name: "lucide-fingerprint",
|
|
14380
|
-
render: render$
|
|
14381
|
-
}, _hoisted_1$
|
|
14408
|
+
render: render$123
|
|
14409
|
+
}, _hoisted_1$140 = {
|
|
14382
14410
|
viewBox: "0 0 24 24",
|
|
14383
14411
|
width: "1.2em",
|
|
14384
14412
|
height: "1.2em"
|
|
14385
14413
|
};
|
|
14386
|
-
function render$
|
|
14387
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14414
|
+
function render$122(e, t) {
|
|
14415
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$140, [...t[0] ||= [createBaseVNode("path", {
|
|
14388
14416
|
fill: "none",
|
|
14389
14417
|
stroke: "currentColor",
|
|
14390
14418
|
"stroke-linecap": "round",
|
|
@@ -14395,14 +14423,14 @@ function render$118(e, t) {
|
|
|
14395
14423
|
}
|
|
14396
14424
|
var flask_conical_default = {
|
|
14397
14425
|
name: "lucide-flask-conical",
|
|
14398
|
-
render: render$
|
|
14399
|
-
}, _hoisted_1$
|
|
14426
|
+
render: render$122
|
|
14427
|
+
}, _hoisted_1$139 = {
|
|
14400
14428
|
viewBox: "0 0 24 24",
|
|
14401
14429
|
width: "1.2em",
|
|
14402
14430
|
height: "1.2em"
|
|
14403
14431
|
};
|
|
14404
|
-
function render$
|
|
14405
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14432
|
+
function render$121(e, t) {
|
|
14433
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$139, [...t[0] ||= [createBaseVNode("path", {
|
|
14406
14434
|
fill: "none",
|
|
14407
14435
|
stroke: "currentColor",
|
|
14408
14436
|
"stroke-linecap": "round",
|
|
@@ -14413,14 +14441,14 @@ function render$117(e, t) {
|
|
|
14413
14441
|
}
|
|
14414
14442
|
var folder_default = {
|
|
14415
14443
|
name: "lucide-folder",
|
|
14416
|
-
render: render$
|
|
14417
|
-
}, _hoisted_1$
|
|
14444
|
+
render: render$121
|
|
14445
|
+
}, _hoisted_1$138 = {
|
|
14418
14446
|
viewBox: "0 0 24 24",
|
|
14419
14447
|
width: "1.2em",
|
|
14420
14448
|
height: "1.2em"
|
|
14421
14449
|
};
|
|
14422
|
-
function render$
|
|
14423
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14450
|
+
function render$120(e, t) {
|
|
14451
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$138, [...t[0] ||= [createBaseVNode("path", {
|
|
14424
14452
|
fill: "none",
|
|
14425
14453
|
stroke: "currentColor",
|
|
14426
14454
|
"stroke-linecap": "round",
|
|
@@ -14431,14 +14459,14 @@ function render$116(e, t) {
|
|
|
14431
14459
|
}
|
|
14432
14460
|
var folder_open_default = {
|
|
14433
14461
|
name: "lucide-folder-open",
|
|
14434
|
-
render: render$
|
|
14435
|
-
}, _hoisted_1$
|
|
14462
|
+
render: render$120
|
|
14463
|
+
}, _hoisted_1$137 = {
|
|
14436
14464
|
viewBox: "0 0 24 24",
|
|
14437
14465
|
width: "1.2em",
|
|
14438
14466
|
height: "1.2em"
|
|
14439
14467
|
};
|
|
14440
|
-
function render$
|
|
14441
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14468
|
+
function render$119(e, t) {
|
|
14469
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$137, [...t[0] ||= [createBaseVNode("path", {
|
|
14442
14470
|
fill: "none",
|
|
14443
14471
|
stroke: "currentColor",
|
|
14444
14472
|
"stroke-linecap": "round",
|
|
@@ -14449,14 +14477,14 @@ function render$115(e, t) {
|
|
|
14449
14477
|
}
|
|
14450
14478
|
var folder_plus_default = {
|
|
14451
14479
|
name: "lucide-folder-plus",
|
|
14452
|
-
render: render$
|
|
14453
|
-
}, _hoisted_1$
|
|
14480
|
+
render: render$119
|
|
14481
|
+
}, _hoisted_1$136 = {
|
|
14454
14482
|
viewBox: "0 0 24 24",
|
|
14455
14483
|
width: "1.2em",
|
|
14456
14484
|
height: "1.2em"
|
|
14457
14485
|
};
|
|
14458
|
-
function render$
|
|
14459
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14486
|
+
function render$118(e, t) {
|
|
14487
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$136, [...t[0] ||= [createBaseVNode("path", {
|
|
14460
14488
|
fill: "none",
|
|
14461
14489
|
stroke: "currentColor",
|
|
14462
14490
|
"stroke-linecap": "round",
|
|
@@ -14467,14 +14495,14 @@ function render$114(e, t) {
|
|
|
14467
14495
|
}
|
|
14468
14496
|
var funnel_default = {
|
|
14469
14497
|
name: "lucide-funnel",
|
|
14470
|
-
render: render$
|
|
14471
|
-
}, _hoisted_1$
|
|
14498
|
+
render: render$118
|
|
14499
|
+
}, _hoisted_1$135 = {
|
|
14472
14500
|
viewBox: "0 0 24 24",
|
|
14473
14501
|
width: "1.2em",
|
|
14474
14502
|
height: "1.2em"
|
|
14475
14503
|
};
|
|
14476
|
-
function render$
|
|
14477
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14504
|
+
function render$117(e, t) {
|
|
14505
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$135, [...t[0] ||= [createBaseVNode("g", {
|
|
14478
14506
|
fill: "none",
|
|
14479
14507
|
stroke: "currentColor",
|
|
14480
14508
|
"stroke-linecap": "round",
|
|
@@ -14484,14 +14512,14 @@ function render$113(e, t) {
|
|
|
14484
14512
|
}
|
|
14485
14513
|
var gem_default = {
|
|
14486
14514
|
name: "lucide-gem",
|
|
14487
|
-
render: render$
|
|
14488
|
-
}, _hoisted_1$
|
|
14515
|
+
render: render$117
|
|
14516
|
+
}, _hoisted_1$134 = {
|
|
14489
14517
|
viewBox: "0 0 24 24",
|
|
14490
14518
|
width: "1.2em",
|
|
14491
14519
|
height: "1.2em"
|
|
14492
14520
|
};
|
|
14493
|
-
function render$
|
|
14494
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14521
|
+
function render$116(e, t) {
|
|
14522
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$134, [...t[0] ||= [createBaseVNode("g", {
|
|
14495
14523
|
fill: "none",
|
|
14496
14524
|
stroke: "currentColor",
|
|
14497
14525
|
"stroke-linecap": "round",
|
|
@@ -14507,25 +14535,25 @@ function render$112(e, t) {
|
|
|
14507
14535
|
}
|
|
14508
14536
|
var gift_default = {
|
|
14509
14537
|
name: "lucide-gift",
|
|
14510
|
-
render: render$
|
|
14511
|
-
}, _hoisted_1$
|
|
14538
|
+
render: render$116
|
|
14539
|
+
}, _hoisted_1$133 = {
|
|
14512
14540
|
viewBox: "0 0 24 24",
|
|
14513
14541
|
width: "1.2em",
|
|
14514
14542
|
height: "1.2em"
|
|
14515
14543
|
};
|
|
14516
|
-
function render$
|
|
14517
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14544
|
+
function render$115(e, t) {
|
|
14545
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$133, [...t[0] ||= [createStaticVNode("<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M6 3v12\"></path><circle cx=\"18\" cy=\"6\" r=\"3\"></circle><circle cx=\"6\" cy=\"18\" r=\"3\"></circle><path d=\"M18 9a9 9 0 0 1-9 9\"></path></g>", 1)]]);
|
|
14518
14546
|
}
|
|
14519
14547
|
var git_branch_default = {
|
|
14520
14548
|
name: "lucide-git-branch",
|
|
14521
|
-
render: render$
|
|
14522
|
-
}, _hoisted_1$
|
|
14549
|
+
render: render$115
|
|
14550
|
+
}, _hoisted_1$132 = {
|
|
14523
14551
|
viewBox: "0 0 24 24",
|
|
14524
14552
|
width: "1.2em",
|
|
14525
14553
|
height: "1.2em"
|
|
14526
14554
|
};
|
|
14527
|
-
function render$
|
|
14528
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14555
|
+
function render$114(e, t) {
|
|
14556
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$132, [...t[0] ||= [createBaseVNode("g", {
|
|
14529
14557
|
fill: "none",
|
|
14530
14558
|
stroke: "currentColor",
|
|
14531
14559
|
"stroke-linecap": "round",
|
|
@@ -14539,14 +14567,14 @@ function render$110(e, t) {
|
|
|
14539
14567
|
}
|
|
14540
14568
|
var globe_default = {
|
|
14541
14569
|
name: "lucide-globe",
|
|
14542
|
-
render: render$
|
|
14543
|
-
}, _hoisted_1$
|
|
14570
|
+
render: render$114
|
|
14571
|
+
}, _hoisted_1$131 = {
|
|
14544
14572
|
viewBox: "0 0 24 24",
|
|
14545
14573
|
width: "1.2em",
|
|
14546
14574
|
height: "1.2em"
|
|
14547
14575
|
};
|
|
14548
|
-
function render$
|
|
14549
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14576
|
+
function render$113(e, t) {
|
|
14577
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$131, [...t[0] ||= [createBaseVNode("g", {
|
|
14550
14578
|
fill: "none",
|
|
14551
14579
|
stroke: "currentColor",
|
|
14552
14580
|
"stroke-linecap": "round",
|
|
@@ -14556,14 +14584,14 @@ function render$109(e, t) {
|
|
|
14556
14584
|
}
|
|
14557
14585
|
var graduation_cap_default = {
|
|
14558
14586
|
name: "lucide-graduation-cap",
|
|
14559
|
-
render: render$
|
|
14560
|
-
}, _hoisted_1$
|
|
14587
|
+
render: render$113
|
|
14588
|
+
}, _hoisted_1$130 = {
|
|
14561
14589
|
viewBox: "0 0 24 24",
|
|
14562
14590
|
width: "1.2em",
|
|
14563
14591
|
height: "1.2em"
|
|
14564
14592
|
};
|
|
14565
|
-
function render$
|
|
14566
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14593
|
+
function render$112(e, t) {
|
|
14594
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$130, [...t[0] ||= [createBaseVNode("g", {
|
|
14567
14595
|
fill: "none",
|
|
14568
14596
|
stroke: "currentColor",
|
|
14569
14597
|
"stroke-linecap": "round",
|
|
@@ -14579,36 +14607,36 @@ function render$108(e, t) {
|
|
|
14579
14607
|
}
|
|
14580
14608
|
var grid_2x2_default = {
|
|
14581
14609
|
name: "lucide-grid-2x2",
|
|
14582
|
-
render: render$
|
|
14583
|
-
}, _hoisted_1$
|
|
14610
|
+
render: render$112
|
|
14611
|
+
}, _hoisted_1$129 = {
|
|
14584
14612
|
viewBox: "0 0 24 24",
|
|
14585
14613
|
width: "1.2em",
|
|
14586
14614
|
height: "1.2em"
|
|
14587
14615
|
};
|
|
14588
|
-
function render$
|
|
14589
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14616
|
+
function render$111(e, t) {
|
|
14617
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$129, [...t[0] ||= [createStaticVNode("<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><circle cx=\"9\" cy=\"12\" r=\"1\"></circle><circle cx=\"9\" cy=\"5\" r=\"1\"></circle><circle cx=\"9\" cy=\"19\" r=\"1\"></circle><circle cx=\"15\" cy=\"12\" r=\"1\"></circle><circle cx=\"15\" cy=\"5\" r=\"1\"></circle><circle cx=\"15\" cy=\"19\" r=\"1\"></circle></g>", 1)]]);
|
|
14590
14618
|
}
|
|
14591
14619
|
var grip_vertical_default = {
|
|
14592
14620
|
name: "lucide-grip-vertical",
|
|
14593
|
-
render: render$
|
|
14594
|
-
}, _hoisted_1$
|
|
14621
|
+
render: render$111
|
|
14622
|
+
}, _hoisted_1$128 = {
|
|
14595
14623
|
viewBox: "0 0 24 24",
|
|
14596
14624
|
width: "1.2em",
|
|
14597
14625
|
height: "1.2em"
|
|
14598
14626
|
};
|
|
14599
|
-
function render$
|
|
14600
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14627
|
+
function render$110(e, t) {
|
|
14628
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$128, [...t[0] ||= [createStaticVNode("<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17\"></path><path d=\"m7 21l1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9M2 16l6 6\"></path><circle cx=\"16\" cy=\"9\" r=\"2.9\"></circle><circle cx=\"6\" cy=\"5\" r=\"3\"></circle></g>", 1)]]);
|
|
14601
14629
|
}
|
|
14602
14630
|
var hand_coins_default = {
|
|
14603
14631
|
name: "lucide-hand-coins",
|
|
14604
|
-
render: render$
|
|
14605
|
-
}, _hoisted_1$
|
|
14632
|
+
render: render$110
|
|
14633
|
+
}, _hoisted_1$127 = {
|
|
14606
14634
|
viewBox: "0 0 24 24",
|
|
14607
14635
|
width: "1.2em",
|
|
14608
14636
|
height: "1.2em"
|
|
14609
14637
|
};
|
|
14610
|
-
function render$
|
|
14611
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14638
|
+
function render$109(e, t) {
|
|
14639
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$127, [...t[0] ||= [createBaseVNode("g", {
|
|
14612
14640
|
fill: "none",
|
|
14613
14641
|
stroke: "currentColor",
|
|
14614
14642
|
"stroke-linecap": "round",
|
|
@@ -14622,14 +14650,14 @@ function render$105(e, t) {
|
|
|
14622
14650
|
}
|
|
14623
14651
|
var handshake_default = {
|
|
14624
14652
|
name: "lucide-handshake",
|
|
14625
|
-
render: render$
|
|
14626
|
-
}, _hoisted_1$
|
|
14653
|
+
render: render$109
|
|
14654
|
+
}, _hoisted_1$126 = {
|
|
14627
14655
|
viewBox: "0 0 24 24",
|
|
14628
14656
|
width: "1.2em",
|
|
14629
14657
|
height: "1.2em"
|
|
14630
14658
|
};
|
|
14631
|
-
function render$
|
|
14632
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14659
|
+
function render$108(e, t) {
|
|
14660
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$126, [...t[0] ||= [createBaseVNode("path", {
|
|
14633
14661
|
fill: "none",
|
|
14634
14662
|
stroke: "currentColor",
|
|
14635
14663
|
"stroke-linecap": "round",
|
|
@@ -14640,14 +14668,14 @@ function render$104(e, t) {
|
|
|
14640
14668
|
}
|
|
14641
14669
|
var hard_drive_default = {
|
|
14642
14670
|
name: "lucide-hard-drive",
|
|
14643
|
-
render: render$
|
|
14644
|
-
}, _hoisted_1$
|
|
14671
|
+
render: render$108
|
|
14672
|
+
}, _hoisted_1$125 = {
|
|
14645
14673
|
viewBox: "0 0 24 24",
|
|
14646
14674
|
width: "1.2em",
|
|
14647
14675
|
height: "1.2em"
|
|
14648
14676
|
};
|
|
14649
|
-
function render$
|
|
14650
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14677
|
+
function render$107(e, t) {
|
|
14678
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$125, [...t[0] ||= [createBaseVNode("g", {
|
|
14651
14679
|
fill: "none",
|
|
14652
14680
|
stroke: "currentColor",
|
|
14653
14681
|
"stroke-linecap": "round",
|
|
@@ -14667,14 +14695,14 @@ function render$103(e, t) {
|
|
|
14667
14695
|
}
|
|
14668
14696
|
var hard_drive_download_default = {
|
|
14669
14697
|
name: "lucide-hard-drive-download",
|
|
14670
|
-
render: render$
|
|
14671
|
-
}, _hoisted_1$
|
|
14698
|
+
render: render$107
|
|
14699
|
+
}, _hoisted_1$124 = {
|
|
14672
14700
|
viewBox: "0 0 24 24",
|
|
14673
14701
|
width: "1.2em",
|
|
14674
14702
|
height: "1.2em"
|
|
14675
14703
|
};
|
|
14676
|
-
function render$
|
|
14677
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14704
|
+
function render$106(e, t) {
|
|
14705
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$124, [...t[0] ||= [createBaseVNode("path", {
|
|
14678
14706
|
fill: "none",
|
|
14679
14707
|
stroke: "currentColor",
|
|
14680
14708
|
"stroke-linecap": "round",
|
|
@@ -14685,15 +14713,15 @@ function render$102(e, t) {
|
|
|
14685
14713
|
}
|
|
14686
14714
|
var hash_default = {
|
|
14687
14715
|
name: "lucide-hash",
|
|
14688
|
-
render: render$
|
|
14689
|
-
}, _hoisted_1$
|
|
14716
|
+
render: render$106
|
|
14717
|
+
}, _hoisted_1$123 = {
|
|
14690
14718
|
viewBox: "0 0 24 24",
|
|
14691
14719
|
width: "1.2em",
|
|
14692
14720
|
height: "1.2em"
|
|
14693
14721
|
};
|
|
14694
|
-
function render$
|
|
14695
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14696
|
-
fill: "none",
|
|
14722
|
+
function render$105(e, t) {
|
|
14723
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$123, [...t[0] ||= [createBaseVNode("g", {
|
|
14724
|
+
fill: "none",
|
|
14697
14725
|
stroke: "currentColor",
|
|
14698
14726
|
"stroke-linecap": "round",
|
|
14699
14727
|
"stroke-linejoin": "round",
|
|
@@ -14702,14 +14730,14 @@ function render$101(e, t) {
|
|
|
14702
14730
|
}
|
|
14703
14731
|
var history_default = {
|
|
14704
14732
|
name: "lucide-history",
|
|
14705
|
-
render: render$
|
|
14706
|
-
}, _hoisted_1$
|
|
14733
|
+
render: render$105
|
|
14734
|
+
}, _hoisted_1$122 = {
|
|
14707
14735
|
viewBox: "0 0 24 24",
|
|
14708
14736
|
width: "1.2em",
|
|
14709
14737
|
height: "1.2em"
|
|
14710
14738
|
};
|
|
14711
|
-
function render$
|
|
14712
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14739
|
+
function render$104(e, t) {
|
|
14740
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$122, [...t[0] ||= [createBaseVNode("path", {
|
|
14713
14741
|
fill: "none",
|
|
14714
14742
|
stroke: "currentColor",
|
|
14715
14743
|
"stroke-linecap": "round",
|
|
@@ -14720,14 +14748,14 @@ function render$100(e, t) {
|
|
|
14720
14748
|
}
|
|
14721
14749
|
var hourglass_default = {
|
|
14722
14750
|
name: "lucide-hourglass",
|
|
14723
|
-
render: render$
|
|
14724
|
-
}, _hoisted_1$
|
|
14751
|
+
render: render$104
|
|
14752
|
+
}, _hoisted_1$121 = {
|
|
14725
14753
|
viewBox: "0 0 24 24",
|
|
14726
14754
|
width: "1.2em",
|
|
14727
14755
|
height: "1.2em"
|
|
14728
14756
|
};
|
|
14729
|
-
function render$
|
|
14730
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14757
|
+
function render$103(e, t) {
|
|
14758
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$121, [...t[0] ||= [createBaseVNode("g", {
|
|
14731
14759
|
fill: "none",
|
|
14732
14760
|
stroke: "currentColor",
|
|
14733
14761
|
"stroke-linecap": "round",
|
|
@@ -14737,14 +14765,14 @@ function render$99(e, t) {
|
|
|
14737
14765
|
}
|
|
14738
14766
|
var house_default = {
|
|
14739
14767
|
name: "lucide-house",
|
|
14740
|
-
render: render$
|
|
14741
|
-
}, _hoisted_1$
|
|
14768
|
+
render: render$103
|
|
14769
|
+
}, _hoisted_1$120 = {
|
|
14742
14770
|
viewBox: "0 0 24 24",
|
|
14743
14771
|
width: "1.2em",
|
|
14744
14772
|
height: "1.2em"
|
|
14745
14773
|
};
|
|
14746
|
-
function render$
|
|
14747
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14774
|
+
function render$102(e, t) {
|
|
14775
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$120, [...t[0] ||= [createBaseVNode("g", {
|
|
14748
14776
|
fill: "none",
|
|
14749
14777
|
stroke: "currentColor",
|
|
14750
14778
|
"stroke-linecap": "round",
|
|
@@ -14769,14 +14797,14 @@ function render$98(e, t) {
|
|
|
14769
14797
|
}
|
|
14770
14798
|
var image_default = {
|
|
14771
14799
|
name: "lucide-image",
|
|
14772
|
-
render: render$
|
|
14773
|
-
}, _hoisted_1$
|
|
14800
|
+
render: render$102
|
|
14801
|
+
}, _hoisted_1$119 = {
|
|
14774
14802
|
viewBox: "0 0 24 24",
|
|
14775
14803
|
width: "1.2em",
|
|
14776
14804
|
height: "1.2em"
|
|
14777
14805
|
};
|
|
14778
|
-
function render$
|
|
14779
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14806
|
+
function render$101(e, t) {
|
|
14807
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$119, [...t[0] ||= [createBaseVNode("g", {
|
|
14780
14808
|
fill: "none",
|
|
14781
14809
|
stroke: "currentColor",
|
|
14782
14810
|
"stroke-linecap": "round",
|
|
@@ -14786,14 +14814,14 @@ function render$97(e, t) {
|
|
|
14786
14814
|
}
|
|
14787
14815
|
var inbox_default = {
|
|
14788
14816
|
name: "lucide-inbox",
|
|
14789
|
-
render: render$
|
|
14790
|
-
}, _hoisted_1$
|
|
14817
|
+
render: render$101
|
|
14818
|
+
}, _hoisted_1$118 = {
|
|
14791
14819
|
viewBox: "0 0 24 24",
|
|
14792
14820
|
width: "1.2em",
|
|
14793
14821
|
height: "1.2em"
|
|
14794
14822
|
};
|
|
14795
|
-
function render$
|
|
14796
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14823
|
+
function render$100(e, t) {
|
|
14824
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$118, [...t[0] ||= [createBaseVNode("g", {
|
|
14797
14825
|
fill: "none",
|
|
14798
14826
|
stroke: "currentColor",
|
|
14799
14827
|
"stroke-linecap": "round",
|
|
@@ -14807,14 +14835,14 @@ function render$96(e, t) {
|
|
|
14807
14835
|
}
|
|
14808
14836
|
var info_default = {
|
|
14809
14837
|
name: "lucide-info",
|
|
14810
|
-
render: render$
|
|
14811
|
-
}, _hoisted_1$
|
|
14838
|
+
render: render$100
|
|
14839
|
+
}, _hoisted_1$117 = {
|
|
14812
14840
|
viewBox: "0 0 24 24",
|
|
14813
14841
|
width: "1.2em",
|
|
14814
14842
|
height: "1.2em"
|
|
14815
14843
|
};
|
|
14816
|
-
function render$
|
|
14817
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14844
|
+
function render$99(e, t) {
|
|
14845
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$117, [...t[0] ||= [createBaseVNode("g", {
|
|
14818
14846
|
fill: "none",
|
|
14819
14847
|
stroke: "currentColor",
|
|
14820
14848
|
"stroke-linecap": "round",
|
|
@@ -14829,14 +14857,14 @@ function render$95(e, t) {
|
|
|
14829
14857
|
}
|
|
14830
14858
|
var key_round_default = {
|
|
14831
14859
|
name: "lucide-key-round",
|
|
14832
|
-
render: render$
|
|
14833
|
-
}, _hoisted_1$
|
|
14860
|
+
render: render$99
|
|
14861
|
+
}, _hoisted_1$116 = {
|
|
14834
14862
|
viewBox: "0 0 24 24",
|
|
14835
14863
|
width: "1.2em",
|
|
14836
14864
|
height: "1.2em"
|
|
14837
14865
|
};
|
|
14838
|
-
function render$
|
|
14839
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14866
|
+
function render$98(e, t) {
|
|
14867
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$116, [...t[0] ||= [createBaseVNode("path", {
|
|
14840
14868
|
fill: "none",
|
|
14841
14869
|
stroke: "currentColor",
|
|
14842
14870
|
"stroke-linecap": "round",
|
|
@@ -14847,14 +14875,14 @@ function render$94(e, t) {
|
|
|
14847
14875
|
}
|
|
14848
14876
|
var languages_default = {
|
|
14849
14877
|
name: "lucide-languages",
|
|
14850
|
-
render: render$
|
|
14851
|
-
}, _hoisted_1$
|
|
14878
|
+
render: render$98
|
|
14879
|
+
}, _hoisted_1$115 = {
|
|
14852
14880
|
viewBox: "0 0 24 24",
|
|
14853
14881
|
width: "1.2em",
|
|
14854
14882
|
height: "1.2em"
|
|
14855
14883
|
};
|
|
14856
|
-
function render$
|
|
14857
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14884
|
+
function render$97(e, t) {
|
|
14885
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$115, [...t[0] ||= [createBaseVNode("g", {
|
|
14858
14886
|
fill: "none",
|
|
14859
14887
|
stroke: "currentColor",
|
|
14860
14888
|
"stroke-linecap": "round",
|
|
@@ -14868,14 +14896,14 @@ function render$93(e, t) {
|
|
|
14868
14896
|
}
|
|
14869
14897
|
var layers_default = {
|
|
14870
14898
|
name: "lucide-layers",
|
|
14871
|
-
render: render$
|
|
14872
|
-
}, _hoisted_1$
|
|
14899
|
+
render: render$97
|
|
14900
|
+
}, _hoisted_1$114 = {
|
|
14873
14901
|
viewBox: "0 0 24 24",
|
|
14874
14902
|
width: "1.2em",
|
|
14875
14903
|
height: "1.2em"
|
|
14876
14904
|
};
|
|
14877
|
-
function render$
|
|
14878
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14905
|
+
function render$96(e, t) {
|
|
14906
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$114, [...t[0] ||= [createBaseVNode("path", {
|
|
14879
14907
|
fill: "none",
|
|
14880
14908
|
stroke: "currentColor",
|
|
14881
14909
|
"stroke-linecap": "round",
|
|
@@ -14886,14 +14914,14 @@ function render$92(e, t) {
|
|
|
14886
14914
|
}
|
|
14887
14915
|
var lightbulb_default = {
|
|
14888
14916
|
name: "lucide-lightbulb",
|
|
14889
|
-
render: render$
|
|
14890
|
-
}, _hoisted_1$
|
|
14917
|
+
render: render$96
|
|
14918
|
+
}, _hoisted_1$113 = {
|
|
14891
14919
|
viewBox: "0 0 24 24",
|
|
14892
14920
|
width: "1.2em",
|
|
14893
14921
|
height: "1.2em"
|
|
14894
14922
|
};
|
|
14895
|
-
function render$
|
|
14896
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14923
|
+
function render$95(e, t) {
|
|
14924
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$113, [...t[0] ||= [createBaseVNode("g", {
|
|
14897
14925
|
fill: "none",
|
|
14898
14926
|
stroke: "currentColor",
|
|
14899
14927
|
"stroke-linecap": "round",
|
|
@@ -14903,14 +14931,14 @@ function render$91(e, t) {
|
|
|
14903
14931
|
}
|
|
14904
14932
|
var link_default = {
|
|
14905
14933
|
name: "lucide-link",
|
|
14906
|
-
render: render$
|
|
14907
|
-
}, _hoisted_1$
|
|
14934
|
+
render: render$95
|
|
14935
|
+
}, _hoisted_1$112 = {
|
|
14908
14936
|
viewBox: "0 0 24 24",
|
|
14909
14937
|
width: "1.2em",
|
|
14910
14938
|
height: "1.2em"
|
|
14911
14939
|
};
|
|
14912
|
-
function render$
|
|
14913
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14940
|
+
function render$94(e, t) {
|
|
14941
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$112, [...t[0] ||= [createBaseVNode("path", {
|
|
14914
14942
|
fill: "none",
|
|
14915
14943
|
stroke: "currentColor",
|
|
14916
14944
|
"stroke-linecap": "round",
|
|
@@ -14921,14 +14949,14 @@ function render$90(e, t) {
|
|
|
14921
14949
|
}
|
|
14922
14950
|
var list_default = {
|
|
14923
14951
|
name: "lucide-list",
|
|
14924
|
-
render: render$
|
|
14925
|
-
}, _hoisted_1$
|
|
14952
|
+
render: render$94
|
|
14953
|
+
}, _hoisted_1$111 = {
|
|
14926
14954
|
viewBox: "0 0 24 24",
|
|
14927
14955
|
width: "1.2em",
|
|
14928
14956
|
height: "1.2em"
|
|
14929
14957
|
};
|
|
14930
|
-
function render$
|
|
14931
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14958
|
+
function render$93(e, t) {
|
|
14959
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$111, [...t[0] ||= [createBaseVNode("path", {
|
|
14932
14960
|
fill: "none",
|
|
14933
14961
|
stroke: "currentColor",
|
|
14934
14962
|
"stroke-linecap": "round",
|
|
@@ -14939,14 +14967,32 @@ function render$89(e, t) {
|
|
|
14939
14967
|
}
|
|
14940
14968
|
var list_checks_default = {
|
|
14941
14969
|
name: "lucide-list-checks",
|
|
14942
|
-
render: render$
|
|
14943
|
-
}, _hoisted_1$
|
|
14970
|
+
render: render$93
|
|
14971
|
+
}, _hoisted_1$110 = {
|
|
14944
14972
|
viewBox: "0 0 24 24",
|
|
14945
14973
|
width: "1.2em",
|
|
14946
14974
|
height: "1.2em"
|
|
14947
14975
|
};
|
|
14948
|
-
function render$
|
|
14949
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
14976
|
+
function render$92(e, t) {
|
|
14977
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$110, [...t[0] ||= [createBaseVNode("path", {
|
|
14978
|
+
fill: "none",
|
|
14979
|
+
stroke: "currentColor",
|
|
14980
|
+
"stroke-linecap": "round",
|
|
14981
|
+
"stroke-linejoin": "round",
|
|
14982
|
+
"stroke-width": "2",
|
|
14983
|
+
d: "M21 12a9 9 0 1 1-6.219-8.56"
|
|
14984
|
+
}, null, -1)]]);
|
|
14985
|
+
}
|
|
14986
|
+
var loader2_default = {
|
|
14987
|
+
name: "lucide-loader2",
|
|
14988
|
+
render: render$92
|
|
14989
|
+
}, _hoisted_1$109 = {
|
|
14990
|
+
viewBox: "0 0 24 24",
|
|
14991
|
+
width: "1.2em",
|
|
14992
|
+
height: "1.2em"
|
|
14993
|
+
};
|
|
14994
|
+
function render$91(e, t) {
|
|
14995
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$109, [...t[0] ||= [createBaseVNode("g", {
|
|
14950
14996
|
fill: "none",
|
|
14951
14997
|
stroke: "currentColor",
|
|
14952
14998
|
"stroke-linecap": "round",
|
|
@@ -14963,14 +15009,14 @@ function render$88(e, t) {
|
|
|
14963
15009
|
}
|
|
14964
15010
|
var lock_default = {
|
|
14965
15011
|
name: "lucide-lock",
|
|
14966
|
-
render: render$
|
|
14967
|
-
}, _hoisted_1$
|
|
15012
|
+
render: render$91
|
|
15013
|
+
}, _hoisted_1$108 = {
|
|
14968
15014
|
viewBox: "0 0 24 24",
|
|
14969
15015
|
width: "1.2em",
|
|
14970
15016
|
height: "1.2em"
|
|
14971
15017
|
};
|
|
14972
|
-
function render$
|
|
14973
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15018
|
+
function render$90(e, t) {
|
|
15019
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$108, [...t[0] ||= [createBaseVNode("path", {
|
|
14974
15020
|
fill: "none",
|
|
14975
15021
|
stroke: "currentColor",
|
|
14976
15022
|
"stroke-linecap": "round",
|
|
@@ -14981,14 +15027,14 @@ function render$87(e, t) {
|
|
|
14981
15027
|
}
|
|
14982
15028
|
var log_in_default = {
|
|
14983
15029
|
name: "lucide-log-in",
|
|
14984
|
-
render: render$
|
|
14985
|
-
}, _hoisted_1$
|
|
15030
|
+
render: render$90
|
|
15031
|
+
}, _hoisted_1$107 = {
|
|
14986
15032
|
viewBox: "0 0 24 24",
|
|
14987
15033
|
width: "1.2em",
|
|
14988
15034
|
height: "1.2em"
|
|
14989
15035
|
};
|
|
14990
|
-
function render$
|
|
14991
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15036
|
+
function render$89(e, t) {
|
|
15037
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$107, [...t[0] ||= [createBaseVNode("path", {
|
|
14992
15038
|
fill: "none",
|
|
14993
15039
|
stroke: "currentColor",
|
|
14994
15040
|
"stroke-linecap": "round",
|
|
@@ -14999,14 +15045,14 @@ function render$86(e, t) {
|
|
|
14999
15045
|
}
|
|
15000
15046
|
var log_out_default = {
|
|
15001
15047
|
name: "lucide-log-out",
|
|
15002
|
-
render: render$
|
|
15003
|
-
}, _hoisted_1$
|
|
15048
|
+
render: render$89
|
|
15049
|
+
}, _hoisted_1$106 = {
|
|
15004
15050
|
viewBox: "0 0 24 24",
|
|
15005
15051
|
width: "1.2em",
|
|
15006
15052
|
height: "1.2em"
|
|
15007
15053
|
};
|
|
15008
|
-
function render$
|
|
15009
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15054
|
+
function render$88(e, t) {
|
|
15055
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$106, [...t[0] ||= [createBaseVNode("g", {
|
|
15010
15056
|
fill: "none",
|
|
15011
15057
|
stroke: "currentColor",
|
|
15012
15058
|
"stroke-linecap": "round",
|
|
@@ -15022,14 +15068,14 @@ function render$85(e, t) {
|
|
|
15022
15068
|
}
|
|
15023
15069
|
var mail_default = {
|
|
15024
15070
|
name: "lucide-mail",
|
|
15025
|
-
render: render$
|
|
15026
|
-
}, _hoisted_1$
|
|
15071
|
+
render: render$88
|
|
15072
|
+
}, _hoisted_1$105 = {
|
|
15027
15073
|
viewBox: "0 0 24 24",
|
|
15028
15074
|
width: "1.2em",
|
|
15029
15075
|
height: "1.2em"
|
|
15030
15076
|
};
|
|
15031
|
-
function render$
|
|
15032
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15077
|
+
function render$87(e, t) {
|
|
15078
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$105, [...t[0] ||= [createBaseVNode("path", {
|
|
15033
15079
|
fill: "none",
|
|
15034
15080
|
stroke: "currentColor",
|
|
15035
15081
|
"stroke-linecap": "round",
|
|
@@ -15040,14 +15086,14 @@ function render$84(e, t) {
|
|
|
15040
15086
|
}
|
|
15041
15087
|
var maximize_default = {
|
|
15042
15088
|
name: "lucide-maximize",
|
|
15043
|
-
render: render$
|
|
15044
|
-
}, _hoisted_1$
|
|
15089
|
+
render: render$87
|
|
15090
|
+
}, _hoisted_1$104 = {
|
|
15045
15091
|
viewBox: "0 0 24 24",
|
|
15046
15092
|
width: "1.2em",
|
|
15047
15093
|
height: "1.2em"
|
|
15048
15094
|
};
|
|
15049
|
-
function render$
|
|
15050
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15095
|
+
function render$86(e, t) {
|
|
15096
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$104, [...t[0] ||= [createBaseVNode("path", {
|
|
15051
15097
|
fill: "none",
|
|
15052
15098
|
stroke: "currentColor",
|
|
15053
15099
|
"stroke-linecap": "round",
|
|
@@ -15058,14 +15104,14 @@ function render$83(e, t) {
|
|
|
15058
15104
|
}
|
|
15059
15105
|
var maximize_2_default = {
|
|
15060
15106
|
name: "lucide-maximize-2",
|
|
15061
|
-
render: render$
|
|
15062
|
-
}, _hoisted_1$
|
|
15107
|
+
render: render$86
|
|
15108
|
+
}, _hoisted_1$103 = {
|
|
15063
15109
|
viewBox: "0 0 24 24",
|
|
15064
15110
|
width: "1.2em",
|
|
15065
15111
|
height: "1.2em"
|
|
15066
15112
|
};
|
|
15067
|
-
function render$
|
|
15068
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15113
|
+
function render$85(e, t) {
|
|
15114
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$103, [...t[0] ||= [createBaseVNode("path", {
|
|
15069
15115
|
fill: "none",
|
|
15070
15116
|
stroke: "currentColor",
|
|
15071
15117
|
"stroke-linecap": "round",
|
|
@@ -15076,14 +15122,14 @@ function render$82(e, t) {
|
|
|
15076
15122
|
}
|
|
15077
15123
|
var menu_default = {
|
|
15078
15124
|
name: "lucide-menu",
|
|
15079
|
-
render: render$
|
|
15080
|
-
}, _hoisted_1$
|
|
15125
|
+
render: render$85
|
|
15126
|
+
}, _hoisted_1$102 = {
|
|
15081
15127
|
viewBox: "0 0 24 24",
|
|
15082
15128
|
width: "1.2em",
|
|
15083
15129
|
height: "1.2em"
|
|
15084
15130
|
};
|
|
15085
|
-
function render$
|
|
15086
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15131
|
+
function render$84(e, t) {
|
|
15132
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$102, [...t[0] ||= [createBaseVNode("path", {
|
|
15087
15133
|
fill: "none",
|
|
15088
15134
|
stroke: "currentColor",
|
|
15089
15135
|
"stroke-linecap": "round",
|
|
@@ -15094,14 +15140,14 @@ function render$81(e, t) {
|
|
|
15094
15140
|
}
|
|
15095
15141
|
var message_circle_default = {
|
|
15096
15142
|
name: "lucide-message-circle",
|
|
15097
|
-
render: render$
|
|
15098
|
-
}, _hoisted_1$
|
|
15143
|
+
render: render$84
|
|
15144
|
+
}, _hoisted_1$101 = {
|
|
15099
15145
|
viewBox: "0 0 24 24",
|
|
15100
15146
|
width: "1.2em",
|
|
15101
15147
|
height: "1.2em"
|
|
15102
15148
|
};
|
|
15103
|
-
function render$
|
|
15104
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15149
|
+
function render$83(e, t) {
|
|
15150
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$101, [...t[0] ||= [createBaseVNode("path", {
|
|
15105
15151
|
fill: "none",
|
|
15106
15152
|
stroke: "currentColor",
|
|
15107
15153
|
"stroke-linecap": "round",
|
|
@@ -15112,14 +15158,14 @@ function render$80(e, t) {
|
|
|
15112
15158
|
}
|
|
15113
15159
|
var message_square_default = {
|
|
15114
15160
|
name: "lucide-message-square",
|
|
15115
|
-
render: render$
|
|
15116
|
-
}, _hoisted_1$
|
|
15161
|
+
render: render$83
|
|
15162
|
+
}, _hoisted_1$100 = {
|
|
15117
15163
|
viewBox: "0 0 24 24",
|
|
15118
15164
|
width: "1.2em",
|
|
15119
15165
|
height: "1.2em"
|
|
15120
15166
|
};
|
|
15121
|
-
function render$
|
|
15122
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15167
|
+
function render$82(e, t) {
|
|
15168
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$100, [...t[0] ||= [createBaseVNode("path", {
|
|
15123
15169
|
fill: "none",
|
|
15124
15170
|
stroke: "currentColor",
|
|
15125
15171
|
"stroke-linecap": "round",
|
|
@@ -15130,14 +15176,14 @@ function render$79(e, t) {
|
|
|
15130
15176
|
}
|
|
15131
15177
|
var message_square_plus_default = {
|
|
15132
15178
|
name: "lucide-message-square-plus",
|
|
15133
|
-
render: render$
|
|
15134
|
-
}, _hoisted_1$
|
|
15179
|
+
render: render$82
|
|
15180
|
+
}, _hoisted_1$99 = {
|
|
15135
15181
|
viewBox: "0 0 24 24",
|
|
15136
15182
|
width: "1.2em",
|
|
15137
15183
|
height: "1.2em"
|
|
15138
15184
|
};
|
|
15139
|
-
function render$
|
|
15140
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15185
|
+
function render$81(e, t) {
|
|
15186
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$99, [...t[0] ||= [createBaseVNode("path", {
|
|
15141
15187
|
fill: "none",
|
|
15142
15188
|
stroke: "currentColor",
|
|
15143
15189
|
"stroke-linecap": "round",
|
|
@@ -15148,14 +15194,14 @@ function render$78(e, t) {
|
|
|
15148
15194
|
}
|
|
15149
15195
|
var messages_square_default = {
|
|
15150
15196
|
name: "lucide-messages-square",
|
|
15151
|
-
render: render$
|
|
15152
|
-
}, _hoisted_1$
|
|
15197
|
+
render: render$81
|
|
15198
|
+
}, _hoisted_1$98 = {
|
|
15153
15199
|
viewBox: "0 0 24 24",
|
|
15154
15200
|
width: "1.2em",
|
|
15155
15201
|
height: "1.2em"
|
|
15156
15202
|
};
|
|
15157
|
-
function render$
|
|
15158
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15203
|
+
function render$80(e, t) {
|
|
15204
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$98, [...t[0] ||= [createBaseVNode("g", {
|
|
15159
15205
|
fill: "none",
|
|
15160
15206
|
stroke: "currentColor",
|
|
15161
15207
|
"stroke-linecap": "round",
|
|
@@ -15171,14 +15217,14 @@ function render$77(e, t) {
|
|
|
15171
15217
|
}
|
|
15172
15218
|
var mic_default = {
|
|
15173
15219
|
name: "lucide-mic",
|
|
15174
|
-
render: render$
|
|
15175
|
-
}, _hoisted_1$
|
|
15220
|
+
render: render$80
|
|
15221
|
+
}, _hoisted_1$97 = {
|
|
15176
15222
|
viewBox: "0 0 24 24",
|
|
15177
15223
|
width: "1.2em",
|
|
15178
15224
|
height: "1.2em"
|
|
15179
15225
|
};
|
|
15180
|
-
function render$
|
|
15181
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15226
|
+
function render$79(e, t) {
|
|
15227
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$97, [...t[0] ||= [createBaseVNode("path", {
|
|
15182
15228
|
fill: "none",
|
|
15183
15229
|
stroke: "currentColor",
|
|
15184
15230
|
"stroke-linecap": "round",
|
|
@@ -15189,14 +15235,14 @@ function render$76(e, t) {
|
|
|
15189
15235
|
}
|
|
15190
15236
|
var milestone_default = {
|
|
15191
15237
|
name: "lucide-milestone",
|
|
15192
|
-
render: render$
|
|
15193
|
-
}, _hoisted_1$
|
|
15238
|
+
render: render$79
|
|
15239
|
+
}, _hoisted_1$96 = {
|
|
15194
15240
|
viewBox: "0 0 24 24",
|
|
15195
15241
|
width: "1.2em",
|
|
15196
15242
|
height: "1.2em"
|
|
15197
15243
|
};
|
|
15198
|
-
function render$
|
|
15199
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15244
|
+
function render$78(e, t) {
|
|
15245
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$96, [...t[0] ||= [createBaseVNode("path", {
|
|
15200
15246
|
fill: "none",
|
|
15201
15247
|
stroke: "currentColor",
|
|
15202
15248
|
"stroke-linecap": "round",
|
|
@@ -15207,14 +15253,14 @@ function render$75(e, t) {
|
|
|
15207
15253
|
}
|
|
15208
15254
|
var minimize_2_default = {
|
|
15209
15255
|
name: "lucide-minimize-2",
|
|
15210
|
-
render: render$
|
|
15211
|
-
}, _hoisted_1$
|
|
15256
|
+
render: render$78
|
|
15257
|
+
}, _hoisted_1$95 = {
|
|
15212
15258
|
viewBox: "0 0 24 24",
|
|
15213
15259
|
width: "1.2em",
|
|
15214
15260
|
height: "1.2em"
|
|
15215
15261
|
};
|
|
15216
|
-
function render$
|
|
15217
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15262
|
+
function render$77(e, t) {
|
|
15263
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$95, [...t[0] ||= [createBaseVNode("path", {
|
|
15218
15264
|
fill: "none",
|
|
15219
15265
|
stroke: "currentColor",
|
|
15220
15266
|
"stroke-linecap": "round",
|
|
@@ -15225,14 +15271,14 @@ function render$74(e, t) {
|
|
|
15225
15271
|
}
|
|
15226
15272
|
var minus_default = {
|
|
15227
15273
|
name: "lucide-minus",
|
|
15228
|
-
render: render$
|
|
15229
|
-
}, _hoisted_1$
|
|
15274
|
+
render: render$77
|
|
15275
|
+
}, _hoisted_1$94 = {
|
|
15230
15276
|
viewBox: "0 0 24 24",
|
|
15231
15277
|
width: "1.2em",
|
|
15232
15278
|
height: "1.2em"
|
|
15233
15279
|
};
|
|
15234
|
-
function render$
|
|
15235
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15280
|
+
function render$76(e, t) {
|
|
15281
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$94, [...t[0] ||= [createBaseVNode("path", {
|
|
15236
15282
|
fill: "none",
|
|
15237
15283
|
stroke: "currentColor",
|
|
15238
15284
|
"stroke-linecap": "round",
|
|
@@ -15243,25 +15289,25 @@ function render$73(e, t) {
|
|
|
15243
15289
|
}
|
|
15244
15290
|
var mouse_pointer_default = {
|
|
15245
15291
|
name: "lucide-mouse-pointer",
|
|
15246
|
-
render: render$
|
|
15247
|
-
}, _hoisted_1$
|
|
15292
|
+
render: render$76
|
|
15293
|
+
}, _hoisted_1$93 = {
|
|
15248
15294
|
viewBox: "0 0 24 24",
|
|
15249
15295
|
width: "1.2em",
|
|
15250
15296
|
height: "1.2em"
|
|
15251
15297
|
};
|
|
15252
|
-
function render$
|
|
15253
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15298
|
+
function render$75(e, t) {
|
|
15299
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$93, [...t[0] ||= [createStaticVNode("<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><rect width=\"6\" height=\"6\" x=\"16\" y=\"16\" rx=\"1\"></rect><rect width=\"6\" height=\"6\" x=\"2\" y=\"16\" rx=\"1\"></rect><rect width=\"6\" height=\"6\" x=\"9\" y=\"2\" rx=\"1\"></rect><path d=\"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3m-7-4V8\"></path></g>", 1)]]);
|
|
15254
15300
|
}
|
|
15255
15301
|
var network_default = {
|
|
15256
15302
|
name: "lucide-network",
|
|
15257
|
-
render: render$
|
|
15258
|
-
}, _hoisted_1$
|
|
15303
|
+
render: render$75
|
|
15304
|
+
}, _hoisted_1$92 = {
|
|
15259
15305
|
viewBox: "0 0 24 24",
|
|
15260
15306
|
width: "1.2em",
|
|
15261
15307
|
height: "1.2em"
|
|
15262
15308
|
};
|
|
15263
|
-
function render$
|
|
15264
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15309
|
+
function render$74(e, t) {
|
|
15310
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$92, [...t[0] ||= [createBaseVNode("g", {
|
|
15265
15311
|
fill: "none",
|
|
15266
15312
|
stroke: "currentColor",
|
|
15267
15313
|
"stroke-linecap": "round",
|
|
@@ -15271,14 +15317,14 @@ function render$71(e, t) {
|
|
|
15271
15317
|
}
|
|
15272
15318
|
var notebook_pen_default = {
|
|
15273
15319
|
name: "lucide-notebook-pen",
|
|
15274
|
-
render: render$
|
|
15275
|
-
}, _hoisted_1$
|
|
15320
|
+
render: render$74
|
|
15321
|
+
}, _hoisted_1$91 = {
|
|
15276
15322
|
viewBox: "0 0 24 24",
|
|
15277
15323
|
width: "1.2em",
|
|
15278
15324
|
height: "1.2em"
|
|
15279
15325
|
};
|
|
15280
|
-
function render$
|
|
15281
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15326
|
+
function render$73(e, t) {
|
|
15327
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$91, [...t[0] ||= [createBaseVNode("g", {
|
|
15282
15328
|
fill: "none",
|
|
15283
15329
|
stroke: "currentColor",
|
|
15284
15330
|
"stroke-linecap": "round",
|
|
@@ -15292,25 +15338,25 @@ function render$70(e, t) {
|
|
|
15292
15338
|
}
|
|
15293
15339
|
var package_open_default = {
|
|
15294
15340
|
name: "lucide-package-open",
|
|
15295
|
-
render: render$
|
|
15296
|
-
}, _hoisted_1$
|
|
15341
|
+
render: render$73
|
|
15342
|
+
}, _hoisted_1$90 = {
|
|
15297
15343
|
viewBox: "0 0 24 24",
|
|
15298
15344
|
width: "1.2em",
|
|
15299
15345
|
height: "1.2em"
|
|
15300
15346
|
};
|
|
15301
|
-
function render$
|
|
15302
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15347
|
+
function render$72(e, t) {
|
|
15348
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$90, [...t[0] ||= [createStaticVNode("<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><path d=\"M12 22a1 1 0 0 1 0-20a10 9 0 0 1 10 9a5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z\"></path><circle cx=\"13.5\" cy=\"6.5\" r=\".5\" fill=\"currentColor\"></circle><circle cx=\"17.5\" cy=\"10.5\" r=\".5\" fill=\"currentColor\"></circle><circle cx=\"6.5\" cy=\"12.5\" r=\".5\" fill=\"currentColor\"></circle><circle cx=\"8.5\" cy=\"7.5\" r=\".5\" fill=\"currentColor\"></circle></g>", 1)]]);
|
|
15303
15349
|
}
|
|
15304
15350
|
var palette_default = {
|
|
15305
15351
|
name: "lucide-palette",
|
|
15306
|
-
render: render$
|
|
15307
|
-
}, _hoisted_1$
|
|
15352
|
+
render: render$72
|
|
15353
|
+
}, _hoisted_1$89 = {
|
|
15308
15354
|
viewBox: "0 0 24 24",
|
|
15309
15355
|
width: "1.2em",
|
|
15310
15356
|
height: "1.2em"
|
|
15311
15357
|
};
|
|
15312
|
-
function render$
|
|
15313
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15358
|
+
function render$71(e, t) {
|
|
15359
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$89, [...t[0] ||= [createBaseVNode("g", {
|
|
15314
15360
|
fill: "none",
|
|
15315
15361
|
stroke: "currentColor",
|
|
15316
15362
|
"stroke-linecap": "round",
|
|
@@ -15326,14 +15372,14 @@ function render$68(e, t) {
|
|
|
15326
15372
|
}
|
|
15327
15373
|
var panel_left_default = {
|
|
15328
15374
|
name: "lucide-panel-left",
|
|
15329
|
-
render: render$
|
|
15330
|
-
}, _hoisted_1$
|
|
15375
|
+
render: render$71
|
|
15376
|
+
}, _hoisted_1$88 = {
|
|
15331
15377
|
viewBox: "0 0 24 24",
|
|
15332
15378
|
width: "1.2em",
|
|
15333
15379
|
height: "1.2em"
|
|
15334
15380
|
};
|
|
15335
|
-
function render$
|
|
15336
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15381
|
+
function render$70(e, t) {
|
|
15382
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$88, [...t[0] ||= [createBaseVNode("g", {
|
|
15337
15383
|
fill: "none",
|
|
15338
15384
|
stroke: "currentColor",
|
|
15339
15385
|
"stroke-linecap": "round",
|
|
@@ -15349,14 +15395,14 @@ function render$67(e, t) {
|
|
|
15349
15395
|
}
|
|
15350
15396
|
var panel_right_default = {
|
|
15351
15397
|
name: "lucide-panel-right",
|
|
15352
|
-
render: render$
|
|
15353
|
-
}, _hoisted_1$
|
|
15398
|
+
render: render$70
|
|
15399
|
+
}, _hoisted_1$87 = {
|
|
15354
15400
|
viewBox: "0 0 24 24",
|
|
15355
15401
|
width: "1.2em",
|
|
15356
15402
|
height: "1.2em"
|
|
15357
15403
|
};
|
|
15358
|
-
function render$
|
|
15359
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15404
|
+
function render$69(e, t) {
|
|
15405
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$87, [...t[0] ||= [createBaseVNode("path", {
|
|
15360
15406
|
fill: "none",
|
|
15361
15407
|
stroke: "currentColor",
|
|
15362
15408
|
"stroke-linecap": "round",
|
|
@@ -15367,14 +15413,14 @@ function render$66(e, t) {
|
|
|
15367
15413
|
}
|
|
15368
15414
|
var paperclip_default = {
|
|
15369
15415
|
name: "lucide-paperclip",
|
|
15370
|
-
render: render$
|
|
15371
|
-
}, _hoisted_1$
|
|
15416
|
+
render: render$69
|
|
15417
|
+
}, _hoisted_1$86 = {
|
|
15372
15418
|
viewBox: "0 0 24 24",
|
|
15373
15419
|
width: "1.2em",
|
|
15374
15420
|
height: "1.2em"
|
|
15375
15421
|
};
|
|
15376
|
-
function render$
|
|
15377
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15422
|
+
function render$68(e, t) {
|
|
15423
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$86, [...t[0] ||= [createBaseVNode("g", {
|
|
15378
15424
|
fill: "none",
|
|
15379
15425
|
stroke: "currentColor",
|
|
15380
15426
|
"stroke-linecap": "round",
|
|
@@ -15396,14 +15442,14 @@ function render$65(e, t) {
|
|
|
15396
15442
|
}
|
|
15397
15443
|
var pause_default = {
|
|
15398
15444
|
name: "lucide-pause",
|
|
15399
|
-
render: render$
|
|
15400
|
-
}, _hoisted_1$
|
|
15445
|
+
render: render$68
|
|
15446
|
+
}, _hoisted_1$85 = {
|
|
15401
15447
|
viewBox: "0 0 24 24",
|
|
15402
15448
|
width: "1.2em",
|
|
15403
15449
|
height: "1.2em"
|
|
15404
15450
|
};
|
|
15405
|
-
function render$
|
|
15406
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15451
|
+
function render$67(e, t) {
|
|
15452
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$85, [...t[0] ||= [createBaseVNode("path", {
|
|
15407
15453
|
fill: "none",
|
|
15408
15454
|
stroke: "currentColor",
|
|
15409
15455
|
"stroke-linecap": "round",
|
|
@@ -15414,14 +15460,14 @@ function render$64(e, t) {
|
|
|
15414
15460
|
}
|
|
15415
15461
|
var pen_default = {
|
|
15416
15462
|
name: "lucide-pen",
|
|
15417
|
-
render: render$
|
|
15418
|
-
}, _hoisted_1$
|
|
15463
|
+
render: render$67
|
|
15464
|
+
}, _hoisted_1$84 = {
|
|
15419
15465
|
viewBox: "0 0 24 24",
|
|
15420
15466
|
width: "1.2em",
|
|
15421
15467
|
height: "1.2em"
|
|
15422
15468
|
};
|
|
15423
|
-
function render$
|
|
15424
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15469
|
+
function render$66(e, t) {
|
|
15470
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$84, [...t[0] ||= [createBaseVNode("path", {
|
|
15425
15471
|
fill: "none",
|
|
15426
15472
|
stroke: "currentColor",
|
|
15427
15473
|
"stroke-linecap": "round",
|
|
@@ -15432,14 +15478,14 @@ function render$63(e, t) {
|
|
|
15432
15478
|
}
|
|
15433
15479
|
var pencil_default = {
|
|
15434
15480
|
name: "lucide-pencil",
|
|
15435
|
-
render: render$
|
|
15436
|
-
}, _hoisted_1$
|
|
15481
|
+
render: render$66
|
|
15482
|
+
}, _hoisted_1$83 = {
|
|
15437
15483
|
viewBox: "0 0 24 24",
|
|
15438
15484
|
width: "1.2em",
|
|
15439
15485
|
height: "1.2em"
|
|
15440
15486
|
};
|
|
15441
|
-
function render$
|
|
15442
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15487
|
+
function render$65(e, t) {
|
|
15488
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$83, [...t[0] ||= [createBaseVNode("path", {
|
|
15443
15489
|
fill: "none",
|
|
15444
15490
|
stroke: "currentColor",
|
|
15445
15491
|
"stroke-linecap": "round",
|
|
@@ -15450,14 +15496,14 @@ function render$62(e, t) {
|
|
|
15450
15496
|
}
|
|
15451
15497
|
var pin_default = {
|
|
15452
15498
|
name: "lucide-pin",
|
|
15453
|
-
render: render$
|
|
15454
|
-
}, _hoisted_1$
|
|
15499
|
+
render: render$65
|
|
15500
|
+
}, _hoisted_1$82 = {
|
|
15455
15501
|
viewBox: "0 0 24 24",
|
|
15456
15502
|
width: "1.2em",
|
|
15457
15503
|
height: "1.2em"
|
|
15458
15504
|
};
|
|
15459
|
-
function render$
|
|
15460
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15505
|
+
function render$64(e, t) {
|
|
15506
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$82, [...t[0] ||= [createBaseVNode("path", {
|
|
15461
15507
|
fill: "none",
|
|
15462
15508
|
stroke: "currentColor",
|
|
15463
15509
|
"stroke-linecap": "round",
|
|
@@ -15468,14 +15514,14 @@ function render$61(e, t) {
|
|
|
15468
15514
|
}
|
|
15469
15515
|
var play_default = {
|
|
15470
15516
|
name: "lucide-play",
|
|
15471
|
-
render: render$
|
|
15472
|
-
}, _hoisted_1$
|
|
15517
|
+
render: render$64
|
|
15518
|
+
}, _hoisted_1$81 = {
|
|
15473
15519
|
viewBox: "0 0 24 24",
|
|
15474
15520
|
width: "1.2em",
|
|
15475
15521
|
height: "1.2em"
|
|
15476
15522
|
};
|
|
15477
|
-
function render$
|
|
15478
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15523
|
+
function render$63(e, t) {
|
|
15524
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$81, [...t[0] ||= [createBaseVNode("path", {
|
|
15479
15525
|
fill: "none",
|
|
15480
15526
|
stroke: "currentColor",
|
|
15481
15527
|
"stroke-linecap": "round",
|
|
@@ -15486,14 +15532,14 @@ function render$60(e, t) {
|
|
|
15486
15532
|
}
|
|
15487
15533
|
var plug_default = {
|
|
15488
15534
|
name: "lucide-plug",
|
|
15489
|
-
render: render$
|
|
15490
|
-
}, _hoisted_1$
|
|
15535
|
+
render: render$63
|
|
15536
|
+
}, _hoisted_1$80 = {
|
|
15491
15537
|
viewBox: "0 0 24 24",
|
|
15492
15538
|
width: "1.2em",
|
|
15493
15539
|
height: "1.2em"
|
|
15494
15540
|
};
|
|
15495
|
-
function render$
|
|
15496
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15541
|
+
function render$62(e, t) {
|
|
15542
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$80, [...t[0] ||= [createBaseVNode("path", {
|
|
15497
15543
|
fill: "none",
|
|
15498
15544
|
stroke: "currentColor",
|
|
15499
15545
|
"stroke-linecap": "round",
|
|
@@ -15504,14 +15550,14 @@ function render$59(e, t) {
|
|
|
15504
15550
|
}
|
|
15505
15551
|
var plus_default = {
|
|
15506
15552
|
name: "lucide-plus",
|
|
15507
|
-
render: render$
|
|
15508
|
-
}, _hoisted_1$
|
|
15553
|
+
render: render$62
|
|
15554
|
+
}, _hoisted_1$79 = {
|
|
15509
15555
|
viewBox: "0 0 24 24",
|
|
15510
15556
|
width: "1.2em",
|
|
15511
15557
|
height: "1.2em"
|
|
15512
15558
|
};
|
|
15513
|
-
function render$
|
|
15514
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15559
|
+
function render$61(e, t) {
|
|
15560
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$79, [...t[0] ||= [createBaseVNode("g", {
|
|
15515
15561
|
fill: "none",
|
|
15516
15562
|
stroke: "currentColor",
|
|
15517
15563
|
"stroke-linecap": "round",
|
|
@@ -15521,14 +15567,14 @@ function render$58(e, t) {
|
|
|
15521
15567
|
}
|
|
15522
15568
|
var pocket_knife_default = {
|
|
15523
15569
|
name: "lucide-pocket-knife",
|
|
15524
|
-
render: render$
|
|
15525
|
-
}, _hoisted_1$
|
|
15570
|
+
render: render$61
|
|
15571
|
+
}, _hoisted_1$78 = {
|
|
15526
15572
|
viewBox: "0 0 24 24",
|
|
15527
15573
|
width: "1.2em",
|
|
15528
15574
|
height: "1.2em"
|
|
15529
15575
|
};
|
|
15530
|
-
function render$
|
|
15531
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15576
|
+
function render$60(e, t) {
|
|
15577
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$78, [...t[0] ||= [createBaseVNode("path", {
|
|
15532
15578
|
fill: "none",
|
|
15533
15579
|
stroke: "currentColor",
|
|
15534
15580
|
"stroke-linecap": "round",
|
|
@@ -15539,14 +15585,14 @@ function render$57(e, t) {
|
|
|
15539
15585
|
}
|
|
15540
15586
|
var power_default = {
|
|
15541
15587
|
name: "lucide-power",
|
|
15542
|
-
render: render$
|
|
15543
|
-
}, _hoisted_1$
|
|
15588
|
+
render: render$60
|
|
15589
|
+
}, _hoisted_1$77 = {
|
|
15544
15590
|
viewBox: "0 0 24 24",
|
|
15545
15591
|
width: "1.2em",
|
|
15546
15592
|
height: "1.2em"
|
|
15547
15593
|
};
|
|
15548
|
-
function render$
|
|
15549
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15594
|
+
function render$59(e, t) {
|
|
15595
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$77, [...t[0] ||= [createBaseVNode("g", {
|
|
15550
15596
|
fill: "none",
|
|
15551
15597
|
stroke: "currentColor",
|
|
15552
15598
|
"stroke-linecap": "round",
|
|
@@ -15556,14 +15602,14 @@ function render$56(e, t) {
|
|
|
15556
15602
|
}
|
|
15557
15603
|
var redo_2_default = {
|
|
15558
15604
|
name: "lucide-redo-2",
|
|
15559
|
-
render: render$
|
|
15560
|
-
}, _hoisted_1$
|
|
15605
|
+
render: render$59
|
|
15606
|
+
}, _hoisted_1$76 = {
|
|
15561
15607
|
viewBox: "0 0 24 24",
|
|
15562
15608
|
width: "1.2em",
|
|
15563
15609
|
height: "1.2em"
|
|
15564
15610
|
};
|
|
15565
|
-
function render$
|
|
15566
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15611
|
+
function render$58(e, t) {
|
|
15612
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$76, [...t[0] ||= [createBaseVNode("g", {
|
|
15567
15613
|
fill: "none",
|
|
15568
15614
|
stroke: "currentColor",
|
|
15569
15615
|
"stroke-linecap": "round",
|
|
@@ -15577,14 +15623,14 @@ function render$55(e, t) {
|
|
|
15577
15623
|
}
|
|
15578
15624
|
var refresh_cw_default = {
|
|
15579
15625
|
name: "lucide-refresh-cw",
|
|
15580
|
-
render: render$
|
|
15581
|
-
}, _hoisted_1$
|
|
15626
|
+
render: render$58
|
|
15627
|
+
}, _hoisted_1$75 = {
|
|
15582
15628
|
viewBox: "0 0 24 24",
|
|
15583
15629
|
width: "1.2em",
|
|
15584
15630
|
height: "1.2em"
|
|
15585
15631
|
};
|
|
15586
|
-
function render$
|
|
15587
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15632
|
+
function render$57(e, t) {
|
|
15633
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$75, [...t[0] ||= [createBaseVNode("path", {
|
|
15588
15634
|
fill: "none",
|
|
15589
15635
|
stroke: "currentColor",
|
|
15590
15636
|
"stroke-linecap": "round",
|
|
@@ -15595,14 +15641,14 @@ function render$54(e, t) {
|
|
|
15595
15641
|
}
|
|
15596
15642
|
var remove_formatting_default = {
|
|
15597
15643
|
name: "lucide-remove-formatting",
|
|
15598
|
-
render: render$
|
|
15599
|
-
}, _hoisted_1$
|
|
15644
|
+
render: render$57
|
|
15645
|
+
}, _hoisted_1$74 = {
|
|
15600
15646
|
viewBox: "0 0 24 24",
|
|
15601
15647
|
width: "1.2em",
|
|
15602
15648
|
height: "1.2em"
|
|
15603
15649
|
};
|
|
15604
|
-
function render$
|
|
15605
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15650
|
+
function render$56(e, t) {
|
|
15651
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$74, [...t[0] ||= [createBaseVNode("g", {
|
|
15606
15652
|
fill: "none",
|
|
15607
15653
|
stroke: "currentColor",
|
|
15608
15654
|
"stroke-linecap": "round",
|
|
@@ -15616,14 +15662,14 @@ function render$53(e, t) {
|
|
|
15616
15662
|
}
|
|
15617
15663
|
var rss_default = {
|
|
15618
15664
|
name: "lucide-rss",
|
|
15619
|
-
render: render$
|
|
15620
|
-
}, _hoisted_1$
|
|
15665
|
+
render: render$56
|
|
15666
|
+
}, _hoisted_1$73 = {
|
|
15621
15667
|
viewBox: "0 0 24 24",
|
|
15622
15668
|
width: "1.2em",
|
|
15623
15669
|
height: "1.2em"
|
|
15624
15670
|
};
|
|
15625
|
-
function render$
|
|
15626
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15671
|
+
function render$55(e, t) {
|
|
15672
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$73, [...t[0] ||= [createBaseVNode("path", {
|
|
15627
15673
|
fill: "none",
|
|
15628
15674
|
stroke: "currentColor",
|
|
15629
15675
|
"stroke-linecap": "round",
|
|
@@ -15634,14 +15680,14 @@ function render$52(e, t) {
|
|
|
15634
15680
|
}
|
|
15635
15681
|
var satellite_dish_default = {
|
|
15636
15682
|
name: "lucide-satellite-dish",
|
|
15637
|
-
render: render$
|
|
15638
|
-
}, _hoisted_1$
|
|
15683
|
+
render: render$55
|
|
15684
|
+
}, _hoisted_1$72 = {
|
|
15639
15685
|
viewBox: "0 0 24 24",
|
|
15640
15686
|
width: "1.2em",
|
|
15641
15687
|
height: "1.2em"
|
|
15642
15688
|
};
|
|
15643
|
-
function render$
|
|
15644
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15689
|
+
function render$54(e, t) {
|
|
15690
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$72, [...t[0] ||= [createBaseVNode("g", {
|
|
15645
15691
|
fill: "none",
|
|
15646
15692
|
stroke: "currentColor",
|
|
15647
15693
|
"stroke-linecap": "round",
|
|
@@ -15651,14 +15697,14 @@ function render$51(e, t) {
|
|
|
15651
15697
|
}
|
|
15652
15698
|
var save_default = {
|
|
15653
15699
|
name: "lucide-save",
|
|
15654
|
-
render: render$
|
|
15655
|
-
}, _hoisted_1$
|
|
15700
|
+
render: render$54
|
|
15701
|
+
}, _hoisted_1$71 = {
|
|
15656
15702
|
viewBox: "0 0 24 24",
|
|
15657
15703
|
width: "1.2em",
|
|
15658
15704
|
height: "1.2em"
|
|
15659
15705
|
};
|
|
15660
|
-
function render$
|
|
15661
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15706
|
+
function render$53(e, t) {
|
|
15707
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$71, [...t[0] ||= [createBaseVNode("path", {
|
|
15662
15708
|
fill: "none",
|
|
15663
15709
|
stroke: "currentColor",
|
|
15664
15710
|
"stroke-linecap": "round",
|
|
@@ -15669,25 +15715,25 @@ function render$50(e, t) {
|
|
|
15669
15715
|
}
|
|
15670
15716
|
var scale_default = {
|
|
15671
15717
|
name: "lucide-scale",
|
|
15672
|
-
render: render$
|
|
15673
|
-
}, _hoisted_1$
|
|
15718
|
+
render: render$53
|
|
15719
|
+
}, _hoisted_1$70 = {
|
|
15674
15720
|
viewBox: "0 0 24 24",
|
|
15675
15721
|
width: "1.2em",
|
|
15676
15722
|
height: "1.2em"
|
|
15677
15723
|
};
|
|
15678
|
-
function render$
|
|
15679
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15724
|
+
function render$52(e, t) {
|
|
15725
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$70, [...t[0] ||= [createStaticVNode("<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><circle cx=\"6\" cy=\"6\" r=\"3\"></circle><path d=\"M8.12 8.12L12 12m8-8L8.12 15.88\"></path><circle cx=\"6\" cy=\"18\" r=\"3\"></circle><path d=\"M14.8 14.8L20 20\"></path></g>", 1)]]);
|
|
15680
15726
|
}
|
|
15681
15727
|
var scissors_default = {
|
|
15682
15728
|
name: "lucide-scissors",
|
|
15683
|
-
render: render$
|
|
15684
|
-
}, _hoisted_1$
|
|
15729
|
+
render: render$52
|
|
15730
|
+
}, _hoisted_1$69 = {
|
|
15685
15731
|
viewBox: "0 0 24 24",
|
|
15686
15732
|
width: "1.2em",
|
|
15687
15733
|
height: "1.2em"
|
|
15688
15734
|
};
|
|
15689
|
-
function render$
|
|
15690
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15735
|
+
function render$51(e, t) {
|
|
15736
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$69, [...t[0] ||= [createBaseVNode("g", {
|
|
15691
15737
|
fill: "none",
|
|
15692
15738
|
stroke: "currentColor",
|
|
15693
15739
|
"stroke-linecap": "round",
|
|
@@ -15701,14 +15747,14 @@ function render$48(e, t) {
|
|
|
15701
15747
|
}
|
|
15702
15748
|
var search_default = {
|
|
15703
15749
|
name: "lucide-search",
|
|
15704
|
-
render: render$
|
|
15705
|
-
}, _hoisted_1$
|
|
15750
|
+
render: render$51
|
|
15751
|
+
}, _hoisted_1$68 = {
|
|
15706
15752
|
viewBox: "0 0 24 24",
|
|
15707
15753
|
width: "1.2em",
|
|
15708
15754
|
height: "1.2em"
|
|
15709
15755
|
};
|
|
15710
|
-
function render$
|
|
15711
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15756
|
+
function render$50(e, t) {
|
|
15757
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$68, [...t[0] ||= [createBaseVNode("path", {
|
|
15712
15758
|
fill: "none",
|
|
15713
15759
|
stroke: "currentColor",
|
|
15714
15760
|
"stroke-linecap": "round",
|
|
@@ -15719,14 +15765,14 @@ function render$47(e, t) {
|
|
|
15719
15765
|
}
|
|
15720
15766
|
var send_default = {
|
|
15721
15767
|
name: "lucide-send",
|
|
15722
|
-
render: render$
|
|
15723
|
-
}, _hoisted_1$
|
|
15768
|
+
render: render$50
|
|
15769
|
+
}, _hoisted_1$67 = {
|
|
15724
15770
|
viewBox: "0 0 24 24",
|
|
15725
15771
|
width: "1.2em",
|
|
15726
15772
|
height: "1.2em"
|
|
15727
15773
|
};
|
|
15728
|
-
function render$
|
|
15729
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15774
|
+
function render$49(e, t) {
|
|
15775
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$67, [...t[0] ||= [createBaseVNode("g", {
|
|
15730
15776
|
fill: "none",
|
|
15731
15777
|
stroke: "currentColor",
|
|
15732
15778
|
"stroke-linecap": "round",
|
|
@@ -15754,14 +15800,14 @@ function render$46(e, t) {
|
|
|
15754
15800
|
}
|
|
15755
15801
|
var server_default = {
|
|
15756
15802
|
name: "lucide-server",
|
|
15757
|
-
render: render$
|
|
15758
|
-
}, _hoisted_1$
|
|
15803
|
+
render: render$49
|
|
15804
|
+
}, _hoisted_1$66 = {
|
|
15759
15805
|
viewBox: "0 0 24 24",
|
|
15760
15806
|
width: "1.2em",
|
|
15761
15807
|
height: "1.2em"
|
|
15762
15808
|
};
|
|
15763
|
-
function render$
|
|
15764
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15809
|
+
function render$48(e, t) {
|
|
15810
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$66, [...t[0] ||= [createBaseVNode("g", {
|
|
15765
15811
|
fill: "none",
|
|
15766
15812
|
stroke: "currentColor",
|
|
15767
15813
|
"stroke-linecap": "round",
|
|
@@ -15775,14 +15821,14 @@ function render$45(e, t) {
|
|
|
15775
15821
|
}
|
|
15776
15822
|
var settings_default = {
|
|
15777
15823
|
name: "lucide-settings",
|
|
15778
|
-
render: render$
|
|
15779
|
-
}, _hoisted_1$
|
|
15824
|
+
render: render$48
|
|
15825
|
+
}, _hoisted_1$65 = {
|
|
15780
15826
|
viewBox: "0 0 24 24",
|
|
15781
15827
|
width: "1.2em",
|
|
15782
15828
|
height: "1.2em"
|
|
15783
15829
|
};
|
|
15784
|
-
function render$
|
|
15785
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15830
|
+
function render$47(e, t) {
|
|
15831
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$65, [...t[0] ||= [createBaseVNode("g", {
|
|
15786
15832
|
fill: "none",
|
|
15787
15833
|
stroke: "currentColor",
|
|
15788
15834
|
"stroke-linecap": "round",
|
|
@@ -15804,14 +15850,14 @@ function render$44(e, t) {
|
|
|
15804
15850
|
}
|
|
15805
15851
|
var settings_2_default = {
|
|
15806
15852
|
name: "lucide-settings-2",
|
|
15807
|
-
render: render$
|
|
15808
|
-
}, _hoisted_1$
|
|
15853
|
+
render: render$47
|
|
15854
|
+
}, _hoisted_1$64 = {
|
|
15809
15855
|
viewBox: "0 0 24 24",
|
|
15810
15856
|
width: "1.2em",
|
|
15811
15857
|
height: "1.2em"
|
|
15812
15858
|
};
|
|
15813
|
-
function render$
|
|
15814
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
15859
|
+
function render$46(e, t) {
|
|
15860
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$64, [...t[0] ||= [createBaseVNode("path", {
|
|
15815
15861
|
fill: "none",
|
|
15816
15862
|
stroke: "currentColor",
|
|
15817
15863
|
"stroke-linecap": "round",
|
|
@@ -15822,13 +15868,31 @@ function render$43(e, t) {
|
|
|
15822
15868
|
}
|
|
15823
15869
|
var share_default = {
|
|
15824
15870
|
name: "lucide-share",
|
|
15825
|
-
render: render$
|
|
15871
|
+
render: render$46
|
|
15872
|
+
}, _hoisted_1$63 = {
|
|
15873
|
+
viewBox: "0 0 24 24",
|
|
15874
|
+
width: "1.2em",
|
|
15875
|
+
height: "1.2em"
|
|
15876
|
+
};
|
|
15877
|
+
function render$45(e, t) {
|
|
15878
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$63, [...t[0] ||= [createBaseVNode("path", {
|
|
15879
|
+
fill: "none",
|
|
15880
|
+
stroke: "currentColor",
|
|
15881
|
+
"stroke-linecap": "round",
|
|
15882
|
+
"stroke-linejoin": "round",
|
|
15883
|
+
"stroke-width": "2",
|
|
15884
|
+
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 1zm-8 9V2"
|
|
15885
|
+
}, null, -1)]]);
|
|
15886
|
+
}
|
|
15887
|
+
var shield_half_default = {
|
|
15888
|
+
name: "lucide-shield-half",
|
|
15889
|
+
render: render$45
|
|
15826
15890
|
}, _hoisted_1$62 = {
|
|
15827
15891
|
viewBox: "0 0 24 24",
|
|
15828
15892
|
width: "1.2em",
|
|
15829
15893
|
height: "1.2em"
|
|
15830
15894
|
};
|
|
15831
|
-
function render$
|
|
15895
|
+
function render$44(e, t) {
|
|
15832
15896
|
return openBlock(), createElementBlock("svg", _hoisted_1$62, [...t[0] ||= [createBaseVNode("path", {
|
|
15833
15897
|
fill: "none",
|
|
15834
15898
|
stroke: "currentColor",
|
|
@@ -15840,13 +15904,13 @@ function render$42(e, t) {
|
|
|
15840
15904
|
}
|
|
15841
15905
|
var sliders_horizontal_default = {
|
|
15842
15906
|
name: "lucide-sliders-horizontal",
|
|
15843
|
-
render: render$
|
|
15907
|
+
render: render$44
|
|
15844
15908
|
}, _hoisted_1$61 = {
|
|
15845
15909
|
viewBox: "0 0 24 24",
|
|
15846
15910
|
width: "1.2em",
|
|
15847
15911
|
height: "1.2em"
|
|
15848
15912
|
};
|
|
15849
|
-
function render$
|
|
15913
|
+
function render$43(e, t) {
|
|
15850
15914
|
return openBlock(), createElementBlock("svg", _hoisted_1$61, [...t[0] ||= [createBaseVNode("g", {
|
|
15851
15915
|
fill: "none",
|
|
15852
15916
|
stroke: "currentColor",
|
|
@@ -15861,13 +15925,13 @@ function render$41(e, t) {
|
|
|
15861
15925
|
}
|
|
15862
15926
|
var smile_default = {
|
|
15863
15927
|
name: "lucide-smile",
|
|
15864
|
-
render: render$
|
|
15928
|
+
render: render$43
|
|
15865
15929
|
}, _hoisted_1$60 = {
|
|
15866
15930
|
viewBox: "0 0 24 24",
|
|
15867
15931
|
width: "1.2em",
|
|
15868
15932
|
height: "1.2em"
|
|
15869
15933
|
};
|
|
15870
|
-
function render$
|
|
15934
|
+
function render$42(e, t) {
|
|
15871
15935
|
return openBlock(), createElementBlock("svg", _hoisted_1$60, [...t[0] ||= [createBaseVNode("path", {
|
|
15872
15936
|
fill: "none",
|
|
15873
15937
|
stroke: "currentColor",
|
|
@@ -15879,13 +15943,13 @@ function render$40(e, t) {
|
|
|
15879
15943
|
}
|
|
15880
15944
|
var sparkles_default = {
|
|
15881
15945
|
name: "lucide-sparkles",
|
|
15882
|
-
render: render$
|
|
15946
|
+
render: render$42
|
|
15883
15947
|
}, _hoisted_1$59 = {
|
|
15884
15948
|
viewBox: "0 0 24 24",
|
|
15885
15949
|
width: "1.2em",
|
|
15886
15950
|
height: "1.2em"
|
|
15887
15951
|
};
|
|
15888
|
-
function render$
|
|
15952
|
+
function render$41(e, t) {
|
|
15889
15953
|
return openBlock(), createElementBlock("svg", _hoisted_1$59, [...t[0] ||= [createBaseVNode("g", {
|
|
15890
15954
|
fill: "none",
|
|
15891
15955
|
stroke: "currentColor",
|
|
@@ -15896,13 +15960,13 @@ function render$39(e, t) {
|
|
|
15896
15960
|
}
|
|
15897
15961
|
var split_default = {
|
|
15898
15962
|
name: "lucide-split",
|
|
15899
|
-
render: render$
|
|
15963
|
+
render: render$41
|
|
15900
15964
|
}, _hoisted_1$58 = {
|
|
15901
15965
|
viewBox: "0 0 24 24",
|
|
15902
15966
|
width: "1.2em",
|
|
15903
15967
|
height: "1.2em"
|
|
15904
15968
|
};
|
|
15905
|
-
function render$
|
|
15969
|
+
function render$40(e, t) {
|
|
15906
15970
|
return openBlock(), createElementBlock("svg", _hoisted_1$58, [...t[0] ||= [createBaseVNode("rect", {
|
|
15907
15971
|
width: "18",
|
|
15908
15972
|
height: "18",
|
|
@@ -15918,13 +15982,13 @@ function render$38(e, t) {
|
|
|
15918
15982
|
}
|
|
15919
15983
|
var square_default = {
|
|
15920
15984
|
name: "lucide-square",
|
|
15921
|
-
render: render$
|
|
15985
|
+
render: render$40
|
|
15922
15986
|
}, _hoisted_1$57 = {
|
|
15923
15987
|
viewBox: "0 0 24 24",
|
|
15924
15988
|
width: "1.2em",
|
|
15925
15989
|
height: "1.2em"
|
|
15926
15990
|
};
|
|
15927
|
-
function render$
|
|
15991
|
+
function render$39(e, t) {
|
|
15928
15992
|
return openBlock(), createElementBlock("svg", _hoisted_1$57, [...t[0] ||= [createBaseVNode("g", {
|
|
15929
15993
|
fill: "none",
|
|
15930
15994
|
stroke: "currentColor",
|
|
@@ -15941,13 +16005,13 @@ function render$37(e, t) {
|
|
|
15941
16005
|
}
|
|
15942
16006
|
var square_check_default = {
|
|
15943
16007
|
name: "lucide-square-check",
|
|
15944
|
-
render: render$
|
|
16008
|
+
render: render$39
|
|
15945
16009
|
}, _hoisted_1$56 = {
|
|
15946
16010
|
viewBox: "0 0 24 24",
|
|
15947
16011
|
width: "1.2em",
|
|
15948
16012
|
height: "1.2em"
|
|
15949
16013
|
};
|
|
15950
|
-
function render$
|
|
16014
|
+
function render$38(e, t) {
|
|
15951
16015
|
return openBlock(), createElementBlock("svg", _hoisted_1$56, [...t[0] ||= [createBaseVNode("g", {
|
|
15952
16016
|
fill: "none",
|
|
15953
16017
|
stroke: "currentColor",
|
|
@@ -15964,13 +16028,13 @@ function render$36(e, t) {
|
|
|
15964
16028
|
}
|
|
15965
16029
|
var square_minus_default = {
|
|
15966
16030
|
name: "lucide-square-minus",
|
|
15967
|
-
render: render$
|
|
16031
|
+
render: render$38
|
|
15968
16032
|
}, _hoisted_1$55 = {
|
|
15969
16033
|
viewBox: "0 0 24 24",
|
|
15970
16034
|
width: "1.2em",
|
|
15971
16035
|
height: "1.2em"
|
|
15972
16036
|
};
|
|
15973
|
-
function render$
|
|
16037
|
+
function render$37(e, t) {
|
|
15974
16038
|
return openBlock(), createElementBlock("svg", _hoisted_1$55, [...t[0] ||= [createBaseVNode("g", {
|
|
15975
16039
|
fill: "none",
|
|
15976
16040
|
stroke: "currentColor",
|
|
@@ -15981,13 +16045,13 @@ function render$35(e, t) {
|
|
|
15981
16045
|
}
|
|
15982
16046
|
var square_pen_default = {
|
|
15983
16047
|
name: "lucide-square-pen",
|
|
15984
|
-
render: render$
|
|
16048
|
+
render: render$37
|
|
15985
16049
|
}, _hoisted_1$54 = {
|
|
15986
16050
|
viewBox: "0 0 24 24",
|
|
15987
16051
|
width: "1.2em",
|
|
15988
16052
|
height: "1.2em"
|
|
15989
16053
|
};
|
|
15990
|
-
function render$
|
|
16054
|
+
function render$36(e, t) {
|
|
15991
16055
|
return openBlock(), createElementBlock("svg", _hoisted_1$54, [...t[0] ||= [createBaseVNode("g", {
|
|
15992
16056
|
fill: "none",
|
|
15993
16057
|
stroke: "currentColor",
|
|
@@ -16004,13 +16068,13 @@ function render$34(e, t) {
|
|
|
16004
16068
|
}
|
|
16005
16069
|
var square_plus_default = {
|
|
16006
16070
|
name: "lucide-square-plus",
|
|
16007
|
-
render: render$
|
|
16071
|
+
render: render$36
|
|
16008
16072
|
}, _hoisted_1$53 = {
|
|
16009
16073
|
viewBox: "0 0 24 24",
|
|
16010
16074
|
width: "1.2em",
|
|
16011
16075
|
height: "1.2em"
|
|
16012
16076
|
};
|
|
16013
|
-
function render$
|
|
16077
|
+
function render$35(e, t) {
|
|
16014
16078
|
return openBlock(), createElementBlock("svg", _hoisted_1$53, [...t[0] ||= [createBaseVNode("g", {
|
|
16015
16079
|
fill: "none",
|
|
16016
16080
|
stroke: "currentColor",
|
|
@@ -16021,13 +16085,13 @@ function render$33(e, t) {
|
|
|
16021
16085
|
}
|
|
16022
16086
|
var sticky_note_default = {
|
|
16023
16087
|
name: "lucide-sticky-note",
|
|
16024
|
-
render: render$
|
|
16088
|
+
render: render$35
|
|
16025
16089
|
}, _hoisted_1$52 = {
|
|
16026
16090
|
viewBox: "0 0 24 24",
|
|
16027
16091
|
width: "1.2em",
|
|
16028
16092
|
height: "1.2em"
|
|
16029
16093
|
};
|
|
16030
|
-
function render$
|
|
16094
|
+
function render$34(e, t) {
|
|
16031
16095
|
return openBlock(), createElementBlock("svg", _hoisted_1$52, [...t[0] ||= [createBaseVNode("g", {
|
|
16032
16096
|
fill: "none",
|
|
16033
16097
|
stroke: "currentColor",
|
|
@@ -16042,13 +16106,13 @@ function render$32(e, t) {
|
|
|
16042
16106
|
}
|
|
16043
16107
|
var sun_default = {
|
|
16044
16108
|
name: "lucide-sun",
|
|
16045
|
-
render: render$
|
|
16109
|
+
render: render$34
|
|
16046
16110
|
}, _hoisted_1$51 = {
|
|
16047
16111
|
viewBox: "0 0 24 24",
|
|
16048
16112
|
width: "1.2em",
|
|
16049
16113
|
height: "1.2em"
|
|
16050
16114
|
};
|
|
16051
|
-
function render$
|
|
16115
|
+
function render$33(e, t) {
|
|
16052
16116
|
return openBlock(), createElementBlock("svg", _hoisted_1$51, [...t[0] ||= [createBaseVNode("g", {
|
|
16053
16117
|
fill: "none",
|
|
16054
16118
|
stroke: "currentColor",
|
|
@@ -16069,13 +16133,13 @@ function render$31(e, t) {
|
|
|
16069
16133
|
}
|
|
16070
16134
|
var table_default = {
|
|
16071
16135
|
name: "lucide-table",
|
|
16072
|
-
render: render$
|
|
16136
|
+
render: render$33
|
|
16073
16137
|
}, _hoisted_1$50 = {
|
|
16074
16138
|
viewBox: "0 0 24 24",
|
|
16075
16139
|
width: "1.2em",
|
|
16076
16140
|
height: "1.2em"
|
|
16077
16141
|
};
|
|
16078
|
-
function render$
|
|
16142
|
+
function render$32(e, t) {
|
|
16079
16143
|
return openBlock(), createElementBlock("svg", _hoisted_1$50, [...t[0] ||= [createBaseVNode("g", {
|
|
16080
16144
|
fill: "none",
|
|
16081
16145
|
stroke: "currentColor",
|
|
@@ -16095,13 +16159,13 @@ function render$30(e, t) {
|
|
|
16095
16159
|
}
|
|
16096
16160
|
var tags_default = {
|
|
16097
16161
|
name: "lucide-tags",
|
|
16098
|
-
render: render$
|
|
16162
|
+
render: render$32
|
|
16099
16163
|
}, _hoisted_1$49 = {
|
|
16100
16164
|
viewBox: "0 0 24 24",
|
|
16101
16165
|
width: "1.2em",
|
|
16102
16166
|
height: "1.2em"
|
|
16103
16167
|
};
|
|
16104
|
-
function render$
|
|
16168
|
+
function render$31(e, t) {
|
|
16105
16169
|
return openBlock(), createElementBlock("svg", _hoisted_1$49, [...t[0] ||= [createBaseVNode("path", {
|
|
16106
16170
|
fill: "none",
|
|
16107
16171
|
stroke: "currentColor",
|
|
@@ -16113,13 +16177,13 @@ function render$29(e, t) {
|
|
|
16113
16177
|
}
|
|
16114
16178
|
var terminal_default = {
|
|
16115
16179
|
name: "lucide-terminal",
|
|
16116
|
-
render: render$
|
|
16180
|
+
render: render$31
|
|
16117
16181
|
}, _hoisted_1$48 = {
|
|
16118
16182
|
viewBox: "0 0 24 24",
|
|
16119
16183
|
width: "1.2em",
|
|
16120
16184
|
height: "1.2em"
|
|
16121
16185
|
};
|
|
16122
|
-
function render$
|
|
16186
|
+
function render$30(e, t) {
|
|
16123
16187
|
return openBlock(), createElementBlock("svg", _hoisted_1$48, [...t[0] ||= [createBaseVNode("path", {
|
|
16124
16188
|
fill: "none",
|
|
16125
16189
|
stroke: "currentColor",
|
|
@@ -16131,13 +16195,13 @@ function render$28(e, t) {
|
|
|
16131
16195
|
}
|
|
16132
16196
|
var thumbs_down_default = {
|
|
16133
16197
|
name: "lucide-thumbs-down",
|
|
16134
|
-
render: render$
|
|
16198
|
+
render: render$30
|
|
16135
16199
|
}, _hoisted_1$47 = {
|
|
16136
16200
|
viewBox: "0 0 24 24",
|
|
16137
16201
|
width: "1.2em",
|
|
16138
16202
|
height: "1.2em"
|
|
16139
16203
|
};
|
|
16140
|
-
function render$
|
|
16204
|
+
function render$29(e, t) {
|
|
16141
16205
|
return openBlock(), createElementBlock("svg", _hoisted_1$47, [...t[0] ||= [createBaseVNode("path", {
|
|
16142
16206
|
fill: "none",
|
|
16143
16207
|
stroke: "currentColor",
|
|
@@ -16149,13 +16213,13 @@ function render$27(e, t) {
|
|
|
16149
16213
|
}
|
|
16150
16214
|
var thumbs_up_default = {
|
|
16151
16215
|
name: "lucide-thumbs-up",
|
|
16152
|
-
render: render$
|
|
16216
|
+
render: render$29
|
|
16153
16217
|
}, _hoisted_1$46 = {
|
|
16154
16218
|
viewBox: "0 0 24 24",
|
|
16155
16219
|
width: "1.2em",
|
|
16156
16220
|
height: "1.2em"
|
|
16157
16221
|
};
|
|
16158
|
-
function render$
|
|
16222
|
+
function render$28(e, t) {
|
|
16159
16223
|
return openBlock(), createElementBlock("svg", _hoisted_1$46, [...t[0] ||= [createBaseVNode("g", {
|
|
16160
16224
|
fill: "none",
|
|
16161
16225
|
stroke: "currentColor",
|
|
@@ -16170,13 +16234,13 @@ function render$26(e, t) {
|
|
|
16170
16234
|
}
|
|
16171
16235
|
var timer_default = {
|
|
16172
16236
|
name: "lucide-timer",
|
|
16173
|
-
render: render$
|
|
16237
|
+
render: render$28
|
|
16174
16238
|
}, _hoisted_1$45 = {
|
|
16175
16239
|
viewBox: "0 0 24 24",
|
|
16176
16240
|
width: "1.2em",
|
|
16177
16241
|
height: "1.2em"
|
|
16178
16242
|
};
|
|
16179
|
-
function render$
|
|
16243
|
+
function render$27(e, t) {
|
|
16180
16244
|
return openBlock(), createElementBlock("svg", _hoisted_1$45, [...t[0] ||= [createBaseVNode("g", {
|
|
16181
16245
|
fill: "none",
|
|
16182
16246
|
stroke: "currentColor",
|
|
@@ -16197,13 +16261,13 @@ function render$25(e, t) {
|
|
|
16197
16261
|
}
|
|
16198
16262
|
var toggle_right_default = {
|
|
16199
16263
|
name: "lucide-toggle-right",
|
|
16200
|
-
render: render$
|
|
16264
|
+
render: render$27
|
|
16201
16265
|
}, _hoisted_1$44 = {
|
|
16202
16266
|
viewBox: "0 0 24 24",
|
|
16203
16267
|
width: "1.2em",
|
|
16204
16268
|
height: "1.2em"
|
|
16205
16269
|
};
|
|
16206
|
-
function render$
|
|
16270
|
+
function render$26(e, t) {
|
|
16207
16271
|
return openBlock(), createElementBlock("svg", _hoisted_1$44, [...t[0] ||= [createBaseVNode("path", {
|
|
16208
16272
|
fill: "none",
|
|
16209
16273
|
stroke: "currentColor",
|
|
@@ -16215,13 +16279,13 @@ function render$24(e, t) {
|
|
|
16215
16279
|
}
|
|
16216
16280
|
var trash_2_default = {
|
|
16217
16281
|
name: "lucide-trash-2",
|
|
16218
|
-
render: render$
|
|
16282
|
+
render: render$26
|
|
16219
16283
|
}, _hoisted_1$43 = {
|
|
16220
16284
|
viewBox: "0 0 24 24",
|
|
16221
16285
|
width: "1.2em",
|
|
16222
16286
|
height: "1.2em"
|
|
16223
16287
|
};
|
|
16224
|
-
function render$
|
|
16288
|
+
function render$25(e, t) {
|
|
16225
16289
|
return openBlock(), createElementBlock("svg", _hoisted_1$43, [...t[0] ||= [createBaseVNode("path", {
|
|
16226
16290
|
fill: "none",
|
|
16227
16291
|
stroke: "currentColor",
|
|
@@ -16233,13 +16297,13 @@ function render$23(e, t) {
|
|
|
16233
16297
|
}
|
|
16234
16298
|
var tree_pine_default = {
|
|
16235
16299
|
name: "lucide-tree-pine",
|
|
16236
|
-
render: render$
|
|
16300
|
+
render: render$25
|
|
16237
16301
|
}, _hoisted_1$42 = {
|
|
16238
16302
|
viewBox: "0 0 24 24",
|
|
16239
16303
|
width: "1.2em",
|
|
16240
16304
|
height: "1.2em"
|
|
16241
16305
|
};
|
|
16242
|
-
function render$
|
|
16306
|
+
function render$24(e, t) {
|
|
16243
16307
|
return openBlock(), createElementBlock("svg", _hoisted_1$42, [...t[0] ||= [createBaseVNode("path", {
|
|
16244
16308
|
fill: "none",
|
|
16245
16309
|
stroke: "currentColor",
|
|
@@ -16251,13 +16315,13 @@ function render$22(e, t) {
|
|
|
16251
16315
|
}
|
|
16252
16316
|
var triangle_alert_default = {
|
|
16253
16317
|
name: "lucide-triangle-alert",
|
|
16254
|
-
render: render$
|
|
16318
|
+
render: render$24
|
|
16255
16319
|
}, _hoisted_1$41 = {
|
|
16256
16320
|
viewBox: "0 0 24 24",
|
|
16257
16321
|
width: "1.2em",
|
|
16258
16322
|
height: "1.2em"
|
|
16259
16323
|
};
|
|
16260
|
-
function render$
|
|
16324
|
+
function render$23(e, t) {
|
|
16261
16325
|
return openBlock(), createElementBlock("svg", _hoisted_1$41, [...t[0] ||= [createBaseVNode("path", {
|
|
16262
16326
|
fill: "none",
|
|
16263
16327
|
stroke: "currentColor",
|
|
@@ -16269,13 +16333,13 @@ function render$21(e, t) {
|
|
|
16269
16333
|
}
|
|
16270
16334
|
var type_default = {
|
|
16271
16335
|
name: "lucide-type",
|
|
16272
|
-
render: render$
|
|
16336
|
+
render: render$23
|
|
16273
16337
|
}, _hoisted_1$40 = {
|
|
16274
16338
|
viewBox: "0 0 24 24",
|
|
16275
16339
|
width: "1.2em",
|
|
16276
16340
|
height: "1.2em"
|
|
16277
16341
|
};
|
|
16278
|
-
function render$
|
|
16342
|
+
function render$22(e, t) {
|
|
16279
16343
|
return openBlock(), createElementBlock("svg", _hoisted_1$40, [...t[0] ||= [createBaseVNode("g", {
|
|
16280
16344
|
fill: "none",
|
|
16281
16345
|
stroke: "currentColor",
|
|
@@ -16286,13 +16350,13 @@ function render$20(e, t) {
|
|
|
16286
16350
|
}
|
|
16287
16351
|
var undo_2_default = {
|
|
16288
16352
|
name: "lucide-undo-2",
|
|
16289
|
-
render: render$
|
|
16353
|
+
render: render$22
|
|
16290
16354
|
}, _hoisted_1$39 = {
|
|
16291
16355
|
viewBox: "0 0 24 24",
|
|
16292
16356
|
width: "1.2em",
|
|
16293
16357
|
height: "1.2em"
|
|
16294
16358
|
};
|
|
16295
|
-
function render$
|
|
16359
|
+
function render$21(e, t) {
|
|
16296
16360
|
return openBlock(), createElementBlock("svg", _hoisted_1$39, [...t[0] ||= [createBaseVNode("path", {
|
|
16297
16361
|
fill: "none",
|
|
16298
16362
|
stroke: "currentColor",
|
|
@@ -16304,13 +16368,13 @@ function render$19(e, t) {
|
|
|
16304
16368
|
}
|
|
16305
16369
|
var unlink_default = {
|
|
16306
16370
|
name: "lucide-unlink",
|
|
16307
|
-
render: render$
|
|
16371
|
+
render: render$21
|
|
16308
16372
|
}, _hoisted_1$38 = {
|
|
16309
16373
|
viewBox: "0 0 24 24",
|
|
16310
16374
|
width: "1.2em",
|
|
16311
16375
|
height: "1.2em"
|
|
16312
16376
|
};
|
|
16313
|
-
function render$
|
|
16377
|
+
function render$20(e, t) {
|
|
16314
16378
|
return openBlock(), createElementBlock("svg", _hoisted_1$38, [...t[0] ||= [createBaseVNode("g", {
|
|
16315
16379
|
fill: "none",
|
|
16316
16380
|
stroke: "currentColor",
|
|
@@ -16325,13 +16389,13 @@ function render$18(e, t) {
|
|
|
16325
16389
|
}
|
|
16326
16390
|
var user_default = {
|
|
16327
16391
|
name: "lucide-user",
|
|
16328
|
-
render: render$
|
|
16392
|
+
render: render$20
|
|
16329
16393
|
}, _hoisted_1$37 = {
|
|
16330
16394
|
viewBox: "0 0 24 24",
|
|
16331
16395
|
width: "1.2em",
|
|
16332
16396
|
height: "1.2em"
|
|
16333
16397
|
};
|
|
16334
|
-
function render$
|
|
16398
|
+
function render$19(e, t) {
|
|
16335
16399
|
return openBlock(), createElementBlock("svg", _hoisted_1$37, [...t[0] ||= [createBaseVNode("g", {
|
|
16336
16400
|
fill: "none",
|
|
16337
16401
|
stroke: "currentColor",
|
|
@@ -16346,13 +16410,13 @@ function render$17(e, t) {
|
|
|
16346
16410
|
}
|
|
16347
16411
|
var user_check_default = {
|
|
16348
16412
|
name: "lucide-user-check",
|
|
16349
|
-
render: render$
|
|
16413
|
+
render: render$19
|
|
16350
16414
|
}, _hoisted_1$36 = {
|
|
16351
16415
|
viewBox: "0 0 24 24",
|
|
16352
16416
|
width: "1.2em",
|
|
16353
16417
|
height: "1.2em"
|
|
16354
16418
|
};
|
|
16355
|
-
function render$
|
|
16419
|
+
function render$18(e, t) {
|
|
16356
16420
|
return openBlock(), createElementBlock("svg", _hoisted_1$36, [...t[0] ||= [createBaseVNode("g", {
|
|
16357
16421
|
fill: "none",
|
|
16358
16422
|
stroke: "currentColor",
|
|
@@ -16377,13 +16441,13 @@ function render$16(e, t) {
|
|
|
16377
16441
|
}
|
|
16378
16442
|
var user_lock_default = {
|
|
16379
16443
|
name: "lucide-user-lock",
|
|
16380
|
-
render: render$
|
|
16444
|
+
render: render$18
|
|
16381
16445
|
}, _hoisted_1$35 = {
|
|
16382
16446
|
viewBox: "0 0 24 24",
|
|
16383
16447
|
width: "1.2em",
|
|
16384
16448
|
height: "1.2em"
|
|
16385
16449
|
};
|
|
16386
|
-
function render$
|
|
16450
|
+
function render$17(e, t) {
|
|
16387
16451
|
return openBlock(), createElementBlock("svg", _hoisted_1$35, [...t[0] ||= [createBaseVNode("g", {
|
|
16388
16452
|
fill: "none",
|
|
16389
16453
|
stroke: "currentColor",
|
|
@@ -16398,13 +16462,13 @@ function render$15(e, t) {
|
|
|
16398
16462
|
}
|
|
16399
16463
|
var user_round_default = {
|
|
16400
16464
|
name: "lucide-user-round",
|
|
16401
|
-
render: render$
|
|
16465
|
+
render: render$17
|
|
16402
16466
|
}, _hoisted_1$34 = {
|
|
16403
16467
|
viewBox: "0 0 24 24",
|
|
16404
16468
|
width: "1.2em",
|
|
16405
16469
|
height: "1.2em"
|
|
16406
16470
|
};
|
|
16407
|
-
function render$
|
|
16471
|
+
function render$16(e, t) {
|
|
16408
16472
|
return openBlock(), createElementBlock("svg", _hoisted_1$34, [...t[0] ||= [createBaseVNode("g", {
|
|
16409
16473
|
fill: "none",
|
|
16410
16474
|
stroke: "currentColor",
|
|
@@ -16419,13 +16483,13 @@ function render$14(e, t) {
|
|
|
16419
16483
|
}
|
|
16420
16484
|
var users_default = {
|
|
16421
16485
|
name: "lucide-users",
|
|
16422
|
-
render: render$
|
|
16486
|
+
render: render$16
|
|
16423
16487
|
}, _hoisted_1$33 = {
|
|
16424
16488
|
viewBox: "0 0 24 24",
|
|
16425
16489
|
width: "1.2em",
|
|
16426
16490
|
height: "1.2em"
|
|
16427
16491
|
};
|
|
16428
|
-
function render$
|
|
16492
|
+
function render$15(e, t) {
|
|
16429
16493
|
return openBlock(), createElementBlock("svg", _hoisted_1$33, [...t[0] ||= [createBaseVNode("path", {
|
|
16430
16494
|
fill: "none",
|
|
16431
16495
|
stroke: "currentColor",
|
|
@@ -16437,24 +16501,24 @@ function render$13(e, t) {
|
|
|
16437
16501
|
}
|
|
16438
16502
|
var variable_default = {
|
|
16439
16503
|
name: "lucide-variable",
|
|
16440
|
-
render: render$
|
|
16504
|
+
render: render$15
|
|
16441
16505
|
}, _hoisted_1$32 = {
|
|
16442
16506
|
viewBox: "0 0 24 24",
|
|
16443
16507
|
width: "1.2em",
|
|
16444
16508
|
height: "1.2em"
|
|
16445
16509
|
};
|
|
16446
|
-
function render$
|
|
16510
|
+
function render$14(e, t) {
|
|
16447
16511
|
return openBlock(), createElementBlock("svg", _hoisted_1$32, [...t[0] ||= [createStaticVNode("<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><rect width=\"18\" height=\"18\" x=\"3\" y=\"3\" rx=\"2\"></rect><circle cx=\"7.5\" cy=\"7.5\" r=\".5\" fill=\"currentColor\"></circle><path d=\"m7.9 7.9l2.7 2.7\"></path><circle cx=\"16.5\" cy=\"7.5\" r=\".5\" fill=\"currentColor\"></circle><path d=\"m13.4 10.6l2.7-2.7\"></path><circle cx=\"7.5\" cy=\"16.5\" r=\".5\" fill=\"currentColor\"></circle><path d=\"m7.9 16.1l2.7-2.7\"></path><circle cx=\"16.5\" cy=\"16.5\" r=\".5\" fill=\"currentColor\"></circle><path d=\"m13.4 13.4l2.7 2.7\"></path><circle cx=\"12\" cy=\"12\" r=\"2\"></circle></g>", 1)]]);
|
|
16448
16512
|
}
|
|
16449
16513
|
var vault_default = {
|
|
16450
16514
|
name: "lucide-vault",
|
|
16451
|
-
render: render$
|
|
16515
|
+
render: render$14
|
|
16452
16516
|
}, _hoisted_1$31 = {
|
|
16453
16517
|
viewBox: "0 0 24 24",
|
|
16454
16518
|
width: "1.2em",
|
|
16455
16519
|
height: "1.2em"
|
|
16456
16520
|
};
|
|
16457
|
-
function render$
|
|
16521
|
+
function render$13(e, t) {
|
|
16458
16522
|
return openBlock(), createElementBlock("svg", _hoisted_1$31, [...t[0] ||= [createBaseVNode("g", {
|
|
16459
16523
|
fill: "none",
|
|
16460
16524
|
stroke: "currentColor",
|
|
@@ -16471,13 +16535,13 @@ function render$11(e, t) {
|
|
|
16471
16535
|
}
|
|
16472
16536
|
var video_default = {
|
|
16473
16537
|
name: "lucide-video",
|
|
16474
|
-
render: render$
|
|
16538
|
+
render: render$13
|
|
16475
16539
|
}, _hoisted_1$30 = {
|
|
16476
16540
|
viewBox: "0 0 24 24",
|
|
16477
16541
|
width: "1.2em",
|
|
16478
16542
|
height: "1.2em"
|
|
16479
16543
|
};
|
|
16480
|
-
function render$
|
|
16544
|
+
function render$12(e, t) {
|
|
16481
16545
|
return openBlock(), createElementBlock("svg", _hoisted_1$30, [...t[0] ||= [createBaseVNode("path", {
|
|
16482
16546
|
fill: "none",
|
|
16483
16547
|
stroke: "currentColor",
|
|
@@ -16489,13 +16553,13 @@ function render$10(e, t) {
|
|
|
16489
16553
|
}
|
|
16490
16554
|
var volume_2_default = {
|
|
16491
16555
|
name: "lucide-volume-2",
|
|
16492
|
-
render: render$
|
|
16556
|
+
render: render$12
|
|
16493
16557
|
}, _hoisted_1$29 = {
|
|
16494
16558
|
viewBox: "0 0 24 24",
|
|
16495
16559
|
width: "1.2em",
|
|
16496
16560
|
height: "1.2em"
|
|
16497
16561
|
};
|
|
16498
|
-
function render$
|
|
16562
|
+
function render$11(e, t) {
|
|
16499
16563
|
return openBlock(), createElementBlock("svg", _hoisted_1$29, [...t[0] ||= [createBaseVNode("path", {
|
|
16500
16564
|
fill: "none",
|
|
16501
16565
|
stroke: "currentColor",
|
|
@@ -16507,13 +16571,13 @@ function render$9(e, t) {
|
|
|
16507
16571
|
}
|
|
16508
16572
|
var volume_x_default = {
|
|
16509
16573
|
name: "lucide-volume-x",
|
|
16510
|
-
render: render$
|
|
16574
|
+
render: render$11
|
|
16511
16575
|
}, _hoisted_1$28 = {
|
|
16512
16576
|
viewBox: "0 0 24 24",
|
|
16513
16577
|
width: "1.2em",
|
|
16514
16578
|
height: "1.2em"
|
|
16515
16579
|
};
|
|
16516
|
-
function render$
|
|
16580
|
+
function render$10(e, t) {
|
|
16517
16581
|
return openBlock(), createElementBlock("svg", _hoisted_1$28, [...t[0] ||= [createBaseVNode("path", {
|
|
16518
16582
|
fill: "none",
|
|
16519
16583
|
stroke: "currentColor",
|
|
@@ -16525,25 +16589,58 @@ function render$8(e, t) {
|
|
|
16525
16589
|
}
|
|
16526
16590
|
var wand_sparkles_default = {
|
|
16527
16591
|
name: "lucide-wand-sparkles",
|
|
16528
|
-
render: render$
|
|
16592
|
+
render: render$10
|
|
16529
16593
|
}, _hoisted_1$27 = {
|
|
16530
16594
|
viewBox: "0 0 24 24",
|
|
16531
16595
|
width: "1.2em",
|
|
16532
16596
|
height: "1.2em"
|
|
16533
16597
|
};
|
|
16534
|
-
function render$
|
|
16598
|
+
function render$9(e, t) {
|
|
16535
16599
|
return openBlock(), createElementBlock("svg", _hoisted_1$27, [...t[0] ||= [createStaticVNode("<g fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"><circle cx=\"12\" cy=\"4.5\" r=\"2.5\"></circle><path d=\"m10.2 6.3l-3.9 3.9\"></path><circle cx=\"4.5\" cy=\"12\" r=\"2.5\"></circle><path d=\"M7 12h10\"></path><circle cx=\"19.5\" cy=\"12\" r=\"2.5\"></circle><path d=\"m13.8 17.7l3.9-3.9\"></path><circle cx=\"12\" cy=\"19.5\" r=\"2.5\"></circle></g>", 1)]]);
|
|
16536
16600
|
}
|
|
16537
16601
|
var waypoints_default = {
|
|
16538
16602
|
name: "lucide-waypoints",
|
|
16539
|
-
render: render$
|
|
16603
|
+
render: render$9
|
|
16540
16604
|
}, _hoisted_1$26 = {
|
|
16541
16605
|
viewBox: "0 0 24 24",
|
|
16542
16606
|
width: "1.2em",
|
|
16543
16607
|
height: "1.2em"
|
|
16544
16608
|
};
|
|
16545
|
-
function render$
|
|
16546
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$26, [...t[0] ||= [createBaseVNode("
|
|
16609
|
+
function render$8(e, t) {
|
|
16610
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$26, [...t[0] ||= [createBaseVNode("g", {
|
|
16611
|
+
fill: "none",
|
|
16612
|
+
stroke: "currentColor",
|
|
16613
|
+
"stroke-linecap": "round",
|
|
16614
|
+
"stroke-linejoin": "round",
|
|
16615
|
+
"stroke-width": "2"
|
|
16616
|
+
}, [
|
|
16617
|
+
createBaseVNode("rect", {
|
|
16618
|
+
width: "8",
|
|
16619
|
+
height: "8",
|
|
16620
|
+
x: "3",
|
|
16621
|
+
y: "3",
|
|
16622
|
+
rx: "2"
|
|
16623
|
+
}),
|
|
16624
|
+
createBaseVNode("path", { d: "M7 11v4a2 2 0 0 0 2 2h4" }),
|
|
16625
|
+
createBaseVNode("rect", {
|
|
16626
|
+
width: "8",
|
|
16627
|
+
height: "8",
|
|
16628
|
+
x: "13",
|
|
16629
|
+
y: "13",
|
|
16630
|
+
rx: "2"
|
|
16631
|
+
})
|
|
16632
|
+
], -1)]]);
|
|
16633
|
+
}
|
|
16634
|
+
var workflow_default = {
|
|
16635
|
+
name: "lucide-workflow",
|
|
16636
|
+
render: render$8
|
|
16637
|
+
}, _hoisted_1$25 = {
|
|
16638
|
+
viewBox: "0 0 24 24",
|
|
16639
|
+
width: "1.2em",
|
|
16640
|
+
height: "1.2em"
|
|
16641
|
+
};
|
|
16642
|
+
function render$7(e, t) {
|
|
16643
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$25, [...t[0] ||= [createBaseVNode("path", {
|
|
16547
16644
|
fill: "none",
|
|
16548
16645
|
stroke: "currentColor",
|
|
16549
16646
|
"stroke-linecap": "round",
|
|
@@ -16554,14 +16651,14 @@ function render$6(e, t) {
|
|
|
16554
16651
|
}
|
|
16555
16652
|
var wrench_default = {
|
|
16556
16653
|
name: "lucide-wrench",
|
|
16557
|
-
render: render$
|
|
16558
|
-
}, _hoisted_1$
|
|
16654
|
+
render: render$7
|
|
16655
|
+
}, _hoisted_1$24 = {
|
|
16559
16656
|
viewBox: "0 0 24 24",
|
|
16560
16657
|
width: "1.2em",
|
|
16561
16658
|
height: "1.2em"
|
|
16562
16659
|
};
|
|
16563
|
-
function render$
|
|
16564
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
16660
|
+
function render$6(e, t) {
|
|
16661
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$24, [...t[0] ||= [createBaseVNode("path", {
|
|
16565
16662
|
fill: "none",
|
|
16566
16663
|
stroke: "currentColor",
|
|
16567
16664
|
"stroke-linecap": "round",
|
|
@@ -16572,14 +16669,31 @@ function render$5(e, t) {
|
|
|
16572
16669
|
}
|
|
16573
16670
|
var x_default = {
|
|
16574
16671
|
name: "lucide-x",
|
|
16672
|
+
render: render$6
|
|
16673
|
+
}, _hoisted_1$23 = {
|
|
16674
|
+
viewBox: "0 0 24 24",
|
|
16675
|
+
width: "1.2em",
|
|
16676
|
+
height: "1.2em"
|
|
16677
|
+
};
|
|
16678
|
+
function render$5(e, t) {
|
|
16679
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$23, [...t[0] ||= [createBaseVNode("g", {
|
|
16680
|
+
fill: "none",
|
|
16681
|
+
stroke: "currentColor",
|
|
16682
|
+
"stroke-linecap": "round",
|
|
16683
|
+
"stroke-linejoin": "round",
|
|
16684
|
+
"stroke-width": "2"
|
|
16685
|
+
}, [createBaseVNode("path", { d: "M2.5 17a24.1 24.1 0 0 1 0-10a2 2 0 0 1 1.4-1.4a49.6 49.6 0 0 1 16.2 0A2 2 0 0 1 21.5 7a24.1 24.1 0 0 1 0 10a2 2 0 0 1-1.4 1.4a49.6 49.6 0 0 1-16.2 0A2 2 0 0 1 2.5 17" }), createBaseVNode("path", { d: "m10 15l5-3l-5-3z" })], -1)]]);
|
|
16686
|
+
}
|
|
16687
|
+
var youtube_default = {
|
|
16688
|
+
name: "lucide-youtube",
|
|
16575
16689
|
render: render$5
|
|
16576
|
-
}, _hoisted_1$
|
|
16690
|
+
}, _hoisted_1$22 = {
|
|
16577
16691
|
viewBox: "0 0 24 24",
|
|
16578
16692
|
width: "1.2em",
|
|
16579
16693
|
height: "1.2em"
|
|
16580
16694
|
};
|
|
16581
16695
|
function render$4(e, t) {
|
|
16582
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
16696
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$22, [...t[0] ||= [createBaseVNode("path", {
|
|
16583
16697
|
fill: "none",
|
|
16584
16698
|
stroke: "currentColor",
|
|
16585
16699
|
"stroke-linecap": "round",
|
|
@@ -16591,13 +16705,13 @@ function render$4(e, t) {
|
|
|
16591
16705
|
var zap_default = {
|
|
16592
16706
|
name: "lucide-zap",
|
|
16593
16707
|
render: render$4
|
|
16594
|
-
}, _hoisted_1$
|
|
16708
|
+
}, _hoisted_1$21 = {
|
|
16595
16709
|
viewBox: "0 0 24 24",
|
|
16596
16710
|
width: "1.2em",
|
|
16597
16711
|
height: "1.2em"
|
|
16598
16712
|
};
|
|
16599
16713
|
function render$3(e, t) {
|
|
16600
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
16714
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$21, [...t[0] ||= [createBaseVNode("g", {
|
|
16601
16715
|
fill: "none",
|
|
16602
16716
|
stroke: "currentColor",
|
|
16603
16717
|
"stroke-linecap": "round",
|
|
@@ -16612,13 +16726,13 @@ function render$3(e, t) {
|
|
|
16612
16726
|
var zoom_in_default = {
|
|
16613
16727
|
name: "lucide-zoom-in",
|
|
16614
16728
|
render: render$3
|
|
16615
|
-
}, _hoisted_1$
|
|
16729
|
+
}, _hoisted_1$20 = {
|
|
16616
16730
|
viewBox: "0 0 24 24",
|
|
16617
16731
|
width: "1.2em",
|
|
16618
16732
|
height: "1.2em"
|
|
16619
16733
|
};
|
|
16620
16734
|
function render$2(e, t) {
|
|
16621
|
-
return openBlock(), createElementBlock("svg", _hoisted_1$
|
|
16735
|
+
return openBlock(), createElementBlock("svg", _hoisted_1$20, [...t[0] ||= [createBaseVNode("g", {
|
|
16622
16736
|
fill: "none",
|
|
16623
16737
|
stroke: "currentColor",
|
|
16624
16738
|
"stroke-linecap": "round",
|
|
@@ -16887,6 +17001,7 @@ const deprecatedIconSet = {
|
|
|
16887
17001
|
"arrow-up-right": arrow_up_right_default,
|
|
16888
17002
|
"at-sign": at_sign_default,
|
|
16889
17003
|
ban: ban_default,
|
|
17004
|
+
"badge-check": badge_check_default,
|
|
16890
17005
|
bell: bell_default,
|
|
16891
17006
|
book: book_default,
|
|
16892
17007
|
"book-open": book_open_default,
|
|
@@ -17030,6 +17145,7 @@ const deprecatedIconSet = {
|
|
|
17030
17145
|
server: server_default,
|
|
17031
17146
|
share: share_default,
|
|
17032
17147
|
"sliders-horizontal": sliders_horizontal_default,
|
|
17148
|
+
"shield-half": shield_half_default,
|
|
17033
17149
|
smile: smile_default,
|
|
17034
17150
|
sparkles: sparkles_default,
|
|
17035
17151
|
split: split_default,
|
|
@@ -17063,11 +17179,14 @@ const deprecatedIconSet = {
|
|
|
17063
17179
|
"volume-x": volume_x_default,
|
|
17064
17180
|
"wand-sparkles": wand_sparkles_default,
|
|
17065
17181
|
waypoints: waypoints_default,
|
|
17182
|
+
workflow: workflow_default,
|
|
17066
17183
|
wrench: wrench_default,
|
|
17067
17184
|
x: x_default,
|
|
17185
|
+
youtube: youtube_default,
|
|
17068
17186
|
zap: zap_default,
|
|
17069
17187
|
"zoom-in": zoom_in_default,
|
|
17070
|
-
"zoom-out": zoom_out_default
|
|
17188
|
+
"zoom-out": zoom_out_default,
|
|
17189
|
+
loader: loader2_default
|
|
17071
17190
|
};
|
|
17072
17191
|
var N8nIcon_default = /* @__PURE__ */ __plugin_vue_export_helper_default(/* @__PURE__ */ defineComponent({
|
|
17073
17192
|
name: "N8nIcon",
|
|
@@ -17136,9 +17255,7 @@ var N8nIcon_default = /* @__PURE__ */ __plugin_vue_export_helper_default(/* @__P
|
|
|
17136
17255
|
}), [["__cssModules", { $style: {
|
|
17137
17256
|
strokeWidth: "_strokeWidth_amcx4_1",
|
|
17138
17257
|
spin: "_spin_amcx4_6"
|
|
17139
|
-
} }]])
|
|
17140
|
-
Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean;
|
|
17141
|
-
var N8nText_default = /* @__PURE__ */ __plugin_vue_export_helper_default(/* @__PURE__ */ defineComponent({
|
|
17258
|
+
} }]]), N8nText_default = /* @__PURE__ */ __plugin_vue_export_helper_default(/* @__PURE__ */ defineComponent({
|
|
17142
17259
|
name: "N8nText",
|
|
17143
17260
|
__name: "Text",
|
|
17144
17261
|
props: {
|
|
@@ -24888,7 +25005,7 @@ withInstall(/* @__PURE__ */ _export_sfc(/* @__PURE__ */ defineComponent({
|
|
|
24888
25005
|
variant: "p"
|
|
24889
25006
|
}, null, 8, ["class"]))), 128))]) : createCommentVNode("v-if", !0)], 64))), 128))], 16)) : renderSlot(e.$slots, "default", normalizeProps(mergeProps({ key: 1 }, e.$attrs)));
|
|
24890
25007
|
}
|
|
24891
|
-
}), [["__file", "/home/runner/work/element-plus/element-plus/packages/components/skeleton/src/skeleton.vue"]]), { SkeletonItem }), withNoopInstall(SkeletonItem)
|
|
25008
|
+
}), [["__file", "/home/runner/work/element-plus/element-plus/packages/components/skeleton/src/skeleton.vue"]]), { SkeletonItem }), withNoopInstall(SkeletonItem);
|
|
24892
25009
|
var require_default$1 = /* @__PURE__ */ __commonJSMin(((e) => {
|
|
24893
25010
|
function t() {
|
|
24894
25011
|
var e = {};
|