@polderlabs/bizar 5.4.1 → 5.5.1
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/bizar-dash/dist/assets/{EnvVarsSection-DhLHZ5ua.js → EnvVarsSection-BUQnyVQD.js} +3 -3
- package/bizar-dash/dist/assets/{EnvVarsSection-DhLHZ5ua.js.map → EnvVarsSection-BUQnyVQD.js.map} +1 -1
- package/bizar-dash/dist/assets/{MobileChat-9UpvDP6-.js → MobileChat-8FupFgTv.js} +1 -1
- package/bizar-dash/dist/assets/{MobileChat-9UpvDP6-.js.map → MobileChat-8FupFgTv.js.map} +1 -1
- package/bizar-dash/dist/assets/MobileSettings-BkXtglA6.js +1 -0
- package/bizar-dash/dist/assets/MobileSettings-BkXtglA6.js.map +1 -0
- package/bizar-dash/dist/assets/{Toast-BlcKl_dN.js → Toast-CUwkLRms.js} +1 -1
- package/bizar-dash/dist/assets/{Toast-BlcKl_dN.js.map → Toast-CUwkLRms.js.map} +1 -1
- package/bizar-dash/dist/assets/{icons-CMPxNV8t.js → icons-COpQr35l.js} +125 -110
- package/bizar-dash/dist/assets/icons-COpQr35l.js.map +1 -0
- package/bizar-dash/dist/assets/main-Bz_zWFCw.css +1 -0
- package/bizar-dash/dist/assets/main-gqVwliHz.js +18 -0
- package/bizar-dash/dist/assets/main-gqVwliHz.js.map +1 -0
- package/bizar-dash/dist/assets/mobile-B7dAkmYd.js +1 -0
- package/bizar-dash/dist/assets/{mobile-DDY1lquG.js.map → mobile-B7dAkmYd.js.map} +1 -1
- package/bizar-dash/dist/assets/mobile-layout-ClC6Qa42.js +2 -0
- package/bizar-dash/dist/assets/mobile-layout-ClC6Qa42.js.map +1 -0
- package/bizar-dash/dist/assets/{useSlashCommands-eFCiWHVt.js → useSlashCommands-B3MZ1JXa.js} +2 -2
- package/bizar-dash/dist/assets/{useSlashCommands-eFCiWHVt.js.map → useSlashCommands-B3MZ1JXa.js.map} +1 -1
- package/bizar-dash/dist/index.html +7 -7
- package/bizar-dash/dist/mobile.html +3 -3
- package/bizar-dash/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -1
- package/bizar-dash/src/server/backup-store.mjs +6 -1
- package/bizar-dash/src/server/bg-spawner.mjs +791 -0
- package/bizar-dash/src/server/headroom.mjs +3 -1
- package/bizar-dash/src/server/memory-lightrag.mjs +268 -2
- package/bizar-dash/src/server/memory-store.mjs +43 -3
- package/bizar-dash/src/server/opencode-sdk.mjs +63 -3
- package/bizar-dash/src/server/plugins/registry.mjs +1 -1
- package/bizar-dash/src/server/routes/activity.mjs +85 -0
- package/bizar-dash/src/server/routes/background.mjs +161 -0
- package/bizar-dash/src/server/routes/lightrag.mjs +10 -0
- package/bizar-dash/src/server/routes/memory.mjs +8 -0
- package/bizar-dash/src/server/routes/opencode-session-detail.mjs +1 -1
- package/bizar-dash/src/server/server.mjs +26 -1
- package/bizar-dash/src/web/App.tsx +46 -36
- package/bizar-dash/src/web/components/InstallConfirmDialog.tsx +1 -1
- package/bizar-dash/src/web/components/Sidebar.tsx +7 -27
- package/bizar-dash/src/web/components/Topbar.tsx +48 -11
- package/bizar-dash/src/web/lib/types.ts +39 -1
- package/bizar-dash/src/web/styles/main.css +93 -26
- package/bizar-dash/src/web/styles/memory.css +17 -0
- package/bizar-dash/src/web/styles/settings.css +9 -171
- package/bizar-dash/src/web/views/BackgroundAgents.tsx +399 -30
- package/bizar-dash/src/web/views/Marketplace.tsx +192 -31
- package/bizar-dash/src/web/views/Settings.tsx +205 -184
- package/bizar-dash/src/web/views/SpawnAgentModal.tsx +221 -0
- package/bizar-dash/src/web/views/memory/ConfigPanel.tsx +157 -7
- package/bizar-dash/src/web/views/memory/MemoryOverview.tsx +11 -0
- package/bizar-dash/src/web/views/settings/MemorySection.tsx +65 -11
- package/bizar-dash/tests/BackgroundAgents.test.tsx +160 -0
- package/bizar-dash/tests/background-pause-resume.test.mjs +46 -0
- package/bizar-dash/tests/background-sdk-session.test.mjs +94 -0
- package/bizar-dash/tests/background-session-events.test.mjs +74 -0
- package/bizar-dash/tests/background-spawn-from-ui.test.mjs +36 -0
- package/bizar-dash/tests/background-steer-sdk.test.mjs +71 -0
- package/bizar-dash/tests/background-steer.test.mjs +60 -0
- package/bizar-dash/tests/lightrag-startup-hook.test.mjs +206 -0
- package/bizar-dash/tests/memory-auto-reindex.test.mjs +196 -0
- package/bizar-dash/tests/memory-cli.test.mjs +1 -1
- package/bizar-dash/tests/memory-default-vault.test.mjs +90 -3
- package/bizar-dash/tests/memory-lightrag-extended.test.mjs +131 -0
- package/bizar-dash/tests/views/Marketplace.test.tsx +200 -0
- package/bizar-dash/tests/views/Memory.test.tsx +235 -0
- package/bizar-dash/tests/views/Settings.test.tsx +160 -0
- package/bizar-dash/tests/views/sidebar.test.tsx +116 -0
- package/bizar-dash/tests/views/topbar.test.tsx +102 -0
- package/cli/bin.mjs +16 -0
- package/cli/commands/deploy/docker.mjs +2 -1
- package/cli/commands/lightrag.mjs +171 -0
- package/cli/commands/marketplace.mjs +1 -1
- package/cli/commands/service.mjs +7 -0
- package/cli/commands/util.mjs +8 -1
- package/cli/init.mjs +1 -1
- package/cli/post-install-smoke.mjs +230 -0
- package/cli/provision.mjs +177 -0
- package/cli/provision.test.mjs +180 -0
- package/cli/service-controller.mjs +378 -28
- package/cli/service-controller.test.mjs +100 -0
- package/cli/service-env.mjs +139 -0
- package/cli/service.mjs +23 -0
- package/config/agents/_shared/AGENT_BASELINE.md +6 -6
- package/install.sh +87 -6
- package/package.json +1 -1
- package/plugins/bizar/index.ts +147 -0
- package/plugins/bizar/src/background-state.ts +95 -5
- package/plugins/bizar/src/background.ts +571 -15
- package/plugins/bizar/src/hooks/memory-inject.ts +247 -0
- package/plugins/bizar/src/hooks/memory-write-on-end.ts +188 -0
- package/plugins/bizar/src/opencode-runner.ts +100 -287
- package/plugins/bizar/src/tools/bg-pause.ts +77 -0
- package/plugins/bizar/src/tools/bg-report-progress.ts +101 -0
- package/plugins/bizar/src/tools/bg-resume.ts +72 -0
- package/plugins/bizar/src/tools/bg-send-message.ts +204 -0
- package/plugins/bizar/src/tools/bg-spawn.ts +237 -151
- package/plugins/bizar/src/tools/bg-status.ts +10 -0
- package/plugins/bizar/src/tools/memory-list.ts +135 -0
- package/plugins/bizar/src/tools/memory-read.ts +142 -0
- package/plugins/bizar/src/tools/memory-search.ts +228 -0
- package/plugins/bizar/src/tools/memory-write.ts +183 -0
- package/plugins/bizar/tests/memory-write-on-end.test.ts +92 -0
- package/plugins/bizar/tests/tools/bg-pause.test.ts +64 -0
- package/plugins/bizar/tests/tools/bg-report-progress.test.ts +82 -0
- package/plugins/bizar/tests/tools/bg-resume.test.ts +43 -0
- package/plugins/bizar/tests/tools/bg-send-message.test.ts +119 -0
- package/plugins/bizar/tests/tools/bg-spawn-http.test.ts +223 -0
- package/bizar-dash/dist/assets/MobileSettings-BFmN9ZWR.js +0 -1
- package/bizar-dash/dist/assets/MobileSettings-BFmN9ZWR.js.map +0 -1
- package/bizar-dash/dist/assets/icons-CMPxNV8t.js.map +0 -1
- package/bizar-dash/dist/assets/main-Dhrvp9Gt.js +0 -16
- package/bizar-dash/dist/assets/main-Dhrvp9Gt.js.map +0 -1
- package/bizar-dash/dist/assets/main-O2tZVdHm.css +0 -1
- package/bizar-dash/dist/assets/mobile-DDY1lquG.js +0 -1
- package/bizar-dash/dist/assets/mobile-layout-BjkoHh1W.js +0 -2
- package/bizar-dash/dist/assets/mobile-layout-BjkoHh1W.js.map +0 -1
- package/bizar-dash/src/web/components/SettingsNav.tsx +0 -101
- package/bizar-dash/tests/settings-layout.test.tsx +0 -129
- package/bizar-dash/tests/settings-mode-wiring.test.tsx +0 -151
- package/bizar-dash/tests/settings-nav.test.tsx +0 -126
|
@@ -58,12 +58,12 @@ import{r as k}from"./react-vendor-Dn4wqh4Z.js";/**
|
|
|
58
58
|
*
|
|
59
59
|
* This source code is licensed under the ISC license.
|
|
60
60
|
* See the LICENSE file in the root directory of this source tree.
|
|
61
|
-
*/const
|
|
61
|
+
*/const q=a("ArrowUp",[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]]);/**
|
|
62
62
|
* @license lucide-react v0.460.0 - ISC
|
|
63
63
|
*
|
|
64
64
|
* This source code is licensed under the ISC license.
|
|
65
65
|
* See the LICENSE file in the root directory of this source tree.
|
|
66
|
-
*/const
|
|
66
|
+
*/const z=a("Bell",[["path",{d:"M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9",key:"1qo2s2"}],["path",{d:"M10.3 21a1.94 1.94 0 0 0 3.4 0",key:"qgo35s"}]]);/**
|
|
67
67
|
* @license lucide-react v0.460.0 - ISC
|
|
68
68
|
*
|
|
69
69
|
* This source code is licensed under the ISC license.
|
|
@@ -78,42 +78,37 @@ import{r as k}from"./react-vendor-Dn4wqh4Z.js";/**
|
|
|
78
78
|
*
|
|
79
79
|
* This source code is licensed under the ISC license.
|
|
80
80
|
* See the LICENSE file in the root directory of this source tree.
|
|
81
|
-
*/const H=a("
|
|
81
|
+
*/const H=a("Brain",[["path",{d:"M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z",key:"l5xja"}],["path",{d:"M12 5a3 3 0 1 1 5.997.125 4 4 0 0 1 2.526 5.77 4 4 0 0 1-.556 6.588A4 4 0 1 1 12 18Z",key:"ep3f8r"}],["path",{d:"M15 13a4.5 4.5 0 0 1-3-4 4.5 4.5 0 0 1-3 4",key:"1p4c4q"}],["path",{d:"M17.599 6.5a3 3 0 0 0 .399-1.375",key:"tmeiqw"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5",key:"105sqy"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396",key:"ql3yin"}],["path",{d:"M19.938 10.5a4 4 0 0 1 .585.396",key:"1qfode"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516",key:"2e4loj"}],["path",{d:"M19.967 17.484A4 4 0 0 1 18 18",key:"159ez6"}]]);/**
|
|
82
82
|
* @license lucide-react v0.460.0 - ISC
|
|
83
83
|
*
|
|
84
84
|
* This source code is licensed under the ISC license.
|
|
85
85
|
* See the LICENSE file in the root directory of this source tree.
|
|
86
|
-
*/const V=a("
|
|
86
|
+
*/const V=a("Calendar",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}]]);/**
|
|
87
87
|
* @license lucide-react v0.460.0 - ISC
|
|
88
88
|
*
|
|
89
89
|
* This source code is licensed under the ISC license.
|
|
90
90
|
* See the LICENSE file in the root directory of this source tree.
|
|
91
|
-
*/const P=a("
|
|
91
|
+
*/const P=a("Camera",[["path",{d:"M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z",key:"1tc9qg"}],["circle",{cx:"12",cy:"13",r:"3",key:"1vg3eu"}]]);/**
|
|
92
92
|
* @license lucide-react v0.460.0 - ISC
|
|
93
93
|
*
|
|
94
94
|
* This source code is licensed under the ISC license.
|
|
95
95
|
* See the LICENSE file in the root directory of this source tree.
|
|
96
|
-
*/const S=a("
|
|
96
|
+
*/const S=a("ChartNoAxesColumn",[["line",{x1:"18",x2:"18",y1:"20",y2:"10",key:"1xfpm4"}],["line",{x1:"12",x2:"12",y1:"20",y2:"4",key:"be30l9"}],["line",{x1:"6",x2:"6",y1:"20",y2:"14",key:"1r4le6"}]]);/**
|
|
97
97
|
* @license lucide-react v0.460.0 - ISC
|
|
98
98
|
*
|
|
99
99
|
* This source code is licensed under the ISC license.
|
|
100
100
|
* See the LICENSE file in the root directory of this source tree.
|
|
101
|
-
*/const j=a("
|
|
101
|
+
*/const j=a("Check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]);/**
|
|
102
102
|
* @license lucide-react v0.460.0 - ISC
|
|
103
103
|
*
|
|
104
104
|
* This source code is licensed under the ISC license.
|
|
105
105
|
* See the LICENSE file in the root directory of this source tree.
|
|
106
|
-
*/const R=a("
|
|
106
|
+
*/const R=a("ChevronDown",[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]]);/**
|
|
107
107
|
* @license lucide-react v0.460.0 - ISC
|
|
108
108
|
*
|
|
109
109
|
* This source code is licensed under the ISC license.
|
|
110
110
|
* See the LICENSE file in the root directory of this source tree.
|
|
111
|
-
*/const F=a("
|
|
112
|
-
* @license lucide-react v0.460.0 - ISC
|
|
113
|
-
*
|
|
114
|
-
* This source code is licensed under the ISC license.
|
|
115
|
-
* See the LICENSE file in the root directory of this source tree.
|
|
116
|
-
*/const Z=a("ChevronLeft",[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]]);/**
|
|
111
|
+
*/const F=a("ChevronLeft",[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]]);/**
|
|
117
112
|
* @license lucide-react v0.460.0 - ISC
|
|
118
113
|
*
|
|
119
114
|
* This source code is licensed under the ISC license.
|
|
@@ -138,22 +133,27 @@ import{r as k}from"./react-vendor-Dn4wqh4Z.js";/**
|
|
|
138
133
|
*
|
|
139
134
|
* This source code is licensed under the ISC license.
|
|
140
135
|
* See the LICENSE file in the root directory of this source tree.
|
|
141
|
-
*/const
|
|
136
|
+
*/const Z=a("CircleDollarSign",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8",key:"1h4pet"}],["path",{d:"M12 18V6",key:"zqpxq5"}]]);/**
|
|
137
|
+
* @license lucide-react v0.460.0 - ISC
|
|
138
|
+
*
|
|
139
|
+
* This source code is licensed under the ISC license.
|
|
140
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
141
|
+
*/const O=a("CircleDot",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]]);/**
|
|
142
142
|
* @license lucide-react v0.460.0 - ISC
|
|
143
143
|
*
|
|
144
144
|
* This source code is licensed under the ISC license.
|
|
145
145
|
* See the LICENSE file in the root directory of this source tree.
|
|
146
|
-
*/const E=a("
|
|
146
|
+
*/const E=a("CircleHelp",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);/**
|
|
147
147
|
* @license lucide-react v0.460.0 - ISC
|
|
148
148
|
*
|
|
149
149
|
* This source code is licensed under the ISC license.
|
|
150
150
|
* See the LICENSE file in the root directory of this source tree.
|
|
151
|
-
*/const
|
|
151
|
+
*/const I=a("CirclePause",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9",key:"c1nkhi"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9",key:"h65svq"}]]);/**
|
|
152
152
|
* @license lucide-react v0.460.0 - ISC
|
|
153
153
|
*
|
|
154
154
|
* This source code is licensed under the ISC license.
|
|
155
155
|
* See the LICENSE file in the root directory of this source tree.
|
|
156
|
-
*/const
|
|
156
|
+
*/const U=a("CirclePlay",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polygon",{points:"10 8 16 12 10 16 10 8",key:"1cimsy"}]]);/**
|
|
157
157
|
* @license lucide-react v0.460.0 - ISC
|
|
158
158
|
*
|
|
159
159
|
* This source code is licensed under the ISC license.
|
|
@@ -163,17 +163,17 @@ import{r as k}from"./react-vendor-Dn4wqh4Z.js";/**
|
|
|
163
163
|
*
|
|
164
164
|
* This source code is licensed under the ISC license.
|
|
165
165
|
* See the LICENSE file in the root directory of this source tree.
|
|
166
|
-
*/const
|
|
166
|
+
*/const W=a("Circle",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);/**
|
|
167
167
|
* @license lucide-react v0.460.0 - ISC
|
|
168
168
|
*
|
|
169
169
|
* This source code is licensed under the ISC license.
|
|
170
170
|
* See the LICENSE file in the root directory of this source tree.
|
|
171
|
-
*/const
|
|
171
|
+
*/const $=a("ClipboardCheck",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"m9 14 2 2 4-4",key:"df797q"}]]);/**
|
|
172
172
|
* @license lucide-react v0.460.0 - ISC
|
|
173
173
|
*
|
|
174
174
|
* This source code is licensed under the ISC license.
|
|
175
175
|
* See the LICENSE file in the root directory of this source tree.
|
|
176
|
-
*/const
|
|
176
|
+
*/const K=a("Clipboard",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}]]);/**
|
|
177
177
|
* @license lucide-react v0.460.0 - ISC
|
|
178
178
|
*
|
|
179
179
|
* This source code is licensed under the ISC license.
|
|
@@ -273,57 +273,62 @@ import{r as k}from"./react-vendor-Dn4wqh4Z.js";/**
|
|
|
273
273
|
*
|
|
274
274
|
* This source code is licensed under the ISC license.
|
|
275
275
|
* See the LICENSE file in the root directory of this source tree.
|
|
276
|
-
*/const n1=a("
|
|
276
|
+
*/const n1=a("FolderInput",[["path",{d:"M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1",key:"fm4g5t"}],["path",{d:"M2 13h10",key:"pgb2dq"}],["path",{d:"m9 16 3-3-3-3",key:"6m91ic"}]]);/**
|
|
277
|
+
* @license lucide-react v0.460.0 - ISC
|
|
278
|
+
*
|
|
279
|
+
* This source code is licensed under the ISC license.
|
|
280
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
281
|
+
*/const x1=a("FolderOpen",[["path",{d:"m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2",key:"usdka0"}]]);/**
|
|
277
282
|
* @license lucide-react v0.460.0 - ISC
|
|
278
283
|
*
|
|
279
284
|
* This source code is licensed under the ISC license.
|
|
280
285
|
* See the LICENSE file in the root directory of this source tree.
|
|
281
|
-
*/const
|
|
286
|
+
*/const M1=a("FolderPlus",[["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"M9 13h6",key:"1uhe8q"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]]);/**
|
|
282
287
|
* @license lucide-react v0.460.0 - ISC
|
|
283
288
|
*
|
|
284
289
|
* This source code is licensed under the ISC license.
|
|
285
290
|
* See the LICENSE file in the root directory of this source tree.
|
|
286
|
-
*/const
|
|
291
|
+
*/const v1=a("FolderSearch",[["path",{d:"M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1",key:"1bw5m7"}],["path",{d:"m21 21-1.9-1.9",key:"1g2n9r"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}]]);/**
|
|
287
292
|
* @license lucide-react v0.460.0 - ISC
|
|
288
293
|
*
|
|
289
294
|
* This source code is licensed under the ISC license.
|
|
290
295
|
* See the LICENSE file in the root directory of this source tree.
|
|
291
|
-
*/const
|
|
296
|
+
*/const g1=a("Folder",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]]);/**
|
|
292
297
|
* @license lucide-react v0.460.0 - ISC
|
|
293
298
|
*
|
|
294
299
|
* This source code is licensed under the ISC license.
|
|
295
300
|
* See the LICENSE file in the root directory of this source tree.
|
|
296
|
-
*/const
|
|
301
|
+
*/const m1=a("Gauge",[["path",{d:"m12 14 4-4",key:"9kzdfg"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0",key:"19p75a"}]]);/**
|
|
297
302
|
* @license lucide-react v0.460.0 - ISC
|
|
298
303
|
*
|
|
299
304
|
* This source code is licensed under the ISC license.
|
|
300
305
|
* See the LICENSE file in the root directory of this source tree.
|
|
301
|
-
*/const
|
|
306
|
+
*/const u1=a("GitBranch",[["line",{x1:"6",x2:"6",y1:"3",y2:"15",key:"17qcm7"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["path",{d:"M18 9a9 9 0 0 1-9 9",key:"n2h4wq"}]]);/**
|
|
302
307
|
* @license lucide-react v0.460.0 - ISC
|
|
303
308
|
*
|
|
304
309
|
* This source code is licensed under the ISC license.
|
|
305
310
|
* See the LICENSE file in the root directory of this source tree.
|
|
306
|
-
*/const
|
|
311
|
+
*/const w1=a("GitCommitHorizontal",[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["line",{x1:"3",x2:"9",y1:"12",y2:"12",key:"1dyftd"}],["line",{x1:"15",x2:"21",y1:"12",y2:"12",key:"oup4p8"}]]);/**
|
|
307
312
|
* @license lucide-react v0.460.0 - ISC
|
|
308
313
|
*
|
|
309
314
|
* This source code is licensed under the ISC license.
|
|
310
315
|
* See the LICENSE file in the root directory of this source tree.
|
|
311
|
-
*/const
|
|
316
|
+
*/const f1=a("GitMerge",[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 21V9a9 9 0 0 0 9 9",key:"7kw0sc"}]]);/**
|
|
312
317
|
* @license lucide-react v0.460.0 - ISC
|
|
313
318
|
*
|
|
314
319
|
* This source code is licensed under the ISC license.
|
|
315
320
|
* See the LICENSE file in the root directory of this source tree.
|
|
316
|
-
*/const
|
|
321
|
+
*/const b1=a("GitPullRequest",[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7",key:"1yeb86"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21",key:"rroup"}]]);/**
|
|
317
322
|
* @license lucide-react v0.460.0 - ISC
|
|
318
323
|
*
|
|
319
324
|
* This source code is licensed under the ISC license.
|
|
320
325
|
* See the LICENSE file in the root directory of this source tree.
|
|
321
|
-
*/const
|
|
326
|
+
*/const C1=a("Globe",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20",key:"13o1zl"}],["path",{d:"M2 12h20",key:"9i4pu4"}]]);/**
|
|
322
327
|
* @license lucide-react v0.460.0 - ISC
|
|
323
328
|
*
|
|
324
329
|
* This source code is licensed under the ISC license.
|
|
325
330
|
* See the LICENSE file in the root directory of this source tree.
|
|
326
|
-
*/const
|
|
331
|
+
*/const q1=a("Grid3x3",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"M15 3v18",key:"14nvp0"}]]);/**
|
|
327
332
|
* @license lucide-react v0.460.0 - ISC
|
|
328
333
|
*
|
|
329
334
|
* This source code is licensed under the ISC license.
|
|
@@ -333,389 +338,399 @@ import{r as k}from"./react-vendor-Dn4wqh4Z.js";/**
|
|
|
333
338
|
*
|
|
334
339
|
* This source code is licensed under the ISC license.
|
|
335
340
|
* See the LICENSE file in the root directory of this source tree.
|
|
336
|
-
*/const
|
|
341
|
+
*/const A1=a("House",[["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8",key:"5wwlr5"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",key:"1d0kgt"}]]);/**
|
|
342
|
+
* @license lucide-react v0.460.0 - ISC
|
|
343
|
+
*
|
|
344
|
+
* This source code is licensed under the ISC license.
|
|
345
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
346
|
+
*/const L1=a("Image",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}]]);/**
|
|
347
|
+
* @license lucide-react v0.460.0 - ISC
|
|
348
|
+
*
|
|
349
|
+
* This source code is licensed under the ISC license.
|
|
350
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
351
|
+
*/const H1=a("Inbox",[["polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12",key:"o97t9d"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",key:"oot6mr"}]]);/**
|
|
337
352
|
* @license lucide-react v0.460.0 - ISC
|
|
338
353
|
*
|
|
339
354
|
* This source code is licensed under the ISC license.
|
|
340
355
|
* See the LICENSE file in the root directory of this source tree.
|
|
341
|
-
*/const
|
|
356
|
+
*/const V1=a("Info",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]]);/**
|
|
342
357
|
* @license lucide-react v0.460.0 - ISC
|
|
343
358
|
*
|
|
344
359
|
* This source code is licensed under the ISC license.
|
|
345
360
|
* See the LICENSE file in the root directory of this source tree.
|
|
346
|
-
*/const
|
|
361
|
+
*/const P1=a("KeyRound",[["path",{d:"M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z",key:"1s6t7t"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor",key:"w0ekpg"}]]);/**
|
|
347
362
|
* @license lucide-react v0.460.0 - ISC
|
|
348
363
|
*
|
|
349
364
|
* This source code is licensed under the ISC license.
|
|
350
365
|
* See the LICENSE file in the root directory of this source tree.
|
|
351
|
-
*/const
|
|
366
|
+
*/const S1=a("Layers",[["path",{d:"m12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83Z",key:"8b97xw"}],["path",{d:"m22 17.65-9.17 4.16a2 2 0 0 1-1.66 0L2 17.65",key:"dd6zsq"}],["path",{d:"m22 12.65-9.17 4.16a2 2 0 0 1-1.66 0L2 12.65",key:"ep9fru"}]]);/**
|
|
352
367
|
* @license lucide-react v0.460.0 - ISC
|
|
353
368
|
*
|
|
354
369
|
* This source code is licensed under the ISC license.
|
|
355
370
|
* See the LICENSE file in the root directory of this source tree.
|
|
356
|
-
*/const
|
|
371
|
+
*/const j1=a("LayoutDashboard",[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1",key:"10lvy0"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1",key:"16une8"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1",key:"1hutg5"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1",key:"ldoo1y"}]]);/**
|
|
357
372
|
* @license lucide-react v0.460.0 - ISC
|
|
358
373
|
*
|
|
359
374
|
* This source code is licensed under the ISC license.
|
|
360
375
|
* See the LICENSE file in the root directory of this source tree.
|
|
361
|
-
*/const
|
|
376
|
+
*/const R1=a("LayoutGrid",[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1",key:"1g98yp"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1",key:"6d4xhi"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1",key:"1bb6yr"}]]);/**
|
|
362
377
|
* @license lucide-react v0.460.0 - ISC
|
|
363
378
|
*
|
|
364
379
|
* This source code is licensed under the ISC license.
|
|
365
380
|
* See the LICENSE file in the root directory of this source tree.
|
|
366
|
-
*/const
|
|
381
|
+
*/const F1=a("LayoutTemplate",[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1",key:"f1a2em"}],["rect",{width:"9",height:"7",x:"3",y:"14",rx:"1",key:"jqznyg"}],["rect",{width:"5",height:"7",x:"16",y:"14",rx:"1",key:"q5h2i8"}]]);/**
|
|
367
382
|
* @license lucide-react v0.460.0 - ISC
|
|
368
383
|
*
|
|
369
384
|
* This source code is licensed under the ISC license.
|
|
370
385
|
* See the LICENSE file in the root directory of this source tree.
|
|
371
|
-
*/const
|
|
386
|
+
*/const B1=a("Lightbulb",[["path",{d:"M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5",key:"1gvzjb"}],["path",{d:"M9 18h6",key:"x1upvd"}],["path",{d:"M10 22h4",key:"ceow96"}]]);/**
|
|
372
387
|
* @license lucide-react v0.460.0 - ISC
|
|
373
388
|
*
|
|
374
389
|
* This source code is licensed under the ISC license.
|
|
375
390
|
* See the LICENSE file in the root directory of this source tree.
|
|
376
|
-
*/const
|
|
391
|
+
*/const D1=a("Link2",[["path",{d:"M9 17H7A5 5 0 0 1 7 7h2",key:"8i5ue5"}],["path",{d:"M15 7h2a5 5 0 1 1 0 10h-2",key:"1b9ql8"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}]]);/**
|
|
377
392
|
* @license lucide-react v0.460.0 - ISC
|
|
378
393
|
*
|
|
379
394
|
* This source code is licensed under the ISC license.
|
|
380
395
|
* See the LICENSE file in the root directory of this source tree.
|
|
381
|
-
*/const
|
|
396
|
+
*/const G1=a("Link",[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",key:"1cjeqo"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",key:"19qd67"}]]);/**
|
|
382
397
|
* @license lucide-react v0.460.0 - ISC
|
|
383
398
|
*
|
|
384
399
|
* This source code is licensed under the ISC license.
|
|
385
400
|
* See the LICENSE file in the root directory of this source tree.
|
|
386
|
-
*/const
|
|
401
|
+
*/const T1=a("LoaderCircle",[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]]);/**
|
|
387
402
|
* @license lucide-react v0.460.0 - ISC
|
|
388
403
|
*
|
|
389
404
|
* This source code is licensed under the ISC license.
|
|
390
405
|
* See the LICENSE file in the root directory of this source tree.
|
|
391
|
-
*/const
|
|
406
|
+
*/const Z1=a("Loader",[["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m16.2 7.8 2.9-2.9",key:"r700ao"}],["path",{d:"M18 12h4",key:"wj9ykh"}],["path",{d:"m16.2 16.2 2.9 2.9",key:"1bxg5t"}],["path",{d:"M12 18v4",key:"jadmvz"}],["path",{d:"m4.9 19.1 2.9-2.9",key:"bwix9q"}],["path",{d:"M2 12h4",key:"j09sii"}],["path",{d:"m4.9 4.9 2.9 2.9",key:"giyufr"}]]);/**
|
|
392
407
|
* @license lucide-react v0.460.0 - ISC
|
|
393
408
|
*
|
|
394
409
|
* This source code is licensed under the ISC license.
|
|
395
410
|
* See the LICENSE file in the root directory of this source tree.
|
|
396
|
-
*/const
|
|
411
|
+
*/const O1=a("Lock",[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2",key:"1w4ew1"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4",key:"fwvmzm"}]]);/**
|
|
397
412
|
* @license lucide-react v0.460.0 - ISC
|
|
398
413
|
*
|
|
399
414
|
* This source code is licensed under the ISC license.
|
|
400
415
|
* See the LICENSE file in the root directory of this source tree.
|
|
401
|
-
*/const
|
|
416
|
+
*/const E1=a("Mail",[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}]]);/**
|
|
402
417
|
* @license lucide-react v0.460.0 - ISC
|
|
403
418
|
*
|
|
404
419
|
* This source code is licensed under the ISC license.
|
|
405
420
|
* See the LICENSE file in the root directory of this source tree.
|
|
406
|
-
*/const
|
|
421
|
+
*/const I1=a("MapPin",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}]]);/**
|
|
407
422
|
* @license lucide-react v0.460.0 - ISC
|
|
408
423
|
*
|
|
409
424
|
* This source code is licensed under the ISC license.
|
|
410
425
|
* See the LICENSE file in the root directory of this source tree.
|
|
411
|
-
*/const
|
|
426
|
+
*/const U1=a("Map",[["path",{d:"M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0z",key:"169xi5"}],["path",{d:"M15 5.764v15",key:"1pn4in"}],["path",{d:"M9 3.236v15",key:"1uimfh"}]]);/**
|
|
412
427
|
* @license lucide-react v0.460.0 - ISC
|
|
413
428
|
*
|
|
414
429
|
* This source code is licensed under the ISC license.
|
|
415
430
|
* See the LICENSE file in the root directory of this source tree.
|
|
416
|
-
*/const
|
|
431
|
+
*/const N1=a("Maximize2",[["polyline",{points:"15 3 21 3 21 9",key:"mznyad"}],["polyline",{points:"9 21 3 21 3 15",key:"1avn1i"}],["line",{x1:"21",x2:"14",y1:"3",y2:"10",key:"ota7mn"}],["line",{x1:"3",x2:"10",y1:"21",y2:"14",key:"1atl0r"}]]);/**
|
|
417
432
|
* @license lucide-react v0.460.0 - ISC
|
|
418
433
|
*
|
|
419
434
|
* This source code is licensed under the ISC license.
|
|
420
435
|
* See the LICENSE file in the root directory of this source tree.
|
|
421
|
-
*/const
|
|
436
|
+
*/const W1=a("Menu",[["line",{x1:"4",x2:"20",y1:"12",y2:"12",key:"1e0a9i"}],["line",{x1:"4",x2:"20",y1:"6",y2:"6",key:"1owob3"}],["line",{x1:"4",x2:"20",y1:"18",y2:"18",key:"yk5zj1"}]]);/**
|
|
422
437
|
* @license lucide-react v0.460.0 - ISC
|
|
423
438
|
*
|
|
424
439
|
* This source code is licensed under the ISC license.
|
|
425
440
|
* See the LICENSE file in the root directory of this source tree.
|
|
426
|
-
*/const
|
|
441
|
+
*/const $1=a("MessageSquare",[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}]]);/**
|
|
427
442
|
* @license lucide-react v0.460.0 - ISC
|
|
428
443
|
*
|
|
429
444
|
* This source code is licensed under the ISC license.
|
|
430
445
|
* See the LICENSE file in the root directory of this source tree.
|
|
431
|
-
*/const
|
|
446
|
+
*/const K1=a("Mic",[["path",{d:"M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z",key:"131961"}],["path",{d:"M19 10v2a7 7 0 0 1-14 0v-2",key:"1vc78b"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22",key:"x3vr5v"}]]);/**
|
|
432
447
|
* @license lucide-react v0.460.0 - ISC
|
|
433
448
|
*
|
|
434
449
|
* This source code is licensed under the ISC license.
|
|
435
450
|
* See the LICENSE file in the root directory of this source tree.
|
|
436
|
-
*/const
|
|
451
|
+
*/const X1=a("Minus",[["path",{d:"M5 12h14",key:"1ays0h"}]]);/**
|
|
437
452
|
* @license lucide-react v0.460.0 - ISC
|
|
438
453
|
*
|
|
439
454
|
* This source code is licensed under the ISC license.
|
|
440
455
|
* See the LICENSE file in the root directory of this source tree.
|
|
441
|
-
*/const
|
|
456
|
+
*/const J1=a("Monitor",[["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["line",{x1:"8",x2:"16",y1:"21",y2:"21",key:"1svkeh"}],["line",{x1:"12",x2:"12",y1:"17",y2:"21",key:"vw1qmm"}]]);/**
|
|
442
457
|
* @license lucide-react v0.460.0 - ISC
|
|
443
458
|
*
|
|
444
459
|
* This source code is licensed under the ISC license.
|
|
445
460
|
* See the LICENSE file in the root directory of this source tree.
|
|
446
|
-
*/const
|
|
461
|
+
*/const Q1=a("Moon",[["path",{d:"M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z",key:"a7tn18"}]]);/**
|
|
447
462
|
* @license lucide-react v0.460.0 - ISC
|
|
448
463
|
*
|
|
449
464
|
* This source code is licensed under the ISC license.
|
|
450
465
|
* See the LICENSE file in the root directory of this source tree.
|
|
451
|
-
*/const
|
|
466
|
+
*/const Y1=a("Network",[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1",key:"4q2zg0"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1",key:"8cvhb9"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1",key:"1egb70"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3",key:"1jsf9p"}],["path",{d:"M12 12V8",key:"2874zd"}]]);/**
|
|
452
467
|
* @license lucide-react v0.460.0 - ISC
|
|
453
468
|
*
|
|
454
469
|
* This source code is licensed under the ISC license.
|
|
455
470
|
* See the LICENSE file in the root directory of this source tree.
|
|
456
|
-
*/const
|
|
471
|
+
*/const _1=a("OctagonAlert",[["path",{d:"M12 16h.01",key:"1drbdi"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z",key:"1fd625"}]]);/**
|
|
457
472
|
* @license lucide-react v0.460.0 - ISC
|
|
458
473
|
*
|
|
459
474
|
* This source code is licensed under the ISC license.
|
|
460
475
|
* See the LICENSE file in the root directory of this source tree.
|
|
461
|
-
*/const
|
|
476
|
+
*/const a2=a("Package",[["path",{d:"M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z",key:"1a0edw"}],["path",{d:"M12 22V12",key:"d0xqtd"}],["path",{d:"m3.3 7 7.703 4.734a2 2 0 0 0 1.994 0L20.7 7",key:"yx3hmr"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}]]);/**
|
|
462
477
|
* @license lucide-react v0.460.0 - ISC
|
|
463
478
|
*
|
|
464
479
|
* This source code is licensed under the ISC license.
|
|
465
480
|
* See the LICENSE file in the root directory of this source tree.
|
|
466
|
-
*/const
|
|
481
|
+
*/const e2=a("Palette",[["circle",{cx:"13.5",cy:"6.5",r:".5",fill:"currentColor",key:"1okk4w"}],["circle",{cx:"17.5",cy:"10.5",r:".5",fill:"currentColor",key:"f64h9f"}],["circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor",key:"fotxhn"}],["circle",{cx:"6.5",cy:"12.5",r:".5",fill:"currentColor",key:"qy21gx"}],["path",{d:"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10c.926 0 1.648-.746 1.648-1.688 0-.437-.18-.835-.437-1.125-.29-.289-.438-.652-.438-1.125a1.64 1.64 0 0 1 1.668-1.668h1.996c3.051 0 5.555-2.503 5.555-5.554C21.965 6.012 17.461 2 12 2z",key:"12rzf8"}]]);/**
|
|
467
482
|
* @license lucide-react v0.460.0 - ISC
|
|
468
483
|
*
|
|
469
484
|
* This source code is licensed under the ISC license.
|
|
470
485
|
* See the LICENSE file in the root directory of this source tree.
|
|
471
|
-
*/const
|
|
486
|
+
*/const t2=a("PanelLeftClose",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m16 15-3-3 3-3",key:"14y99z"}]]);/**
|
|
472
487
|
* @license lucide-react v0.460.0 - ISC
|
|
473
488
|
*
|
|
474
489
|
* This source code is licensed under the ISC license.
|
|
475
490
|
* See the LICENSE file in the root directory of this source tree.
|
|
476
|
-
*/const
|
|
491
|
+
*/const y2=a("PanelLeftOpen",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m14 9 3 3-3 3",key:"8010ee"}]]);/**
|
|
477
492
|
* @license lucide-react v0.460.0 - ISC
|
|
478
493
|
*
|
|
479
494
|
* This source code is licensed under the ISC license.
|
|
480
495
|
* See the LICENSE file in the root directory of this source tree.
|
|
481
|
-
*/const
|
|
496
|
+
*/const h2=a("PanelsTopLeft",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M9 21V9",key:"1oto5p"}]]);/**
|
|
482
497
|
* @license lucide-react v0.460.0 - ISC
|
|
483
498
|
*
|
|
484
499
|
* This source code is licensed under the ISC license.
|
|
485
500
|
* See the LICENSE file in the root directory of this source tree.
|
|
486
|
-
*/const
|
|
501
|
+
*/const c2=a("Paperclip",[["path",{d:"m21.44 11.05-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48",key:"1u3ebp"}]]);/**
|
|
487
502
|
* @license lucide-react v0.460.0 - ISC
|
|
488
503
|
*
|
|
489
504
|
* This source code is licensed under the ISC license.
|
|
490
505
|
* See the LICENSE file in the root directory of this source tree.
|
|
491
|
-
*/const
|
|
506
|
+
*/const k2=a("Pause",[["rect",{x:"14",y:"4",width:"4",height:"16",rx:"1",key:"zuxfzm"}],["rect",{x:"6",y:"4",width:"4",height:"16",rx:"1",key:"1okwgv"}]]);/**
|
|
492
507
|
* @license lucide-react v0.460.0 - ISC
|
|
493
508
|
*
|
|
494
509
|
* This source code is licensed under the ISC license.
|
|
495
510
|
* See the LICENSE file in the root directory of this source tree.
|
|
496
|
-
*/const
|
|
511
|
+
*/const r2=a("Pen",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);/**
|
|
497
512
|
* @license lucide-react v0.460.0 - ISC
|
|
498
513
|
*
|
|
499
514
|
* This source code is licensed under the ISC license.
|
|
500
515
|
* See the LICENSE file in the root directory of this source tree.
|
|
501
|
-
*/const
|
|
516
|
+
*/const l2=a("Pencil",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]]);/**
|
|
502
517
|
* @license lucide-react v0.460.0 - ISC
|
|
503
518
|
*
|
|
504
519
|
* This source code is licensed under the ISC license.
|
|
505
520
|
* See the LICENSE file in the root directory of this source tree.
|
|
506
|
-
*/const
|
|
521
|
+
*/const d2=a("Pin",[["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z",key:"1nkz8b"}]]);/**
|
|
507
522
|
* @license lucide-react v0.460.0 - ISC
|
|
508
523
|
*
|
|
509
524
|
* This source code is licensed under the ISC license.
|
|
510
525
|
* See the LICENSE file in the root directory of this source tree.
|
|
511
|
-
*/const
|
|
526
|
+
*/const s2=a("Play",[["polygon",{points:"6 3 20 12 6 21 6 3",key:"1oa8hb"}]]);/**
|
|
512
527
|
* @license lucide-react v0.460.0 - ISC
|
|
513
528
|
*
|
|
514
529
|
* This source code is licensed under the ISC license.
|
|
515
530
|
* See the LICENSE file in the root directory of this source tree.
|
|
516
|
-
*/const
|
|
531
|
+
*/const o2=a("Plug",[["path",{d:"M12 22v-5",key:"1ega77"}],["path",{d:"M9 8V2",key:"14iosj"}],["path",{d:"M15 8V2",key:"18g5xt"}],["path",{d:"M18 8v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z",key:"osxo6l"}]]);/**
|
|
517
532
|
* @license lucide-react v0.460.0 - ISC
|
|
518
533
|
*
|
|
519
534
|
* This source code is licensed under the ISC license.
|
|
520
535
|
* See the LICENSE file in the root directory of this source tree.
|
|
521
|
-
*/const
|
|
536
|
+
*/const p2=a("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);/**
|
|
522
537
|
* @license lucide-react v0.460.0 - ISC
|
|
523
538
|
*
|
|
524
539
|
* This source code is licensed under the ISC license.
|
|
525
540
|
* See the LICENSE file in the root directory of this source tree.
|
|
526
|
-
*/const
|
|
541
|
+
*/const i2=a("PowerOff",[["path",{d:"M18.36 6.64A9 9 0 0 1 20.77 15",key:"dxknvb"}],["path",{d:"M6.16 6.16a9 9 0 1 0 12.68 12.68",key:"1x7qb5"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);/**
|
|
527
542
|
* @license lucide-react v0.460.0 - ISC
|
|
528
543
|
*
|
|
529
544
|
* This source code is licensed under the ISC license.
|
|
530
545
|
* See the LICENSE file in the root directory of this source tree.
|
|
531
|
-
*/const
|
|
546
|
+
*/const n2=a("Power",[["path",{d:"M12 2v10",key:"mnfbl"}],["path",{d:"M18.4 6.6a9 9 0 1 1-12.77.04",key:"obofu9"}]]);/**
|
|
532
547
|
* @license lucide-react v0.460.0 - ISC
|
|
533
548
|
*
|
|
534
549
|
* This source code is licensed under the ISC license.
|
|
535
550
|
* See the LICENSE file in the root directory of this source tree.
|
|
536
|
-
*/const
|
|
551
|
+
*/const x2=a("Puzzle",[["path",{d:"M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z",key:"w46dr5"}]]);/**
|
|
537
552
|
* @license lucide-react v0.460.0 - ISC
|
|
538
553
|
*
|
|
539
554
|
* This source code is licensed under the ISC license.
|
|
540
555
|
* See the LICENSE file in the root directory of this source tree.
|
|
541
|
-
*/const
|
|
556
|
+
*/const M2=a("Radio",[["path",{d:"M4.9 19.1C1 15.2 1 8.8 4.9 4.9",key:"1vaf9d"}],["path",{d:"M7.8 16.2c-2.3-2.3-2.3-6.1 0-8.5",key:"u1ii0m"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"M16.2 7.8c2.3 2.3 2.3 6.1 0 8.5",key:"1j5fej"}],["path",{d:"M19.1 4.9C23 8.8 23 15.1 19.1 19",key:"10b0cb"}]]);/**
|
|
542
557
|
* @license lucide-react v0.460.0 - ISC
|
|
543
558
|
*
|
|
544
559
|
* This source code is licensed under the ISC license.
|
|
545
560
|
* See the LICENSE file in the root directory of this source tree.
|
|
546
|
-
*/const
|
|
561
|
+
*/const v2=a("Redo2",[["path",{d:"m15 14 5-5-5-5",key:"12vg1m"}],["path",{d:"M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13",key:"6uklza"}]]);/**
|
|
547
562
|
* @license lucide-react v0.460.0 - ISC
|
|
548
563
|
*
|
|
549
564
|
* This source code is licensed under the ISC license.
|
|
550
565
|
* See the LICENSE file in the root directory of this source tree.
|
|
551
|
-
*/const
|
|
566
|
+
*/const g2=a("RefreshCw",[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8",key:"v9h5vc"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16",key:"3uifl3"}],["path",{d:"M8 16H3v5",key:"1cv678"}]]);/**
|
|
552
567
|
* @license lucide-react v0.460.0 - ISC
|
|
553
568
|
*
|
|
554
569
|
* This source code is licensed under the ISC license.
|
|
555
570
|
* See the LICENSE file in the root directory of this source tree.
|
|
556
|
-
*/const
|
|
571
|
+
*/const m2=a("RotateCcw",[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]]);/**
|
|
557
572
|
* @license lucide-react v0.460.0 - ISC
|
|
558
573
|
*
|
|
559
574
|
* This source code is licensed under the ISC license.
|
|
560
575
|
* See the LICENSE file in the root directory of this source tree.
|
|
561
|
-
*/const
|
|
576
|
+
*/const u2=a("RotateCw",[["path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8",key:"1p45f6"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}]]);/**
|
|
562
577
|
* @license lucide-react v0.460.0 - ISC
|
|
563
578
|
*
|
|
564
579
|
* This source code is licensed under the ISC license.
|
|
565
580
|
* See the LICENSE file in the root directory of this source tree.
|
|
566
|
-
*/const
|
|
581
|
+
*/const w2=a("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);/**
|
|
567
582
|
* @license lucide-react v0.460.0 - ISC
|
|
568
583
|
*
|
|
569
584
|
* This source code is licensed under the ISC license.
|
|
570
585
|
* See the LICENSE file in the root directory of this source tree.
|
|
571
|
-
*/const
|
|
586
|
+
*/const f2=a("Scan",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}]]);/**
|
|
572
587
|
* @license lucide-react v0.460.0 - ISC
|
|
573
588
|
*
|
|
574
589
|
* This source code is licensed under the ISC license.
|
|
575
590
|
* See the LICENSE file in the root directory of this source tree.
|
|
576
|
-
*/const
|
|
591
|
+
*/const b2=a("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);/**
|
|
577
592
|
* @license lucide-react v0.460.0 - ISC
|
|
578
593
|
*
|
|
579
594
|
* This source code is licensed under the ISC license.
|
|
580
595
|
* See the LICENSE file in the root directory of this source tree.
|
|
581
|
-
*/const
|
|
596
|
+
*/const C2=a("Send",[["path",{d:"M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z",key:"1ffxy3"}],["path",{d:"m21.854 2.147-10.94 10.939",key:"12cjpa"}]]);/**
|
|
582
597
|
* @license lucide-react v0.460.0 - ISC
|
|
583
598
|
*
|
|
584
599
|
* This source code is licensed under the ISC license.
|
|
585
600
|
* See the LICENSE file in the root directory of this source tree.
|
|
586
|
-
*/const
|
|
601
|
+
*/const q2=a("Server",[["rect",{width:"20",height:"8",x:"2",y:"2",rx:"2",ry:"2",key:"ngkwjq"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",ry:"2",key:"iecqi9"}],["line",{x1:"6",x2:"6.01",y1:"6",y2:"6",key:"16zg32"}],["line",{x1:"6",x2:"6.01",y1:"18",y2:"18",key:"nzw8ys"}]]);/**
|
|
587
602
|
* @license lucide-react v0.460.0 - ISC
|
|
588
603
|
*
|
|
589
604
|
* This source code is licensed under the ISC license.
|
|
590
605
|
* See the LICENSE file in the root directory of this source tree.
|
|
591
|
-
*/const
|
|
606
|
+
*/const z2=a("Settings2",[["path",{d:"M20 7h-9",key:"3s1dr2"}],["path",{d:"M14 17H5",key:"gfn3mx"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}],["circle",{cx:"7",cy:"7",r:"3",key:"dfmy0x"}]]);/**
|
|
592
607
|
* @license lucide-react v0.460.0 - ISC
|
|
593
608
|
*
|
|
594
609
|
* This source code is licensed under the ISC license.
|
|
595
610
|
* See the LICENSE file in the root directory of this source tree.
|
|
596
|
-
*/const
|
|
611
|
+
*/const A2=a("Settings",[["path",{d:"M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z",key:"1qme2f"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);/**
|
|
597
612
|
* @license lucide-react v0.460.0 - ISC
|
|
598
613
|
*
|
|
599
614
|
* This source code is licensed under the ISC license.
|
|
600
615
|
* See the LICENSE file in the root directory of this source tree.
|
|
601
|
-
*/const
|
|
616
|
+
*/const L2=a("Share2",[["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}],["circle",{cx:"6",cy:"12",r:"3",key:"w7nqdw"}],["circle",{cx:"18",cy:"19",r:"3",key:"1xt0gg"}],["line",{x1:"8.59",x2:"15.42",y1:"13.51",y2:"17.49",key:"47mynk"}],["line",{x1:"15.41",x2:"8.59",y1:"6.51",y2:"10.49",key:"1n3mei"}]]);/**
|
|
602
617
|
* @license lucide-react v0.460.0 - ISC
|
|
603
618
|
*
|
|
604
619
|
* This source code is licensed under the ISC license.
|
|
605
620
|
* See the LICENSE file in the root directory of this source tree.
|
|
606
|
-
*/const
|
|
621
|
+
*/const H2=a("ShieldCheck",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);/**
|
|
607
622
|
* @license lucide-react v0.460.0 - ISC
|
|
608
623
|
*
|
|
609
624
|
* This source code is licensed under the ISC license.
|
|
610
625
|
* See the LICENSE file in the root directory of this source tree.
|
|
611
|
-
*/const
|
|
626
|
+
*/const V2=a("Shield",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]]);/**
|
|
612
627
|
* @license lucide-react v0.460.0 - ISC
|
|
613
628
|
*
|
|
614
629
|
* This source code is licensed under the ISC license.
|
|
615
630
|
* See the LICENSE file in the root directory of this source tree.
|
|
616
|
-
*/const
|
|
631
|
+
*/const P2=a("SlidersVertical",[["line",{x1:"4",x2:"4",y1:"21",y2:"14",key:"1p332r"}],["line",{x1:"4",x2:"4",y1:"10",y2:"3",key:"gb41h5"}],["line",{x1:"12",x2:"12",y1:"21",y2:"12",key:"hf2csr"}],["line",{x1:"12",x2:"12",y1:"8",y2:"3",key:"1kfi7u"}],["line",{x1:"20",x2:"20",y1:"21",y2:"16",key:"1lhrwl"}],["line",{x1:"20",x2:"20",y1:"12",y2:"3",key:"16vvfq"}],["line",{x1:"2",x2:"6",y1:"14",y2:"14",key:"1uebub"}],["line",{x1:"10",x2:"14",y1:"8",y2:"8",key:"1yglbp"}],["line",{x1:"18",x2:"22",y1:"16",y2:"16",key:"1jxqpz"}]]);/**
|
|
617
632
|
* @license lucide-react v0.460.0 - ISC
|
|
618
633
|
*
|
|
619
634
|
* This source code is licensed under the ISC license.
|
|
620
635
|
* See the LICENSE file in the root directory of this source tree.
|
|
621
|
-
*/const
|
|
636
|
+
*/const S2=a("Sparkles",[["path",{d:"M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z",key:"4pj2yx"}],["path",{d:"M20 3v4",key:"1olli1"}],["path",{d:"M22 5h-4",key:"1gvqau"}],["path",{d:"M4 17v2",key:"vumght"}],["path",{d:"M5 18H3",key:"zchphs"}]]);/**
|
|
622
637
|
* @license lucide-react v0.460.0 - ISC
|
|
623
638
|
*
|
|
624
639
|
* This source code is licensed under the ISC license.
|
|
625
640
|
* See the LICENSE file in the root directory of this source tree.
|
|
626
|
-
*/const
|
|
641
|
+
*/const j2=a("SquareCheckBig",[["path",{d:"M21 10.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.5",key:"1uzm8b"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]]);/**
|
|
627
642
|
* @license lucide-react v0.460.0 - ISC
|
|
628
643
|
*
|
|
629
644
|
* This source code is licensed under the ISC license.
|
|
630
645
|
* See the LICENSE file in the root directory of this source tree.
|
|
631
|
-
*/const
|
|
646
|
+
*/const R2=a("SquarePen",[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7",key:"1m0v6g"}],["path",{d:"M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z",key:"ohrbg2"}]]);/**
|
|
632
647
|
* @license lucide-react v0.460.0 - ISC
|
|
633
648
|
*
|
|
634
649
|
* This source code is licensed under the ISC license.
|
|
635
650
|
* See the LICENSE file in the root directory of this source tree.
|
|
636
|
-
*/const
|
|
651
|
+
*/const F2=a("Square",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]]);/**
|
|
637
652
|
* @license lucide-react v0.460.0 - ISC
|
|
638
653
|
*
|
|
639
654
|
* This source code is licensed under the ISC license.
|
|
640
655
|
* See the LICENSE file in the root directory of this source tree.
|
|
641
|
-
*/const
|
|
656
|
+
*/const B2=a("Stethoscope",[["path",{d:"M11 2v2",key:"1539x4"}],["path",{d:"M5 2v2",key:"1yf1q8"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1",key:"rb5t3r"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3",key:"x18d4x"}],["circle",{cx:"20",cy:"10",r:"2",key:"ts1r5v"}]]);/**
|
|
642
657
|
* @license lucide-react v0.460.0 - ISC
|
|
643
658
|
*
|
|
644
659
|
* This source code is licensed under the ISC license.
|
|
645
660
|
* See the LICENSE file in the root directory of this source tree.
|
|
646
|
-
*/const
|
|
661
|
+
*/const D2=a("StickyNote",[["path",{d:"M16 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8Z",key:"qazsjp"}],["path",{d:"M15 3v4a2 2 0 0 0 2 2h4",key:"40519r"}]]);/**
|
|
647
662
|
* @license lucide-react v0.460.0 - ISC
|
|
648
663
|
*
|
|
649
664
|
* This source code is licensed under the ISC license.
|
|
650
665
|
* See the LICENSE file in the root directory of this source tree.
|
|
651
|
-
*/const
|
|
666
|
+
*/const G2=a("Store",[["path",{d:"m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7",key:"ztvudi"}],["path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8",key:"1b2hhj"}],["path",{d:"M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4",key:"2ebpfo"}],["path",{d:"M2 7h20",key:"1fcdvo"}],["path",{d:"M22 7v3a2 2 0 0 1-2 2a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 16 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 12 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 8 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 4 12a2 2 0 0 1-2-2V7",key:"6c3vgh"}]]);/**
|
|
652
667
|
* @license lucide-react v0.460.0 - ISC
|
|
653
668
|
*
|
|
654
669
|
* This source code is licensed under the ISC license.
|
|
655
670
|
* See the LICENSE file in the root directory of this source tree.
|
|
656
|
-
*/const
|
|
671
|
+
*/const T2=a("Sun",[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"m17.66 17.66 1.41 1.41",key:"ptbguv"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m6.34 17.66-1.41 1.41",key:"1m8zz5"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}]]);/**
|
|
657
672
|
* @license lucide-react v0.460.0 - ISC
|
|
658
673
|
*
|
|
659
674
|
* This source code is licensed under the ISC license.
|
|
660
675
|
* See the LICENSE file in the root directory of this source tree.
|
|
661
|
-
*/const
|
|
676
|
+
*/const Z2=a("Tag",[["path",{d:"M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z",key:"vktsd0"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}]]);/**
|
|
662
677
|
* @license lucide-react v0.460.0 - ISC
|
|
663
678
|
*
|
|
664
679
|
* This source code is licensed under the ISC license.
|
|
665
680
|
* See the LICENSE file in the root directory of this source tree.
|
|
666
|
-
*/const
|
|
681
|
+
*/const O2=a("Target",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"6",key:"1vlfrh"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);/**
|
|
667
682
|
* @license lucide-react v0.460.0 - ISC
|
|
668
683
|
*
|
|
669
684
|
* This source code is licensed under the ISC license.
|
|
670
685
|
* See the LICENSE file in the root directory of this source tree.
|
|
671
|
-
*/const
|
|
686
|
+
*/const E2=a("Terminal",[["polyline",{points:"4 17 10 11 4 5",key:"akl6gq"}],["line",{x1:"12",x2:"20",y1:"19",y2:"19",key:"q2wloq"}]]);/**
|
|
672
687
|
* @license lucide-react v0.460.0 - ISC
|
|
673
688
|
*
|
|
674
689
|
* This source code is licensed under the ISC license.
|
|
675
690
|
* See the LICENSE file in the root directory of this source tree.
|
|
676
|
-
*/const
|
|
691
|
+
*/const I2=a("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);/**
|
|
677
692
|
* @license lucide-react v0.460.0 - ISC
|
|
678
693
|
*
|
|
679
694
|
* This source code is licensed under the ISC license.
|
|
680
695
|
* See the LICENSE file in the root directory of this source tree.
|
|
681
|
-
*/const
|
|
696
|
+
*/const U2=a("TriangleAlert",[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);/**
|
|
682
697
|
* @license lucide-react v0.460.0 - ISC
|
|
683
698
|
*
|
|
684
699
|
* This source code is licensed under the ISC license.
|
|
685
700
|
* See the LICENSE file in the root directory of this source tree.
|
|
686
|
-
*/const
|
|
701
|
+
*/const N2=a("Undo2",[["path",{d:"M9 14 4 9l5-5",key:"102s5s"}],["path",{d:"M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11",key:"f3b9sd"}]]);/**
|
|
687
702
|
* @license lucide-react v0.460.0 - ISC
|
|
688
703
|
*
|
|
689
704
|
* This source code is licensed under the ISC license.
|
|
690
705
|
* See the LICENSE file in the root directory of this source tree.
|
|
691
|
-
*/const
|
|
706
|
+
*/const W2=a("Upload",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"17 8 12 3 7 8",key:"t8dd8p"}],["line",{x1:"12",x2:"12",y1:"3",y2:"15",key:"widbto"}]]);/**
|
|
692
707
|
* @license lucide-react v0.460.0 - ISC
|
|
693
708
|
*
|
|
694
709
|
* This source code is licensed under the ISC license.
|
|
695
710
|
* See the LICENSE file in the root directory of this source tree.
|
|
696
|
-
*/const
|
|
711
|
+
*/const $2=a("User",[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2",key:"975kel"}],["circle",{cx:"12",cy:"7",r:"4",key:"17ys0d"}]]);/**
|
|
697
712
|
* @license lucide-react v0.460.0 - ISC
|
|
698
713
|
*
|
|
699
714
|
* This source code is licensed under the ISC license.
|
|
700
715
|
* See the LICENSE file in the root directory of this source tree.
|
|
701
|
-
*/const
|
|
716
|
+
*/const K2=a("Users",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87",key:"kshegd"}],["path",{d:"M16 3.13a4 4 0 0 1 0 7.75",key:"1da9ce"}]]);/**
|
|
702
717
|
* @license lucide-react v0.460.0 - ISC
|
|
703
718
|
*
|
|
704
719
|
* This source code is licensed under the ISC license.
|
|
705
720
|
* See the LICENSE file in the root directory of this source tree.
|
|
706
|
-
*/const
|
|
721
|
+
*/const X2=a("Wifi",[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0",key:"dnpr2z"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0",key:"1x1e6c"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}]]);/**
|
|
707
722
|
* @license lucide-react v0.460.0 - ISC
|
|
708
723
|
*
|
|
709
724
|
* This source code is licensed under the ISC license.
|
|
710
725
|
* See the LICENSE file in the root directory of this source tree.
|
|
711
|
-
*/const
|
|
726
|
+
*/const J2=a("Wrench",[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z",key:"cbrjhi"}]]);/**
|
|
712
727
|
* @license lucide-react v0.460.0 - ISC
|
|
713
728
|
*
|
|
714
729
|
* This source code is licensed under the ISC license.
|
|
715
730
|
* See the LICENSE file in the root directory of this source tree.
|
|
716
|
-
*/const
|
|
731
|
+
*/const Q2=a("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);/**
|
|
717
732
|
* @license lucide-react v0.460.0 - ISC
|
|
718
733
|
*
|
|
719
734
|
* This source code is licensed under the ISC license.
|
|
720
735
|
* See the LICENSE file in the root directory of this source tree.
|
|
721
|
-
*/const
|
|
736
|
+
*/const Y2=a("Zap",[["path",{d:"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",key:"1xq2db"}]]);export{Y2 as $,b as A,L as B,D as C,U2 as D,T as E,M1 as F,m1 as G,A1 as H,V1 as I,c1 as J,o1 as K,j1 as L,$1 as M,u1 as N,H1 as O,x2 as P,C2 as Q,g2 as R,j2 as S,E2 as T,r1 as U,k1 as V,X2 as W,Q2 as X,v1 as Y,I2 as Z,n2 as _,x1 as a,Y1 as a$,_1 as a0,R2 as a1,u2 as a2,q2 as a3,Z as a4,l2 as a5,y1 as a6,w as a7,Z2 as a8,w2 as a9,o2 as aA,V2 as aB,P1 as aC,Y as aD,m2 as aE,C1 as aF,E1 as aG,D1 as aH,K2 as aI,a1 as aJ,A2 as aK,H2 as aL,d1 as aM,$2 as aN,A as aO,F1 as aP,U as aQ,a2 as aR,e1 as aS,T1 as aT,i2 as aU,s1 as aV,w1 as aW,b1 as aX,f1 as aY,n1 as aZ,W2 as a_,W as aa,s2 as ab,t1 as ac,D2 as ad,X1 as ae,N as af,l1 as ag,L2 as ah,N2 as ai,v2 as aj,N1 as ak,h1 as al,I1 as am,m as an,u as ao,q as ap,F as aq,r2 as ar,k2 as as,t2 as at,y2 as au,S1 as av,O2 as aw,Q1 as ax,T2 as ay,J1 as az,g1 as b,P as b0,K as b1,K1 as b2,F2 as b3,f2 as b4,i1 as b5,S as b6,V as b7,I as b8,J2 as b9,O as ba,C as bb,f as bc,W1 as bd,E as be,q1 as bf,G as bg,Z1 as bh,h2 as bi,G1 as bj,J as bk,B1 as bl,L1 as bm,d2 as bn,c2 as bo,p1 as c,R as d,B as e,U1 as f,g,M2 as h,S2 as i,H as j,G2 as k,X as l,z1 as m,Q as n,$ as o,B2 as p,z2 as q,e2 as r,P2 as s,R1 as t,z as u,O1 as v,_ as w,b2 as x,p2 as y,j as z};
|