@tonyclaw/agent-inspector 3.0.23 → 3.0.25
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/.output/nitro.json +1 -1
- package/.output/public/assets/{CompareDrawer-CFedvZHU.js → CompareDrawer-BnvOPwpe.js} +1 -1
- package/.output/public/assets/ProxyViewerContainer-DcqFqo1m.js +127 -0
- package/.output/public/assets/{ReplayDialog-X-fRSKAu.js → ReplayDialog-BJgoQWdW.js} +1 -1
- package/.output/public/assets/{RequestAnatomy-S8qB5nVg.js → RequestAnatomy-CpBZEHnM.js} +1 -1
- package/.output/public/assets/{ResponseView-_rcOWSwJ.js → ResponseView-CWmyRb2M.js} +2 -2
- package/.output/public/assets/{StreamingChunkSequence-Bc15AVpN.js → StreamingChunkSequence-BWhC8bwx.js} +1 -1
- package/.output/public/assets/{_sessionId-Cz-HW2Wf.js → _sessionId-Cq-2OqUU.js} +1 -1
- package/.output/public/assets/{index-CEgwWY3E.js → index-BKi9IRtV.js} +71 -7
- package/.output/public/assets/index-BMYuDL5X.css +1 -0
- package/.output/public/assets/{index-CXYBU0j8.js → index-Cf8O0Oos.js} +1 -1
- package/.output/public/assets/{index-ClKXooQd.js → index-DdgTJ4QJ.js} +1 -1
- package/.output/public/assets/{json-viewer-QfU4qGdd.js → json-viewer-Bqu_4hmm.js} +1 -1
- package/.output/server/_libs/lucide-react.mjs +306 -246
- package/.output/server/{_sessionId-9FAmYZVf.mjs → _sessionId-Ba7H3Gjw.mjs} +2 -2
- package/.output/server/_ssr/{CompareDrawer-BLKjOzwD.mjs → CompareDrawer-aH59Ab6x.mjs} +3 -3
- package/.output/server/_ssr/{ProxyViewerContainer-Dcs2Mq8l.mjs → ProxyViewerContainer-By-I0tJv.mjs} +1791 -1259
- package/.output/server/_ssr/{ReplayDialog-oyiF4LIo.mjs → ReplayDialog-BO4Vy0et.mjs} +4 -4
- package/.output/server/_ssr/{RequestAnatomy-DkyQXSuj.mjs → RequestAnatomy-FtOr7vSS.mjs} +3 -3
- package/.output/server/_ssr/{ResponseView-3NTDEiDh.mjs → ResponseView-cvw6ajue.mjs} +3 -3
- package/.output/server/_ssr/{StreamingChunkSequence-DRq-5Bgn.mjs → StreamingChunkSequence-Oc8S2kD6.mjs} +3 -3
- package/.output/server/_ssr/{index-dtMiNUa1.mjs → index-BDRlQheR.mjs} +2 -2
- package/.output/server/_ssr/index.mjs +2 -2
- package/.output/server/_ssr/{json-viewer-BhUwicvp.mjs → json-viewer-Cd6trhQr.mjs} +3 -3
- package/.output/server/_ssr/{router-DO0OntUK.mjs → router-bofP-Ekl.mjs} +296 -91
- package/.output/server/{_tanstack-start-manifest_v-DO5v3BHY.mjs → _tanstack-start-manifest_v-BPuf86qB.mjs} +1 -1
- package/.output/server/index.mjs +76 -76
- package/package.json +3 -2
- package/src/components/ProxyViewer.tsx +138 -740
- package/src/components/ProxyViewerContainer.tsx +5 -47
- package/src/components/alerts/AlertsDialog.tsx +6 -2
- package/src/components/inspector-pet/InspectorPet.tsx +390 -0
- package/src/components/inspector-pet/inspectorPetLogic.ts +273 -0
- package/src/components/providers/ProviderCard.tsx +20 -579
- package/src/components/providers/ProviderTestResultsView.tsx +732 -0
- package/src/components/proxy-viewer/LogEntry.tsx +5 -0
- package/src/components/proxy-viewer/LogEntryHeader.tsx +7 -0
- package/src/components/proxy-viewer/ToolTraceEvents.tsx +33 -36
- package/src/components/proxy-viewer/TurnGroup.tsx +1 -5
- package/src/components/proxy-viewer/proxyViewerContainerLogic.ts +46 -0
- package/src/components/proxy-viewer/proxyViewerLogic.ts +469 -0
- package/src/lib/themeMode.ts +45 -0
- package/src/lib/uiScale.ts +112 -0
- package/src/lib/useThemeMode.ts +40 -0
- package/src/lib/useUiScale.ts +52 -0
- package/src/routes/__root.tsx +78 -1
- package/styles/globals.css +403 -24
- package/.output/public/assets/ProxyViewerContainer-BlCrBvdm.js +0 -127
- package/.output/public/assets/index-B_SIQ47i.css +0 -1
|
@@ -75,7 +75,14 @@ const createLucideIcon = (iconName, iconNode) => {
|
|
|
75
75
|
Component.displayName = toPascalCase(iconName);
|
|
76
76
|
return Component;
|
|
77
77
|
};
|
|
78
|
-
const __iconNode$
|
|
78
|
+
const __iconNode$1A = [
|
|
79
|
+
["path", { d: "m15 16 2.536-7.328a1.02 1.02 1 0 1 1.928 0L22 16", key: "xik6mr" }],
|
|
80
|
+
["path", { d: "M15.697 14h5.606", key: "1stdlc" }],
|
|
81
|
+
["path", { d: "m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16", key: "d5nyq2" }],
|
|
82
|
+
["path", { d: "M3.304 13h6.392", key: "1q3zxz" }]
|
|
83
|
+
];
|
|
84
|
+
const ALargeSmall = createLucideIcon("a-large-small", __iconNode$1A);
|
|
85
|
+
const __iconNode$1z = [
|
|
79
86
|
[
|
|
80
87
|
"path",
|
|
81
88
|
{
|
|
@@ -84,39 +91,39 @@ const __iconNode$1u = [
|
|
|
84
91
|
}
|
|
85
92
|
]
|
|
86
93
|
];
|
|
87
|
-
const Activity = createLucideIcon("activity", __iconNode$
|
|
88
|
-
const __iconNode$
|
|
94
|
+
const Activity = createLucideIcon("activity", __iconNode$1z);
|
|
95
|
+
const __iconNode$1y = [
|
|
89
96
|
["path", { d: "m7 7 10 10", key: "1fmybs" }],
|
|
90
97
|
["path", { d: "M17 7v10H7", key: "6fjiku" }]
|
|
91
98
|
];
|
|
92
|
-
const ArrowDownRight = createLucideIcon("arrow-down-right", __iconNode$
|
|
93
|
-
const __iconNode$
|
|
99
|
+
const ArrowDownRight = createLucideIcon("arrow-down-right", __iconNode$1y);
|
|
100
|
+
const __iconNode$1x = [
|
|
94
101
|
["path", { d: "M12 5v14", key: "s699le" }],
|
|
95
102
|
["path", { d: "m19 12-7 7-7-7", key: "1idqje" }]
|
|
96
103
|
];
|
|
97
|
-
const ArrowDown = createLucideIcon("arrow-down", __iconNode$
|
|
98
|
-
const __iconNode$
|
|
104
|
+
const ArrowDown = createLucideIcon("arrow-down", __iconNode$1x);
|
|
105
|
+
const __iconNode$1w = [
|
|
99
106
|
["path", { d: "m12 19-7-7 7-7", key: "1l729n" }],
|
|
100
107
|
["path", { d: "M19 12H5", key: "x3x0zl" }]
|
|
101
108
|
];
|
|
102
|
-
const ArrowLeft = createLucideIcon("arrow-left", __iconNode$
|
|
103
|
-
const __iconNode$
|
|
109
|
+
const ArrowLeft = createLucideIcon("arrow-left", __iconNode$1w);
|
|
110
|
+
const __iconNode$1v = [
|
|
104
111
|
["path", { d: "M7 7h10v10", key: "1tivn9" }],
|
|
105
112
|
["path", { d: "M7 17 17 7", key: "1vkiza" }]
|
|
106
113
|
];
|
|
107
|
-
const ArrowUpRight = createLucideIcon("arrow-up-right", __iconNode$
|
|
108
|
-
const __iconNode$
|
|
114
|
+
const ArrowUpRight = createLucideIcon("arrow-up-right", __iconNode$1v);
|
|
115
|
+
const __iconNode$1u = [
|
|
109
116
|
["path", { d: "m5 12 7-7 7 7", key: "hav0vg" }],
|
|
110
117
|
["path", { d: "M12 19V5", key: "x0mq9r" }]
|
|
111
118
|
];
|
|
112
|
-
const ArrowUp = createLucideIcon("arrow-up", __iconNode$
|
|
113
|
-
const __iconNode$
|
|
119
|
+
const ArrowUp = createLucideIcon("arrow-up", __iconNode$1u);
|
|
120
|
+
const __iconNode$1t = [
|
|
114
121
|
["path", { d: "M4.5 3h15", key: "c7n0jr" }],
|
|
115
122
|
["path", { d: "M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3", key: "m1uhx7" }],
|
|
116
123
|
["path", { d: "M6 14h12", key: "4cwo0f" }]
|
|
117
124
|
];
|
|
118
|
-
const Beaker = createLucideIcon("beaker", __iconNode$
|
|
119
|
-
const __iconNode$
|
|
125
|
+
const Beaker = createLucideIcon("beaker", __iconNode$1t);
|
|
126
|
+
const __iconNode$1s = [
|
|
120
127
|
["path", { d: "M10.268 21a2 2 0 0 0 3.464 0", key: "vwvbt9" }],
|
|
121
128
|
[
|
|
122
129
|
"path",
|
|
@@ -126,8 +133,8 @@ const __iconNode$1n = [
|
|
|
126
133
|
}
|
|
127
134
|
]
|
|
128
135
|
];
|
|
129
|
-
const Bell = createLucideIcon("bell", __iconNode$
|
|
130
|
-
const __iconNode$
|
|
136
|
+
const Bell = createLucideIcon("bell", __iconNode$1s);
|
|
137
|
+
const __iconNode$1r = [
|
|
131
138
|
[
|
|
132
139
|
"path",
|
|
133
140
|
{
|
|
@@ -137,8 +144,8 @@ const __iconNode$1m = [
|
|
|
137
144
|
],
|
|
138
145
|
["rect", { x: "14", y: "2", width: "8", height: "8", rx: "1", key: "88lufb" }]
|
|
139
146
|
];
|
|
140
|
-
const Blocks = createLucideIcon("blocks", __iconNode$
|
|
141
|
-
const __iconNode$
|
|
147
|
+
const Blocks = createLucideIcon("blocks", __iconNode$1r);
|
|
148
|
+
const __iconNode$1q = [
|
|
142
149
|
[
|
|
143
150
|
"path",
|
|
144
151
|
{ d: "M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1", key: "ezmyqa" }
|
|
@@ -151,8 +158,8 @@ const __iconNode$1l = [
|
|
|
151
158
|
}
|
|
152
159
|
]
|
|
153
160
|
];
|
|
154
|
-
const Braces = createLucideIcon("braces", __iconNode$
|
|
155
|
-
const __iconNode$
|
|
161
|
+
const Braces = createLucideIcon("braces", __iconNode$1q);
|
|
162
|
+
const __iconNode$1p = [
|
|
156
163
|
[
|
|
157
164
|
"path",
|
|
158
165
|
{
|
|
@@ -173,8 +180,8 @@ const __iconNode$1k = [
|
|
|
173
180
|
["circle", { cx: "20", cy: "21", r: ".5", key: "yhc1fs" }],
|
|
174
181
|
["circle", { cx: "20", cy: "8", r: ".5", key: "1e43v0" }]
|
|
175
182
|
];
|
|
176
|
-
const BrainCircuit = createLucideIcon("brain-circuit", __iconNode$
|
|
177
|
-
const __iconNode$
|
|
183
|
+
const BrainCircuit = createLucideIcon("brain-circuit", __iconNode$1p);
|
|
184
|
+
const __iconNode$1o = [
|
|
178
185
|
["path", { d: "M12 18V5", key: "adv99a" }],
|
|
179
186
|
["path", { d: "M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4", key: "1e3is1" }],
|
|
180
187
|
["path", { d: "M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5", key: "1gqd8o" }],
|
|
@@ -184,71 +191,71 @@ const __iconNode$1j = [
|
|
|
184
191
|
["path", { d: "M6 18a4 4 0 0 1-2-7.464", key: "k1g0md" }],
|
|
185
192
|
["path", { d: "M6.003 5.125a4 4 0 0 0-2.526 5.77", key: "q97ue3" }]
|
|
186
193
|
];
|
|
187
|
-
const Brain = createLucideIcon("brain", __iconNode$
|
|
188
|
-
const __iconNode$
|
|
189
|
-
const Check = createLucideIcon("check", __iconNode$
|
|
190
|
-
const __iconNode$
|
|
191
|
-
const ChevronDown = createLucideIcon("chevron-down", __iconNode$
|
|
192
|
-
const __iconNode$
|
|
193
|
-
const ChevronLeft = createLucideIcon("chevron-left", __iconNode$
|
|
194
|
-
const __iconNode$
|
|
195
|
-
const ChevronRight = createLucideIcon("chevron-right", __iconNode$
|
|
196
|
-
const __iconNode$
|
|
197
|
-
const ChevronUp = createLucideIcon("chevron-up", __iconNode$
|
|
198
|
-
const __iconNode$
|
|
194
|
+
const Brain = createLucideIcon("brain", __iconNode$1o);
|
|
195
|
+
const __iconNode$1n = [["path", { d: "M20 6 9 17l-5-5", key: "1gmf2c" }]];
|
|
196
|
+
const Check = createLucideIcon("check", __iconNode$1n);
|
|
197
|
+
const __iconNode$1m = [["path", { d: "m6 9 6 6 6-6", key: "qrunsl" }]];
|
|
198
|
+
const ChevronDown = createLucideIcon("chevron-down", __iconNode$1m);
|
|
199
|
+
const __iconNode$1l = [["path", { d: "m15 18-6-6 6-6", key: "1wnfg3" }]];
|
|
200
|
+
const ChevronLeft = createLucideIcon("chevron-left", __iconNode$1l);
|
|
201
|
+
const __iconNode$1k = [["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]];
|
|
202
|
+
const ChevronRight = createLucideIcon("chevron-right", __iconNode$1k);
|
|
203
|
+
const __iconNode$1j = [["path", { d: "m18 15-6-6-6 6", key: "153udz" }]];
|
|
204
|
+
const ChevronUp = createLucideIcon("chevron-up", __iconNode$1j);
|
|
205
|
+
const __iconNode$1i = [
|
|
199
206
|
["path", { d: "m7 6 5 5 5-5", key: "1lc07p" }],
|
|
200
207
|
["path", { d: "m7 13 5 5 5-5", key: "1d48rs" }]
|
|
201
208
|
];
|
|
202
|
-
const ChevronsDown = createLucideIcon("chevrons-down", __iconNode$
|
|
203
|
-
const __iconNode$
|
|
209
|
+
const ChevronsDown = createLucideIcon("chevrons-down", __iconNode$1i);
|
|
210
|
+
const __iconNode$1h = [
|
|
204
211
|
["path", { d: "m11 17-5-5 5-5", key: "13zhaf" }],
|
|
205
212
|
["path", { d: "m18 17-5-5 5-5", key: "h8a8et" }]
|
|
206
213
|
];
|
|
207
|
-
const ChevronsLeft = createLucideIcon("chevrons-left", __iconNode$
|
|
208
|
-
const __iconNode$
|
|
214
|
+
const ChevronsLeft = createLucideIcon("chevrons-left", __iconNode$1h);
|
|
215
|
+
const __iconNode$1g = [
|
|
209
216
|
["path", { d: "m6 17 5-5-5-5", key: "xnjwq" }],
|
|
210
217
|
["path", { d: "m13 17 5-5-5-5", key: "17xmmf" }]
|
|
211
218
|
];
|
|
212
|
-
const ChevronsRight = createLucideIcon("chevrons-right", __iconNode$
|
|
213
|
-
const __iconNode$
|
|
219
|
+
const ChevronsRight = createLucideIcon("chevrons-right", __iconNode$1g);
|
|
220
|
+
const __iconNode$1f = [
|
|
214
221
|
["path", { d: "m17 11-5-5-5 5", key: "e8nh98" }],
|
|
215
222
|
["path", { d: "m17 18-5-5-5 5", key: "2avn1x" }]
|
|
216
223
|
];
|
|
217
|
-
const ChevronsUp = createLucideIcon("chevrons-up", __iconNode$
|
|
218
|
-
const __iconNode$
|
|
224
|
+
const ChevronsUp = createLucideIcon("chevrons-up", __iconNode$1f);
|
|
225
|
+
const __iconNode$1e = [
|
|
219
226
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
220
227
|
["line", { x1: "12", x2: "12", y1: "8", y2: "12", key: "1pkeuh" }],
|
|
221
228
|
["line", { x1: "12", x2: "12.01", y1: "16", y2: "16", key: "4dfq90" }]
|
|
222
229
|
];
|
|
223
|
-
const CircleAlert = createLucideIcon("circle-alert", __iconNode$
|
|
224
|
-
const __iconNode$
|
|
230
|
+
const CircleAlert = createLucideIcon("circle-alert", __iconNode$1e);
|
|
231
|
+
const __iconNode$1d = [
|
|
225
232
|
["path", { d: "M21.801 10A10 10 0 1 1 17 3.335", key: "yps3ct" }],
|
|
226
233
|
["path", { d: "m9 11 3 3L22 4", key: "1pflzl" }]
|
|
227
234
|
];
|
|
228
|
-
const CircleCheckBig = createLucideIcon("circle-check-big", __iconNode$
|
|
229
|
-
const __iconNode$
|
|
235
|
+
const CircleCheckBig = createLucideIcon("circle-check-big", __iconNode$1d);
|
|
236
|
+
const __iconNode$1c = [
|
|
230
237
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
231
238
|
["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }]
|
|
232
239
|
];
|
|
233
|
-
const CircleCheck = createLucideIcon("circle-check", __iconNode$
|
|
234
|
-
const __iconNode$
|
|
240
|
+
const CircleCheck = createLucideIcon("circle-check", __iconNode$1c);
|
|
241
|
+
const __iconNode$1b = [
|
|
235
242
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
236
243
|
["path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3", key: "1u773s" }],
|
|
237
244
|
["path", { d: "M12 17h.01", key: "p32p05" }]
|
|
238
245
|
];
|
|
239
|
-
const CircleQuestionMark = createLucideIcon("circle-question-mark", __iconNode$
|
|
240
|
-
const __iconNode$
|
|
246
|
+
const CircleQuestionMark = createLucideIcon("circle-question-mark", __iconNode$1b);
|
|
247
|
+
const __iconNode$1a = [
|
|
241
248
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
242
249
|
["rect", { x: "9", y: "9", width: "6", height: "6", rx: "1", key: "1ssd4o" }]
|
|
243
250
|
];
|
|
244
|
-
const CircleStop = createLucideIcon("circle-stop", __iconNode$
|
|
245
|
-
const __iconNode$
|
|
251
|
+
const CircleStop = createLucideIcon("circle-stop", __iconNode$1a);
|
|
252
|
+
const __iconNode$19 = [
|
|
246
253
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
247
254
|
["path", { d: "m15 9-6 6", key: "1uzhvr" }],
|
|
248
255
|
["path", { d: "m9 9 6 6", key: "z0biqf" }]
|
|
249
256
|
];
|
|
250
|
-
const CircleX = createLucideIcon("circle-x", __iconNode$
|
|
251
|
-
const __iconNode$
|
|
257
|
+
const CircleX = createLucideIcon("circle-x", __iconNode$19);
|
|
258
|
+
const __iconNode$18 = [
|
|
252
259
|
[
|
|
253
260
|
"path",
|
|
254
261
|
{ d: "M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3Z", key: "1tn4o7" }
|
|
@@ -257,40 +264,40 @@ const __iconNode$13 = [
|
|
|
257
264
|
["path", { d: "m12.4 3.4 3.1 4", key: "6hsd6n" }],
|
|
258
265
|
["path", { d: "M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z", key: "ltgou9" }]
|
|
259
266
|
];
|
|
260
|
-
const Clapperboard = createLucideIcon("clapperboard", __iconNode$
|
|
261
|
-
const __iconNode$
|
|
267
|
+
const Clapperboard = createLucideIcon("clapperboard", __iconNode$18);
|
|
268
|
+
const __iconNode$17 = [
|
|
262
269
|
["path", { d: "M12 6v6h4", key: "135r8i" }],
|
|
263
270
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
|
|
264
271
|
];
|
|
265
|
-
const Clock3 = createLucideIcon("clock-3", __iconNode$
|
|
266
|
-
const __iconNode$
|
|
272
|
+
const Clock3 = createLucideIcon("clock-3", __iconNode$17);
|
|
273
|
+
const __iconNode$16 = [
|
|
267
274
|
["path", { d: "M12 6v6l4 2", key: "mmk7yg" }],
|
|
268
275
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
|
|
269
276
|
];
|
|
270
|
-
const Clock = createLucideIcon("clock", __iconNode$
|
|
271
|
-
const __iconNode$
|
|
277
|
+
const Clock = createLucideIcon("clock", __iconNode$16);
|
|
278
|
+
const __iconNode$15 = [
|
|
272
279
|
["path", { d: "M12 13v8", key: "1l5pq0" }],
|
|
273
280
|
["path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242", key: "1pljnt" }],
|
|
274
281
|
["path", { d: "m8 17 4-4 4 4", key: "1quai1" }]
|
|
275
282
|
];
|
|
276
|
-
const CloudUpload = createLucideIcon("cloud-upload", __iconNode$
|
|
277
|
-
const __iconNode
|
|
283
|
+
const CloudUpload = createLucideIcon("cloud-upload", __iconNode$15);
|
|
284
|
+
const __iconNode$14 = [
|
|
278
285
|
["path", { d: "m18 16 4-4-4-4", key: "1inbqp" }],
|
|
279
286
|
["path", { d: "m6 8-4 4 4 4", key: "15zrgr" }],
|
|
280
287
|
["path", { d: "m14.5 4-5 16", key: "e7oirm" }]
|
|
281
288
|
];
|
|
282
|
-
const CodeXml = createLucideIcon("code-xml", __iconNode
|
|
283
|
-
const __iconNode$
|
|
289
|
+
const CodeXml = createLucideIcon("code-xml", __iconNode$14);
|
|
290
|
+
const __iconNode$13 = [
|
|
284
291
|
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
|
|
285
292
|
["path", { d: "M12 3v18", key: "108xh3" }]
|
|
286
293
|
];
|
|
287
|
-
const Columns2 = createLucideIcon("columns-2", __iconNode$
|
|
288
|
-
const __iconNode$
|
|
294
|
+
const Columns2 = createLucideIcon("columns-2", __iconNode$13);
|
|
295
|
+
const __iconNode$12 = [
|
|
289
296
|
["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2", key: "17jyea" }],
|
|
290
297
|
["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2", key: "zix9uf" }]
|
|
291
298
|
];
|
|
292
|
-
const Copy = createLucideIcon("copy", __iconNode$
|
|
293
|
-
const __iconNode$
|
|
299
|
+
const Copy = createLucideIcon("copy", __iconNode$12);
|
|
300
|
+
const __iconNode$11 = [
|
|
294
301
|
["path", { d: "M12 20v2", key: "1lh1kg" }],
|
|
295
302
|
["path", { d: "M12 2v2", key: "tus03m" }],
|
|
296
303
|
["path", { d: "M17 20v2", key: "1rnc9c" }],
|
|
@@ -306,31 +313,31 @@ const __iconNode$Y = [
|
|
|
306
313
|
["rect", { x: "4", y: "4", width: "16", height: "16", rx: "2", key: "1vbyd7" }],
|
|
307
314
|
["rect", { x: "8", y: "8", width: "8", height: "8", rx: "1", key: "z9xiuo" }]
|
|
308
315
|
];
|
|
309
|
-
const Cpu = createLucideIcon("cpu", __iconNode$
|
|
310
|
-
const __iconNode$
|
|
316
|
+
const Cpu = createLucideIcon("cpu", __iconNode$11);
|
|
317
|
+
const __iconNode$10 = [
|
|
311
318
|
["path", { d: "M12 15V3", key: "m9g1x1" }],
|
|
312
319
|
["path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4", key: "ih7n3h" }],
|
|
313
320
|
["path", { d: "m7 10 5 5 5-5", key: "brsn70" }]
|
|
314
321
|
];
|
|
315
|
-
const Download = createLucideIcon("download", __iconNode$
|
|
316
|
-
const __iconNode
|
|
322
|
+
const Download = createLucideIcon("download", __iconNode$10);
|
|
323
|
+
const __iconNode$$ = [
|
|
317
324
|
["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }],
|
|
318
325
|
["circle", { cx: "19", cy: "12", r: "1", key: "1wjl8i" }],
|
|
319
326
|
["circle", { cx: "5", cy: "12", r: "1", key: "1pcz8c" }]
|
|
320
327
|
];
|
|
321
|
-
const Ellipsis = createLucideIcon("ellipsis", __iconNode
|
|
322
|
-
const __iconNode$
|
|
328
|
+
const Ellipsis = createLucideIcon("ellipsis", __iconNode$$);
|
|
329
|
+
const __iconNode$_ = [
|
|
323
330
|
["line", { x1: "5", x2: "19", y1: "9", y2: "9", key: "1nwqeh" }],
|
|
324
331
|
["line", { x1: "5", x2: "19", y1: "15", y2: "15", key: "g8yjpy" }]
|
|
325
332
|
];
|
|
326
|
-
const Equal = createLucideIcon("equal", __iconNode$
|
|
327
|
-
const __iconNode$
|
|
333
|
+
const Equal = createLucideIcon("equal", __iconNode$_);
|
|
334
|
+
const __iconNode$Z = [
|
|
328
335
|
["path", { d: "M15 3h6v6", key: "1q9fwt" }],
|
|
329
336
|
["path", { d: "M10 14 21 3", key: "gplh6r" }],
|
|
330
337
|
["path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6", key: "a6xqqp" }]
|
|
331
338
|
];
|
|
332
|
-
const ExternalLink = createLucideIcon("external-link", __iconNode$
|
|
333
|
-
const __iconNode$
|
|
339
|
+
const ExternalLink = createLucideIcon("external-link", __iconNode$Z);
|
|
340
|
+
const __iconNode$Y = [
|
|
334
341
|
[
|
|
335
342
|
"path",
|
|
336
343
|
{
|
|
@@ -348,8 +355,8 @@ const __iconNode$T = [
|
|
|
348
355
|
],
|
|
349
356
|
["path", { d: "m2 2 20 20", key: "1ooewy" }]
|
|
350
357
|
];
|
|
351
|
-
const EyeOff = createLucideIcon("eye-off", __iconNode$
|
|
352
|
-
const __iconNode$
|
|
358
|
+
const EyeOff = createLucideIcon("eye-off", __iconNode$Y);
|
|
359
|
+
const __iconNode$X = [
|
|
353
360
|
[
|
|
354
361
|
"path",
|
|
355
362
|
{
|
|
@@ -359,8 +366,8 @@ const __iconNode$S = [
|
|
|
359
366
|
],
|
|
360
367
|
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }]
|
|
361
368
|
];
|
|
362
|
-
const Eye = createLucideIcon("eye", __iconNode$
|
|
363
|
-
const __iconNode$
|
|
369
|
+
const Eye = createLucideIcon("eye", __iconNode$X);
|
|
370
|
+
const __iconNode$W = [
|
|
364
371
|
[
|
|
365
372
|
"path",
|
|
366
373
|
{
|
|
@@ -378,8 +385,8 @@ const __iconNode$R = [
|
|
|
378
385
|
{ d: "M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1", key: "mpwhp6" }
|
|
379
386
|
]
|
|
380
387
|
];
|
|
381
|
-
const FileBraces = createLucideIcon("file-braces", __iconNode$
|
|
382
|
-
const __iconNode$
|
|
388
|
+
const FileBraces = createLucideIcon("file-braces", __iconNode$W);
|
|
389
|
+
const __iconNode$V = [
|
|
383
390
|
[
|
|
384
391
|
"path",
|
|
385
392
|
{
|
|
@@ -391,8 +398,8 @@ const __iconNode$Q = [
|
|
|
391
398
|
["path", { d: "M12 13V7", key: "h0r20n" }],
|
|
392
399
|
["path", { d: "M9 17h6", key: "r8uit2" }]
|
|
393
400
|
];
|
|
394
|
-
const FileDiff = createLucideIcon("file-diff", __iconNode$
|
|
395
|
-
const __iconNode$
|
|
401
|
+
const FileDiff = createLucideIcon("file-diff", __iconNode$V);
|
|
402
|
+
const __iconNode$U = [
|
|
396
403
|
[
|
|
397
404
|
"path",
|
|
398
405
|
{
|
|
@@ -404,8 +411,8 @@ const __iconNode$P = [
|
|
|
404
411
|
["circle", { cx: "11.5", cy: "14.5", r: "2.5", key: "1bq0ko" }],
|
|
405
412
|
["path", { d: "M13.3 16.3 15 18", key: "2quom7" }]
|
|
406
413
|
];
|
|
407
|
-
const FileSearch = createLucideIcon("file-search", __iconNode$
|
|
408
|
-
const __iconNode$
|
|
414
|
+
const FileSearch = createLucideIcon("file-search", __iconNode$U);
|
|
415
|
+
const __iconNode$T = [
|
|
409
416
|
[
|
|
410
417
|
"path",
|
|
411
418
|
{
|
|
@@ -417,8 +424,8 @@ const __iconNode$O = [
|
|
|
417
424
|
["path", { d: "m8 16 2-2-2-2", key: "10vzyd" }],
|
|
418
425
|
["path", { d: "M12 18h4", key: "1wd2n7" }]
|
|
419
426
|
];
|
|
420
|
-
const FileTerminal = createLucideIcon("file-terminal", __iconNode$
|
|
421
|
-
const __iconNode$
|
|
427
|
+
const FileTerminal = createLucideIcon("file-terminal", __iconNode$T);
|
|
428
|
+
const __iconNode$S = [
|
|
422
429
|
[
|
|
423
430
|
"path",
|
|
424
431
|
{
|
|
@@ -431,8 +438,8 @@ const __iconNode$N = [
|
|
|
431
438
|
["path", { d: "M16 13H8", key: "t4e002" }],
|
|
432
439
|
["path", { d: "M16 17H8", key: "z1uh3a" }]
|
|
433
440
|
];
|
|
434
|
-
const FileText = createLucideIcon("file-text", __iconNode$
|
|
435
|
-
const __iconNode$
|
|
441
|
+
const FileText = createLucideIcon("file-text", __iconNode$S);
|
|
442
|
+
const __iconNode$R = [
|
|
436
443
|
[
|
|
437
444
|
"path",
|
|
438
445
|
{
|
|
@@ -441,8 +448,8 @@ const __iconNode$M = [
|
|
|
441
448
|
}
|
|
442
449
|
]
|
|
443
450
|
];
|
|
444
|
-
const Flag = createLucideIcon("flag", __iconNode$
|
|
445
|
-
const __iconNode$
|
|
451
|
+
const Flag = createLucideIcon("flag", __iconNode$R);
|
|
452
|
+
const __iconNode$Q = [
|
|
446
453
|
[
|
|
447
454
|
"path",
|
|
448
455
|
{
|
|
@@ -453,8 +460,8 @@ const __iconNode$L = [
|
|
|
453
460
|
["path", { d: "M6.453 15h11.094", key: "3shlmq" }],
|
|
454
461
|
["path", { d: "M8.5 2h7", key: "csnxdl" }]
|
|
455
462
|
];
|
|
456
|
-
const FlaskConical = createLucideIcon("flask-conical", __iconNode$
|
|
457
|
-
const __iconNode$
|
|
463
|
+
const FlaskConical = createLucideIcon("flask-conical", __iconNode$Q);
|
|
464
|
+
const __iconNode$P = [
|
|
458
465
|
[
|
|
459
466
|
"path",
|
|
460
467
|
{
|
|
@@ -463,13 +470,13 @@ const __iconNode$K = [
|
|
|
463
470
|
}
|
|
464
471
|
]
|
|
465
472
|
];
|
|
466
|
-
const FolderOpen = createLucideIcon("folder-open", __iconNode$
|
|
467
|
-
const __iconNode$
|
|
473
|
+
const FolderOpen = createLucideIcon("folder-open", __iconNode$P);
|
|
474
|
+
const __iconNode$O = [
|
|
468
475
|
["path", { d: "m12 14 4-4", key: "9kzdfg" }],
|
|
469
476
|
["path", { d: "M3.34 19a10 10 0 1 1 17.32 0", key: "19p75a" }]
|
|
470
477
|
];
|
|
471
|
-
const Gauge = createLucideIcon("gauge", __iconNode$
|
|
472
|
-
const __iconNode$
|
|
478
|
+
const Gauge = createLucideIcon("gauge", __iconNode$O);
|
|
479
|
+
const __iconNode$N = [
|
|
473
480
|
["circle", { cx: "5", cy: "6", r: "3", key: "1qnov2" }],
|
|
474
481
|
["path", { d: "M12 6h5a2 2 0 0 1 2 2v7", key: "1yj91y" }],
|
|
475
482
|
["path", { d: "m15 9-3-3 3-3", key: "1lwv8l" }],
|
|
@@ -477,26 +484,36 @@ const __iconNode$I = [
|
|
|
477
484
|
["path", { d: "M12 18H7a2 2 0 0 1-2-2V9", key: "16sdep" }],
|
|
478
485
|
["path", { d: "m9 15 3 3-3 3", key: "1m3kbl" }]
|
|
479
486
|
];
|
|
480
|
-
const GitCompareArrows = createLucideIcon("git-compare-arrows", __iconNode$
|
|
481
|
-
const __iconNode$
|
|
487
|
+
const GitCompareArrows = createLucideIcon("git-compare-arrows", __iconNode$N);
|
|
488
|
+
const __iconNode$M = [
|
|
482
489
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
483
490
|
["path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20", key: "13o1zl" }],
|
|
484
491
|
["path", { d: "M2 12h20", key: "9i4pu4" }]
|
|
485
492
|
];
|
|
486
|
-
const Globe = createLucideIcon("globe", __iconNode$
|
|
487
|
-
const __iconNode$
|
|
493
|
+
const Globe = createLucideIcon("globe", __iconNode$M);
|
|
494
|
+
const __iconNode$L = [
|
|
495
|
+
[
|
|
496
|
+
"path",
|
|
497
|
+
{
|
|
498
|
+
d: "M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5",
|
|
499
|
+
key: "mvr1a0"
|
|
500
|
+
}
|
|
501
|
+
]
|
|
502
|
+
];
|
|
503
|
+
const Heart = createLucideIcon("heart", __iconNode$L);
|
|
504
|
+
const __iconNode$K = [
|
|
488
505
|
["path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8", key: "1357e3" }],
|
|
489
506
|
["path", { d: "M3 3v5h5", key: "1xhq8a" }],
|
|
490
507
|
["path", { d: "M12 7v5l4 2", key: "1fdv2h" }]
|
|
491
508
|
];
|
|
492
|
-
const History = createLucideIcon("history", __iconNode$
|
|
493
|
-
const __iconNode$
|
|
509
|
+
const History = createLucideIcon("history", __iconNode$K);
|
|
510
|
+
const __iconNode$J = [
|
|
494
511
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
495
512
|
["path", { d: "M12 16v-4", key: "1dtifu" }],
|
|
496
513
|
["path", { d: "M12 8h.01", key: "e9boi3" }]
|
|
497
514
|
];
|
|
498
|
-
const Info = createLucideIcon("info", __iconNode$
|
|
499
|
-
const __iconNode$
|
|
515
|
+
const Info = createLucideIcon("info", __iconNode$J);
|
|
516
|
+
const __iconNode$I = [
|
|
500
517
|
[
|
|
501
518
|
"path",
|
|
502
519
|
{
|
|
@@ -519,15 +536,15 @@ const __iconNode$E = [
|
|
|
519
536
|
}
|
|
520
537
|
]
|
|
521
538
|
];
|
|
522
|
-
const Layers = createLucideIcon("layers", __iconNode$
|
|
523
|
-
const __iconNode$
|
|
524
|
-
const LoaderCircle = createLucideIcon("loader-circle", __iconNode$
|
|
525
|
-
const __iconNode$
|
|
539
|
+
const Layers = createLucideIcon("layers", __iconNode$I);
|
|
540
|
+
const __iconNode$H = [["path", { d: "M21 12a9 9 0 1 1-6.219-8.56", key: "13zald" }]];
|
|
541
|
+
const LoaderCircle = createLucideIcon("loader-circle", __iconNode$H);
|
|
542
|
+
const __iconNode$G = [
|
|
526
543
|
["rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2", key: "1w4ew1" }],
|
|
527
544
|
["path", { d: "M7 11V7a5 5 0 0 1 10 0v4", key: "fwvmzm" }]
|
|
528
545
|
];
|
|
529
|
-
const Lock = createLucideIcon("lock", __iconNode$
|
|
530
|
-
const __iconNode$
|
|
546
|
+
const Lock = createLucideIcon("lock", __iconNode$G);
|
|
547
|
+
const __iconNode$F = [
|
|
531
548
|
[
|
|
532
549
|
"path",
|
|
533
550
|
{
|
|
@@ -536,23 +553,33 @@ const __iconNode$B = [
|
|
|
536
553
|
}
|
|
537
554
|
]
|
|
538
555
|
];
|
|
539
|
-
const MessageSquare = createLucideIcon("message-square", __iconNode$
|
|
540
|
-
const __iconNode$
|
|
556
|
+
const MessageSquare = createLucideIcon("message-square", __iconNode$F);
|
|
557
|
+
const __iconNode$E = [
|
|
541
558
|
["path", { d: "m14 10 7-7", key: "oa77jy" }],
|
|
542
559
|
["path", { d: "M20 10h-6V4", key: "mjg0md" }],
|
|
543
560
|
["path", { d: "m3 21 7-7", key: "tjx5ai" }],
|
|
544
561
|
["path", { d: "M4 14h6v6", key: "rmj7iw" }]
|
|
545
562
|
];
|
|
546
|
-
const Minimize2 = createLucideIcon("minimize-2", __iconNode$
|
|
547
|
-
const __iconNode$
|
|
548
|
-
const Minus = createLucideIcon("minus", __iconNode$
|
|
549
|
-
const __iconNode$
|
|
563
|
+
const Minimize2 = createLucideIcon("minimize-2", __iconNode$E);
|
|
564
|
+
const __iconNode$D = [["path", { d: "M5 12h14", key: "1ays0h" }]];
|
|
565
|
+
const Minus = createLucideIcon("minus", __iconNode$D);
|
|
566
|
+
const __iconNode$C = [
|
|
550
567
|
["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2", key: "48i651" }],
|
|
551
568
|
["line", { x1: "8", x2: "16", y1: "21", y2: "21", key: "1svkeh" }],
|
|
552
569
|
["line", { x1: "12", x2: "12", y1: "17", y2: "21", key: "vw1qmm" }]
|
|
553
570
|
];
|
|
554
|
-
const Monitor = createLucideIcon("monitor", __iconNode$
|
|
555
|
-
const __iconNode$
|
|
571
|
+
const Monitor = createLucideIcon("monitor", __iconNode$C);
|
|
572
|
+
const __iconNode$B = [
|
|
573
|
+
[
|
|
574
|
+
"path",
|
|
575
|
+
{
|
|
576
|
+
d: "M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401",
|
|
577
|
+
key: "kfwtm"
|
|
578
|
+
}
|
|
579
|
+
]
|
|
580
|
+
];
|
|
581
|
+
const Moon = createLucideIcon("moon", __iconNode$B);
|
|
582
|
+
const __iconNode$A = [
|
|
556
583
|
["path", { d: "M14 4.1 12 6", key: "ita8i4" }],
|
|
557
584
|
["path", { d: "m5.1 8-2.9-.8", key: "1go3kf" }],
|
|
558
585
|
["path", { d: "m6 12-1.9 2", key: "mnht97" }],
|
|
@@ -565,16 +592,16 @@ const __iconNode$x = [
|
|
|
565
592
|
}
|
|
566
593
|
]
|
|
567
594
|
];
|
|
568
|
-
const MousePointerClick = createLucideIcon("mouse-pointer-click", __iconNode$
|
|
569
|
-
const __iconNode$
|
|
595
|
+
const MousePointerClick = createLucideIcon("mouse-pointer-click", __iconNode$A);
|
|
596
|
+
const __iconNode$z = [
|
|
570
597
|
["rect", { x: "16", y: "16", width: "6", height: "6", rx: "1", key: "4q2zg0" }],
|
|
571
598
|
["rect", { x: "2", y: "16", width: "6", height: "6", rx: "1", key: "8cvhb9" }],
|
|
572
599
|
["rect", { x: "9", y: "2", width: "6", height: "6", rx: "1", key: "1egb70" }],
|
|
573
600
|
["path", { d: "M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3", key: "1jsf9p" }],
|
|
574
601
|
["path", { d: "M12 12V8", key: "2874zd" }]
|
|
575
602
|
];
|
|
576
|
-
const Network = createLucideIcon("network", __iconNode$
|
|
577
|
-
const __iconNode$
|
|
603
|
+
const Network = createLucideIcon("network", __iconNode$z);
|
|
604
|
+
const __iconNode$y = [
|
|
578
605
|
["path", { d: "M12 16h.01", key: "1drbdi" }],
|
|
579
606
|
["path", { d: "M12 8v4", key: "1got3b" }],
|
|
580
607
|
[
|
|
@@ -585,8 +612,8 @@ const __iconNode$v = [
|
|
|
585
612
|
}
|
|
586
613
|
]
|
|
587
614
|
];
|
|
588
|
-
const OctagonAlert = createLucideIcon("octagon-alert", __iconNode$
|
|
589
|
-
const __iconNode$
|
|
615
|
+
const OctagonAlert = createLucideIcon("octagon-alert", __iconNode$y);
|
|
616
|
+
const __iconNode$x = [
|
|
590
617
|
["path", { d: "m16 16 2 2 4-4", key: "gfu2re" }],
|
|
591
618
|
[
|
|
592
619
|
"path",
|
|
@@ -599,20 +626,25 @@ const __iconNode$u = [
|
|
|
599
626
|
["polyline", { points: "3.29 7 12 12 20.71 7", key: "ousv84" }],
|
|
600
627
|
["line", { x1: "12", x2: "12", y1: "22", y2: "12", key: "a4e8g8" }]
|
|
601
628
|
];
|
|
602
|
-
const PackageCheck = createLucideIcon("package-check", __iconNode$
|
|
603
|
-
const __iconNode$
|
|
629
|
+
const PackageCheck = createLucideIcon("package-check", __iconNode$x);
|
|
630
|
+
const __iconNode$w = [
|
|
604
631
|
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
|
|
605
632
|
["path", { d: "M15 3v18", key: "14nvp0" }],
|
|
606
633
|
["path", { d: "m8 9 3 3-3 3", key: "12hl5m" }]
|
|
607
634
|
];
|
|
608
|
-
const PanelRightClose = createLucideIcon("panel-right-close", __iconNode$
|
|
609
|
-
const __iconNode$
|
|
635
|
+
const PanelRightClose = createLucideIcon("panel-right-close", __iconNode$w);
|
|
636
|
+
const __iconNode$v = [
|
|
610
637
|
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
|
|
611
638
|
["path", { d: "M15 3v18", key: "14nvp0" }],
|
|
612
639
|
["path", { d: "m10 15-3-3 3-3", key: "1pgupc" }]
|
|
613
640
|
];
|
|
614
|
-
const PanelRightOpen = createLucideIcon("panel-right-open", __iconNode$
|
|
615
|
-
const __iconNode$
|
|
641
|
+
const PanelRightOpen = createLucideIcon("panel-right-open", __iconNode$v);
|
|
642
|
+
const __iconNode$u = [
|
|
643
|
+
["rect", { x: "14", y: "3", width: "5", height: "18", rx: "1", key: "kaeet6" }],
|
|
644
|
+
["rect", { x: "5", y: "3", width: "5", height: "18", rx: "1", key: "1wsw3u" }]
|
|
645
|
+
];
|
|
646
|
+
const Pause = createLucideIcon("pause", __iconNode$u);
|
|
647
|
+
const __iconNode$t = [
|
|
616
648
|
[
|
|
617
649
|
"path",
|
|
618
650
|
{
|
|
@@ -622,28 +654,38 @@ const __iconNode$r = [
|
|
|
622
654
|
],
|
|
623
655
|
["path", { d: "m15 5 4 4", key: "1mk7zo" }]
|
|
624
656
|
];
|
|
625
|
-
const Pencil = createLucideIcon("pencil", __iconNode$
|
|
626
|
-
const __iconNode$
|
|
657
|
+
const Pencil = createLucideIcon("pencil", __iconNode$t);
|
|
658
|
+
const __iconNode$s = [
|
|
659
|
+
[
|
|
660
|
+
"path",
|
|
661
|
+
{
|
|
662
|
+
d: "M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z",
|
|
663
|
+
key: "10ikf1"
|
|
664
|
+
}
|
|
665
|
+
]
|
|
666
|
+
];
|
|
667
|
+
const Play = createLucideIcon("play", __iconNode$s);
|
|
668
|
+
const __iconNode$r = [
|
|
627
669
|
["path", { d: "M5 12h14", key: "1ays0h" }],
|
|
628
670
|
["path", { d: "M12 5v14", key: "s699le" }]
|
|
629
671
|
];
|
|
630
|
-
const Plus = createLucideIcon("plus", __iconNode$
|
|
631
|
-
const __iconNode$
|
|
672
|
+
const Plus = createLucideIcon("plus", __iconNode$r);
|
|
673
|
+
const __iconNode$q = [
|
|
632
674
|
["path", { d: "M16.247 7.761a6 6 0 0 1 0 8.478", key: "1fwjs5" }],
|
|
633
675
|
["path", { d: "M19.075 4.933a10 10 0 0 1 0 14.134", key: "ehdyv1" }],
|
|
634
676
|
["path", { d: "M4.925 19.067a10 10 0 0 1 0-14.134", key: "1q22gi" }],
|
|
635
677
|
["path", { d: "M7.753 16.239a6 6 0 0 1 0-8.478", key: "r2q7qm" }],
|
|
636
678
|
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }]
|
|
637
679
|
];
|
|
638
|
-
const Radio = createLucideIcon("radio", __iconNode$
|
|
639
|
-
const __iconNode$
|
|
680
|
+
const Radio = createLucideIcon("radio", __iconNode$q);
|
|
681
|
+
const __iconNode$p = [
|
|
640
682
|
["path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8", key: "v9h5vc" }],
|
|
641
683
|
["path", { d: "M21 3v5h-5", key: "1q7to0" }],
|
|
642
684
|
["path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16", key: "3uifl3" }],
|
|
643
685
|
["path", { d: "M8 16H3v5", key: "1cv678" }]
|
|
644
686
|
];
|
|
645
|
-
const RefreshCw = createLucideIcon("refresh-cw", __iconNode$
|
|
646
|
-
const __iconNode$
|
|
687
|
+
const RefreshCw = createLucideIcon("refresh-cw", __iconNode$p);
|
|
688
|
+
const __iconNode$o = [
|
|
647
689
|
[
|
|
648
690
|
"path",
|
|
649
691
|
{
|
|
@@ -661,24 +703,24 @@ const __iconNode$n = [
|
|
|
661
703
|
["path", { d: "M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0", key: "1f8sc4" }],
|
|
662
704
|
["path", { d: "M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5", key: "qeys4" }]
|
|
663
705
|
];
|
|
664
|
-
const Rocket = createLucideIcon("rocket", __iconNode$
|
|
665
|
-
const __iconNode$
|
|
706
|
+
const Rocket = createLucideIcon("rocket", __iconNode$o);
|
|
707
|
+
const __iconNode$n = [
|
|
666
708
|
["path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8", key: "1357e3" }],
|
|
667
709
|
["path", { d: "M3 3v5h5", key: "1xhq8a" }]
|
|
668
710
|
];
|
|
669
|
-
const RotateCcw = createLucideIcon("rotate-ccw", __iconNode$
|
|
670
|
-
const __iconNode$
|
|
711
|
+
const RotateCcw = createLucideIcon("rotate-ccw", __iconNode$n);
|
|
712
|
+
const __iconNode$m = [
|
|
671
713
|
["path", { d: "M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8", key: "1p45f6" }],
|
|
672
714
|
["path", { d: "M21 3v5h-5", key: "1q7to0" }]
|
|
673
715
|
];
|
|
674
|
-
const RotateCw = createLucideIcon("rotate-cw", __iconNode$
|
|
675
|
-
const __iconNode$
|
|
716
|
+
const RotateCw = createLucideIcon("rotate-cw", __iconNode$m);
|
|
717
|
+
const __iconNode$l = [
|
|
676
718
|
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
|
|
677
719
|
["path", { d: "M21 9H3", key: "1338ky" }],
|
|
678
720
|
["path", { d: "M21 15H3", key: "9uk58r" }]
|
|
679
721
|
];
|
|
680
|
-
const Rows3 = createLucideIcon("rows-3", __iconNode$
|
|
681
|
-
const __iconNode$
|
|
722
|
+
const Rows3 = createLucideIcon("rows-3", __iconNode$l);
|
|
723
|
+
const __iconNode$k = [
|
|
682
724
|
[
|
|
683
725
|
"path",
|
|
684
726
|
{
|
|
@@ -689,20 +731,20 @@ const __iconNode$j = [
|
|
|
689
731
|
["path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7", key: "1ydtos" }],
|
|
690
732
|
["path", { d: "M7 3v4a1 1 0 0 0 1 1h7", key: "t51u73" }]
|
|
691
733
|
];
|
|
692
|
-
const Save = createLucideIcon("save", __iconNode$
|
|
693
|
-
const __iconNode$
|
|
734
|
+
const Save = createLucideIcon("save", __iconNode$k);
|
|
735
|
+
const __iconNode$j = [
|
|
694
736
|
["path", { d: "M3 7V5a2 2 0 0 1 2-2h2", key: "aa7l1z" }],
|
|
695
737
|
["path", { d: "M17 3h2a2 2 0 0 1 2 2v2", key: "4qcy5o" }],
|
|
696
738
|
["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2", key: "6vwrx8" }],
|
|
697
739
|
["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2", key: "ioqczr" }]
|
|
698
740
|
];
|
|
699
|
-
const Scan = createLucideIcon("scan", __iconNode$
|
|
700
|
-
const __iconNode$
|
|
741
|
+
const Scan = createLucideIcon("scan", __iconNode$j);
|
|
742
|
+
const __iconNode$i = [
|
|
701
743
|
["path", { d: "m21 21-4.34-4.34", key: "14j7rj" }],
|
|
702
744
|
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }]
|
|
703
745
|
];
|
|
704
|
-
const Search = createLucideIcon("search", __iconNode$
|
|
705
|
-
const __iconNode$
|
|
746
|
+
const Search = createLucideIcon("search", __iconNode$i);
|
|
747
|
+
const __iconNode$h = [
|
|
706
748
|
[
|
|
707
749
|
"path",
|
|
708
750
|
{
|
|
@@ -712,15 +754,15 @@ const __iconNode$g = [
|
|
|
712
754
|
],
|
|
713
755
|
["path", { d: "m21.854 2.147-10.94 10.939", key: "12cjpa" }]
|
|
714
756
|
];
|
|
715
|
-
const Send = createLucideIcon("send", __iconNode$
|
|
716
|
-
const __iconNode$
|
|
757
|
+
const Send = createLucideIcon("send", __iconNode$h);
|
|
758
|
+
const __iconNode$g = [
|
|
717
759
|
["rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2", key: "ngkwjq" }],
|
|
718
760
|
["rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2", key: "iecqi9" }],
|
|
719
761
|
["line", { x1: "6", x2: "6.01", y1: "6", y2: "6", key: "16zg32" }],
|
|
720
762
|
["line", { x1: "6", x2: "6.01", y1: "18", y2: "18", key: "nzw8ys" }]
|
|
721
763
|
];
|
|
722
|
-
const Server = createLucideIcon("server", __iconNode$
|
|
723
|
-
const __iconNode$
|
|
764
|
+
const Server = createLucideIcon("server", __iconNode$g);
|
|
765
|
+
const __iconNode$f = [
|
|
724
766
|
[
|
|
725
767
|
"path",
|
|
726
768
|
{
|
|
@@ -730,8 +772,8 @@ const __iconNode$e = [
|
|
|
730
772
|
],
|
|
731
773
|
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }]
|
|
732
774
|
];
|
|
733
|
-
const Settings = createLucideIcon("settings", __iconNode$
|
|
734
|
-
const __iconNode$
|
|
775
|
+
const Settings = createLucideIcon("settings", __iconNode$f);
|
|
776
|
+
const __iconNode$e = [
|
|
735
777
|
[
|
|
736
778
|
"path",
|
|
737
779
|
{
|
|
@@ -742,8 +784,8 @@ const __iconNode$d = [
|
|
|
742
784
|
["path", { d: "M12 8v4", key: "1got3b" }],
|
|
743
785
|
["path", { d: "M12 16h.01", key: "1drbdi" }]
|
|
744
786
|
];
|
|
745
|
-
const ShieldAlert = createLucideIcon("shield-alert", __iconNode$
|
|
746
|
-
const __iconNode$
|
|
787
|
+
const ShieldAlert = createLucideIcon("shield-alert", __iconNode$e);
|
|
788
|
+
const __iconNode$d = [
|
|
747
789
|
[
|
|
748
790
|
"path",
|
|
749
791
|
{
|
|
@@ -753,8 +795,8 @@ const __iconNode$c = [
|
|
|
753
795
|
],
|
|
754
796
|
["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }]
|
|
755
797
|
];
|
|
756
|
-
const ShieldCheck = createLucideIcon("shield-check", __iconNode$
|
|
757
|
-
const __iconNode$
|
|
798
|
+
const ShieldCheck = createLucideIcon("shield-check", __iconNode$d);
|
|
799
|
+
const __iconNode$c = [
|
|
758
800
|
["path", { d: "M7 18v-6a5 5 0 1 1 10 0v6", key: "pcx96s" }],
|
|
759
801
|
[
|
|
760
802
|
"path",
|
|
@@ -767,8 +809,8 @@ const __iconNode$b = [
|
|
|
767
809
|
["path", { d: "m4.929 4.929.707.707", key: "1i51kw" }],
|
|
768
810
|
["path", { d: "M12 12v6", key: "3ahymv" }]
|
|
769
811
|
];
|
|
770
|
-
const Siren = createLucideIcon("siren", __iconNode$
|
|
771
|
-
const __iconNode$
|
|
812
|
+
const Siren = createLucideIcon("siren", __iconNode$c);
|
|
813
|
+
const __iconNode$b = [
|
|
772
814
|
[
|
|
773
815
|
"path",
|
|
774
816
|
{
|
|
@@ -780,7 +822,19 @@ const __iconNode$a = [
|
|
|
780
822
|
["path", { d: "M22 4h-4", key: "gwowj6" }],
|
|
781
823
|
["circle", { cx: "4", cy: "20", r: "2", key: "6kqj1y" }]
|
|
782
824
|
];
|
|
783
|
-
const Sparkles = createLucideIcon("sparkles", __iconNode$
|
|
825
|
+
const Sparkles = createLucideIcon("sparkles", __iconNode$b);
|
|
826
|
+
const __iconNode$a = [
|
|
827
|
+
["circle", { cx: "12", cy: "12", r: "4", key: "4exip2" }],
|
|
828
|
+
["path", { d: "M12 2v2", key: "tus03m" }],
|
|
829
|
+
["path", { d: "M12 20v2", key: "1lh1kg" }],
|
|
830
|
+
["path", { d: "m4.93 4.93 1.41 1.41", key: "149t6j" }],
|
|
831
|
+
["path", { d: "m17.66 17.66 1.41 1.41", key: "ptbguv" }],
|
|
832
|
+
["path", { d: "M2 12h2", key: "1t8f8n" }],
|
|
833
|
+
["path", { d: "M20 12h2", key: "1q8mjw" }],
|
|
834
|
+
["path", { d: "m6.34 17.66-1.41 1.41", key: "1m8zz5" }],
|
|
835
|
+
["path", { d: "m19.07 4.93-1.41 1.41", key: "1shlcs" }]
|
|
836
|
+
];
|
|
837
|
+
const Sun = createLucideIcon("sun", __iconNode$a);
|
|
784
838
|
const __iconNode$9 = [
|
|
785
839
|
["path", { d: "M12 19h8", key: "baeox8" }],
|
|
786
840
|
["path", { d: "m4 17 6-6-6-6", key: "1yngyt" }]
|
|
@@ -861,99 +915,105 @@ const __iconNode = [
|
|
|
861
915
|
];
|
|
862
916
|
const Zap = createLucideIcon("zap", __iconNode);
|
|
863
917
|
export {
|
|
864
|
-
|
|
918
|
+
Cpu as $,
|
|
865
919
|
ArrowLeft as A,
|
|
866
920
|
BrainCircuit as B,
|
|
867
921
|
CircleCheck as C,
|
|
868
922
|
Download as D,
|
|
869
|
-
|
|
923
|
+
Eye as E,
|
|
870
924
|
FileBraces as F,
|
|
871
925
|
Gauge as G,
|
|
872
|
-
|
|
926
|
+
Heart as H,
|
|
873
927
|
Info as I,
|
|
874
|
-
|
|
875
|
-
|
|
928
|
+
Settings as J,
|
|
929
|
+
Monitor as K,
|
|
876
930
|
LoaderCircle as L,
|
|
877
|
-
|
|
931
|
+
Moon as M,
|
|
878
932
|
Network as N,
|
|
879
|
-
|
|
933
|
+
Rocket as O,
|
|
880
934
|
PanelRightOpen as P,
|
|
881
|
-
|
|
935
|
+
PackageCheck as Q,
|
|
882
936
|
RefreshCw as R,
|
|
883
937
|
Search as S,
|
|
884
938
|
TriangleAlert as T,
|
|
885
939
|
Upload as U,
|
|
886
|
-
|
|
887
|
-
|
|
940
|
+
History as V,
|
|
941
|
+
Scan as W,
|
|
888
942
|
X,
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
943
|
+
CircleAlert as Y,
|
|
944
|
+
ArrowUpRight as Z,
|
|
945
|
+
ArrowDownRight as _,
|
|
892
946
|
ChevronDown as a,
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
947
|
+
FolderOpen as a0,
|
|
948
|
+
Bell as a1,
|
|
949
|
+
Clock3 as a2,
|
|
950
|
+
ShieldAlert as a3,
|
|
951
|
+
EyeOff as a4,
|
|
952
|
+
ExternalLink as a5,
|
|
953
|
+
Clock as a6,
|
|
954
|
+
RotateCw as a7,
|
|
955
|
+
Pencil as a8,
|
|
956
|
+
MessageSquare as a9,
|
|
957
|
+
Ellipsis as aA,
|
|
958
|
+
CodeXml as aB,
|
|
959
|
+
Blocks as aC,
|
|
960
|
+
MousePointerClick as aD,
|
|
961
|
+
FileText as aE,
|
|
962
|
+
Rows3 as aF,
|
|
963
|
+
Columns2 as aG,
|
|
964
|
+
Equal as aH,
|
|
965
|
+
Braces as aI,
|
|
966
|
+
Minimize2 as aJ,
|
|
967
|
+
CircleStop as aK,
|
|
968
|
+
Zap as aa,
|
|
969
|
+
Wrench as ab,
|
|
970
|
+
Brain as ac,
|
|
971
|
+
CircleCheckBig as ad,
|
|
972
|
+
Minus as ae,
|
|
973
|
+
CircleX as af,
|
|
974
|
+
ShieldCheck as ag,
|
|
975
|
+
Save as ah,
|
|
976
|
+
FileSearch as ai,
|
|
977
|
+
CloudUpload as aj,
|
|
978
|
+
CircleQuestionMark as ak,
|
|
979
|
+
Server as al,
|
|
980
|
+
Lock as am,
|
|
981
|
+
Wifi as an,
|
|
982
|
+
WifiOff as ao,
|
|
983
|
+
OctagonAlert as ap,
|
|
984
|
+
Radio as aq,
|
|
985
|
+
Globe as ar,
|
|
986
|
+
FileTerminal as as,
|
|
987
|
+
ChevronsUp as at,
|
|
988
|
+
ChevronsDown as au,
|
|
989
|
+
FileDiff as av,
|
|
990
|
+
RotateCcw as aw,
|
|
991
|
+
GitCompareArrows as ax,
|
|
992
|
+
ArrowUp as ay,
|
|
993
|
+
ArrowDown as az,
|
|
934
994
|
Check as b,
|
|
935
995
|
PanelRightClose as c,
|
|
936
996
|
Trash2 as d,
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
997
|
+
Pause as e,
|
|
998
|
+
Play as f,
|
|
999
|
+
Plus as g,
|
|
1000
|
+
Send as h,
|
|
1001
|
+
ChevronUp as i,
|
|
1002
|
+
Copy as j,
|
|
1003
|
+
ChevronsLeft as k,
|
|
1004
|
+
ChevronLeft as l,
|
|
1005
|
+
ChevronRight as m,
|
|
1006
|
+
ChevronsRight as n,
|
|
1007
|
+
Clapperboard as o,
|
|
1008
|
+
Flag as p,
|
|
1009
|
+
Siren as q,
|
|
1010
|
+
Timer as r,
|
|
1011
|
+
Sun as s,
|
|
1012
|
+
ALargeSmall as t,
|
|
1013
|
+
Layers as u,
|
|
1014
|
+
FlaskConical as v,
|
|
1015
|
+
Sparkles as w,
|
|
1016
|
+
Activity as x,
|
|
1017
|
+
Beaker as y,
|
|
1018
|
+
Terminal as z
|
|
959
1019
|
};
|