@tonyclaw/agent-inspector 3.0.44 → 3.0.46
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 → backend/nitro.json} +3 -3
- package/.output/backend-public/assets/index-D4LX-sw-.js +11 -0
- package/.output/cli.js +22707 -17099
- package/.output/server/_libs/extend.mjs +4 -8
- package/.output/server/_libs/jszip.mjs +9 -35
- package/.output/server/_libs/modelcontextprotocol__core.mjs +25 -25
- package/.output/server/_libs/modelcontextprotocol__server.mjs +2 -2
- package/.output/server/_libs/react-dom.mjs +2 -3
- package/.output/server/_libs/react.mjs +1 -27
- package/.output/server/_libs/tanstack__react-router.mjs +1 -329
- package/.output/server/_libs/tanstack__router-core.mjs +42 -100
- package/.output/server/_libs/use-sync-external-store.mjs +1 -64
- package/.output/server/_libs/ws.mjs +1 -1
- package/.output/server/_libs/zod.mjs +6 -6
- package/.output/server/_ssr/index.mjs +5 -4
- package/.output/server/_ssr/publicBasePathContext-IH2ilOfu.mjs +176 -0
- package/.output/server/_ssr/{router-DWcUFPR3.mjs → router-D18yUq36.mjs} +7877 -5597
- package/.output/server/_ssr/start-COQu_AgD.mjs +57 -0
- package/.output/server/_tanstack-start-manifest_v-DnbdNeun.mjs +4 -0
- package/.output/server/index.mjs +5 -145
- package/.output/{public/assets/CompareDrawer-DQHjxFO6.js → ui/assets/CompareDrawer-DAUuIJ6G.js} +1 -1
- package/.output/{public/assets/InspectorPet-D1A4505B.js → ui/assets/InspectorPet-BRBVjOWI.js} +1 -1
- package/.output/ui/assets/ProxyViewerContainer-D7Sq0ctc.js +59 -0
- package/.output/{public/assets/ReplayDialog-C5vmbecv.js → ui/assets/ReplayDialog-nDLsjOhs.js} +1 -1
- package/.output/{public/assets/RequestAnatomy-CPGNB8lk.js → ui/assets/RequestAnatomy-zd4BDgL0.js} +1 -1
- package/.output/ui/assets/ResponseView-AdIXGcSn.js +2 -0
- package/.output/ui/assets/StreamingChunkSequence-CesTz8He.js +1 -0
- package/.output/{public/assets/_sessionId-CDhRgzf6.js → ui/assets/_sessionId-BAfzrhSU.js} +1 -1
- package/.output/{public/assets/_sessionId-mw3aA8Bp.js → ui/assets/_sessionId-QnBomgPD.js} +1 -1
- package/.output/ui/assets/favicon-DYEkHSNl.svg +21 -0
- package/.output/{public/assets/index-B2eoeT-Z.js → ui/assets/index-BcsdxBAd.js} +1 -1
- package/.output/ui/assets/index-BvXp42al.css +1 -0
- package/.output/{public/assets/index-CX7_rf7o.js → ui/assets/index-D0rtCN9V.js} +1 -1
- package/.output/ui/assets/index-DHpwr08Z.js +73 -0
- package/.output/{public/assets/index-BfRhTvOd.js → ui/assets/index-dNuk2dsU.js} +1 -1
- package/.output/ui/assets/json-viewer-BvFHglMb.js +1 -0
- package/.output/{public/assets/jszip.min-C9rCFoU3.js → ui/assets/jszip.min-B5Z7gNZB.js} +1 -1
- package/.output/ui/index.html +229 -0
- package/.output/ui/runtime-config.js +2 -0
- package/.output/workers/logFinalizer.worker.js +983 -414
- package/.output/workers/sessionWorkerEntry.js +983 -414
- package/README.md +363 -35
- package/docs/instance-control.openapi.yaml +361 -0
- package/package.json +28 -5
- package/scripts/generate-theme-scales.mjs +3 -3
- package/src/{router.tsx → backend/router.tsx} +3 -15
- package/src/backend/routes/$.ts +26 -0
- package/src/backend/routes/__root.ts +4 -0
- package/src/backend/routes/api/-instances.ts +109 -0
- package/src/{routes → backend/routes}/api/alerts.summary.ts +3 -3
- package/src/{routes → backend/routes}/api/alerts.ts +4 -4
- package/src/{routes → backend/routes}/api/config.paths.ts +1 -1
- package/src/{routes → backend/routes}/api/config.ts +11 -2
- package/src/{routes → backend/routes}/api/ecosystem.packages.$packageId.help.ts +1 -1
- package/src/{routes → backend/routes}/api/ecosystem.packages.$packageId.install.ts +1 -1
- package/src/{routes → backend/routes}/api/ecosystem.packages.$packageId.runner-presets.ts +1 -1
- package/src/{routes → backend/routes}/api/ecosystem.packages.$packageId.upgrade.ts +1 -1
- package/src/{routes → backend/routes}/api/ecosystem.packages.ts +5 -1
- package/src/{routes → backend/routes}/api/ecosystem.recipes.$recipeId.run.ts +1 -1
- package/src/{routes → backend/routes}/api/ecosystem.tasks.$taskId.ts +1 -1
- package/src/{routes → backend/routes}/api/ecosystem.tasks.ts +1 -1
- package/src/{routes → backend/routes}/api/groups.$groupId.evidence.ts +2 -2
- package/src/{routes → backend/routes}/api/groups.$groupId.sessions.ts +2 -2
- package/src/{routes → backend/routes}/api/groups.$groupId.ts +2 -2
- package/src/{routes → backend/routes}/api/groups.ts +2 -2
- package/src/{routes → backend/routes}/api/health.ts +3 -3
- package/src/backend/routes/api/instances.$name.connection.ts +12 -0
- package/src/backend/routes/api/instances.$name.restart.ts +23 -0
- package/src/backend/routes/api/instances.$name.start.ts +18 -0
- package/src/backend/routes/api/instances.$name.stop.ts +23 -0
- package/src/backend/routes/api/instances.$name.ts +12 -0
- package/src/backend/routes/api/instances.ts +16 -0
- package/src/{routes → backend/routes}/api/knowledge.candidates.$candidateId.promote.ts +2 -2
- package/src/{routes → backend/routes}/api/knowledge.candidates.$candidateId.ts +2 -2
- package/src/{routes → backend/routes}/api/knowledge.candidates.ts +1 -1
- package/src/{routes → backend/routes}/api/knowledge.project-context.ts +2 -2
- package/src/{routes → backend/routes}/api/knowledge.search.ts +2 -2
- package/src/{routes → backend/routes}/api/knowledge.sessions.$sessionId.candidates.ts +3 -3
- package/src/{routes → backend/routes}/api/logs.$id.body.ts +6 -6
- package/src/{routes → backend/routes}/api/logs.$id.chunks.ts +5 -4
- package/src/{routes → backend/routes}/api/logs.$id.replay.ts +12 -11
- package/src/{routes → backend/routes}/api/logs.$id.ts +4 -3
- package/src/{routes → backend/routes}/api/logs.import.ts +3 -3
- package/src/{routes → backend/routes}/api/logs.stream.ts +11 -7
- package/src/{routes → backend/routes}/api/logs.ts +17 -9
- package/src/{routes → backend/routes}/api/mcp.ts +1 -1
- package/src/{routes → backend/routes}/api/models.ts +1 -1
- package/src/{routes → backend/routes}/api/pi-agent.ts +2 -2
- package/src/{routes → backend/routes}/api/providers.$providerId.model-metadata.ts +5 -5
- package/src/{routes → backend/routes}/api/providers.$providerId.test.log.ts +7 -7
- package/src/{routes → backend/routes}/api/providers.$providerId.ts +4 -4
- package/src/{routes → backend/routes}/api/providers.export.ts +1 -1
- package/src/{routes → backend/routes}/api/providers.import.ts +3 -3
- package/src/{routes → backend/routes}/api/providers.scan.ts +2 -2
- package/src/{routes → backend/routes}/api/providers.ts +9 -4
- package/src/{routes → backend/routes}/api/runs.$runId.evidence.ts +2 -2
- package/src/{routes → backend/routes}/api/runs.$runId.ts +2 -2
- package/src/{routes → backend/routes}/api/runs.ts +4 -4
- package/src/backend/routes/api/runtime.ts +46 -0
- package/src/{routes → backend/routes}/api/sessions.ts +3 -3
- package/src/{routes → backend/routes}/proxy/$.ts +1 -1
- package/src/{routes → backend/routes}/readyz.ts +1 -1
- package/src/backend/start.ts +10 -0
- package/src/cli/alias.ts +431 -0
- package/src/cli/doctor.ts +32 -9
- package/src/cli/instance.ts +1050 -0
- package/src/cli/instanceArgs.ts +285 -0
- package/src/cli/instanceControl.ts +181 -0
- package/src/cli/instanceModel.ts +267 -0
- package/src/cli/instanceRegistry.ts +731 -0
- package/src/cli/networkHints.ts +27 -14
- package/src/cli/onboard.ts +190 -35
- package/src/cli/onboardTarget.ts +228 -0
- package/src/cli/templates/codex-skill-onboard.ts +109 -31
- package/src/cli/templates/skill-onboard.ts +140 -70
- package/src/cli.ts +338 -77
- package/src/components/ProxyViewer.tsx +20 -10
- package/src/components/ProxyViewerContainer.tsx +12 -11
- package/src/components/pi-agent/PiAgentPanel.tsx +2 -2
- package/src/components/providers/ProviderCard.tsx +1 -1
- package/src/components/providers/ProviderTestResultsView.tsx +1 -1
- package/src/components/providers/SettingsDialog.tsx +160 -140
- package/src/components/proxy-viewer/ApplicationBar.tsx +2 -1
- package/src/components/proxy-viewer/LogEntry.tsx +1 -1
- package/src/components/proxy-viewer/log-formats/index.ts +1 -1
- package/src/contracts/index.ts +5 -0
- package/src/contracts/log.ts +33 -3
- package/src/knowledge/types.ts +3 -2
- package/src/lib/alertContract.ts +2 -2
- package/src/lib/apiClient.ts +30 -7
- package/src/lib/apiFormat.ts +29 -0
- package/src/lib/basePath.ts +31 -7
- package/src/lib/browserRuntimeContract.ts +124 -0
- package/src/lib/browserRuntimeResolver.ts +244 -0
- package/src/{proxy → lib}/claudeCodeStrip.ts +6 -7
- package/src/lib/codingAgentEndpoints.ts +54 -0
- package/src/lib/instanceContract.ts +236 -0
- package/src/lib/managedInstance.ts +104 -0
- package/src/lib/piAgentContract.ts +3 -2
- package/src/lib/publicBasePathContext.ts +137 -0
- package/src/lib/resourceLimits.ts +2 -0
- package/src/lib/runContract.ts +3 -3
- package/src/lib/sessionInfoContract.ts +3 -2
- package/src/mcp/instanceHandlers.ts +150 -0
- package/src/mcp/loopback.ts +16 -5
- package/src/mcp/mode.ts +25 -0
- package/src/mcp/server.ts +274 -39
- package/src/mcp/toolHandlers.ts +2 -2
- package/src/proxy/config.ts +25 -30
- package/src/proxy/dataDir.ts +43 -7
- package/src/proxy/ecosystemTasks.ts +161 -70
- package/src/proxy/formats/registry.ts +6 -21
- package/src/proxy/handler.ts +129 -29
- package/src/proxy/identityProxy.ts +1049 -50
- package/src/proxy/jsonlRecovery.ts +554 -0
- package/src/proxy/logFinalizer.ts +25 -10
- package/src/proxy/logImporter.ts +2 -1
- package/src/proxy/logIndex.ts +191 -95
- package/src/proxy/logger.ts +77 -14
- package/src/proxy/platformCommands.ts +41 -0
- package/src/proxy/privateDataPath.ts +310 -88
- package/src/proxy/rawStreamCapture.ts +194 -13
- package/src/proxy/runtimeAdmission.ts +5 -2
- package/src/proxy/runtimeHealth.ts +14 -1
- package/src/proxy/runtimeShutdown.ts +84 -2
- package/src/proxy/schemas.ts +7 -1
- package/src/proxy/sessionArchive.ts +78 -14
- package/src/proxy/sessionInfo.ts +5 -4
- package/src/proxy/sqliteLogIndex.ts +65 -2
- package/src/proxy/store.ts +141 -34
- package/src/proxy/uiAssetServer.ts +106 -0
- package/src/proxy/upstream.ts +29 -2
- package/src/ui/bootstrap.ts +167 -0
- package/src/ui/index.html +38 -0
- package/src/ui/logsStreamClient.ts +20 -0
- package/src/ui/main.tsx +13 -0
- package/src/ui/public/runtime-config.js +2 -0
- package/src/ui/router.tsx +13 -0
- package/src/ui/routes/__root.tsx +69 -0
- package/src/{routes → ui/routes}/index.tsx +2 -3
- package/src/{routes → ui/routes}/session/$sessionId.tsx +5 -11
- package/src/ui/runtimeDiscovery.ts +50 -0
- package/styles/globals.css +1 -0
- package/.output/public/assets/ProxyViewerContainer-BhpIgfBi.js +0 -126
- package/.output/public/assets/ResponseView-DUfrajCm.js +0 -2
- package/.output/public/assets/StreamingChunkSequence-nbeCQqOz.js +0 -1
- package/.output/public/assets/index-BWjeqxbk.css +0 -1
- package/.output/public/assets/index-C6qZwYlR.js +0 -70
- package/.output/public/assets/json-viewer-BLmF1sOZ.js +0 -1
- package/.output/server/_libs/@radix-ui/react-accessible-icon+[...].mjs +0 -1
- package/.output/server/_libs/@radix-ui/react-dismissable-layer+[...].mjs +0 -344
- package/.output/server/_libs/@radix-ui/react-navigation-menu+[...].mjs +0 -2
- package/.output/server/_libs/@radix-ui/react-one-time-password-field+[...].mjs +0 -2
- package/.output/server/_libs/@radix-ui/react-password-toggle-field+[...].mjs +0 -2
- package/.output/server/_libs/@radix-ui/react-use-callback-ref+[...].mjs +0 -11
- package/.output/server/_libs/@radix-ui/react-use-controllable-state+[...].mjs +0 -69
- package/.output/server/_libs/@radix-ui/react-use-effect-event+[...].mjs +0 -1
- package/.output/server/_libs/@radix-ui/react-use-is-hydrated+[...].mjs +0 -28
- package/.output/server/_libs/@radix-ui/react-use-layout-effect+[...].mjs +0 -6
- package/.output/server/_libs/@radix-ui/react-visually-hidden+[...].mjs +0 -34
- package/.output/server/_libs/aria-hidden.mjs +0 -122
- package/.output/server/_libs/bail.mjs +0 -8
- package/.output/server/_libs/character-entities.mjs +0 -2130
- package/.output/server/_libs/class-variance-authority.mjs +0 -44
- package/.output/server/_libs/clsx.mjs +0 -16
- package/.output/server/_libs/comma-separated-tokens.mjs +0 -10
- package/.output/server/_libs/decode-named-character-reference+[...].mjs +0 -8
- package/.output/server/_libs/dequal.mjs +0 -27
- package/.output/server/_libs/detect-node-es.mjs +0 -1
- package/.output/server/_libs/devlop.mjs +0 -8
- package/.output/server/_libs/diff.mjs +0 -320
- package/.output/server/_libs/estree-util-is-identifier-name.mjs +0 -11
- package/.output/server/_libs/floating-ui__core.mjs +0 -725
- package/.output/server/_libs/floating-ui__dom.mjs +0 -622
- package/.output/server/_libs/floating-ui__react-dom.mjs +0 -292
- package/.output/server/_libs/floating-ui__utils.mjs +0 -320
- package/.output/server/_libs/get-nonce.mjs +0 -9
- package/.output/server/_libs/hast-util-to-jsx-runtime.mjs +0 -388
- package/.output/server/_libs/hast-util-whitespace.mjs +0 -10
- package/.output/server/_libs/html-url-attributes.mjs +0 -26
- package/.output/server/_libs/inline-style-parser.mjs +0 -142
- package/.output/server/_libs/is-plain-obj.mjs +0 -10
- package/.output/server/_libs/lucide-react.mjs +0 -1027
- package/.output/server/_libs/mdast-util-from-markdown.mjs +0 -717
- package/.output/server/_libs/mdast-util-to-hast.mjs +0 -710
- package/.output/server/_libs/mdast-util-to-string.mjs +0 -38
- package/.output/server/_libs/micromark-core-commonmark.mjs +0 -2259
- package/.output/server/_libs/micromark-factory-destination.mjs +0 -94
- package/.output/server/_libs/micromark-factory-label.mjs +0 -63
- package/.output/server/_libs/micromark-factory-space.mjs +0 -24
- package/.output/server/_libs/micromark-factory-title.mjs +0 -65
- package/.output/server/_libs/micromark-factory-whitespace.mjs +0 -22
- package/.output/server/_libs/micromark-util-character.mjs +0 -44
- package/.output/server/_libs/micromark-util-chunked.mjs +0 -36
- package/.output/server/_libs/micromark-util-classify-character+[...].mjs +0 -12
- package/.output/server/_libs/micromark-util-combine-extensions+[...].mjs +0 -41
- package/.output/server/_libs/micromark-util-decode-numeric-character-reference+[...].mjs +0 -19
- package/.output/server/_libs/micromark-util-decode-string.mjs +0 -21
- package/.output/server/_libs/micromark-util-encode.mjs +0 -1
- package/.output/server/_libs/micromark-util-html-tag-name.mjs +0 -69
- package/.output/server/_libs/micromark-util-normalize-identifier+[...].mjs +0 -6
- package/.output/server/_libs/micromark-util-resolve-all.mjs +0 -15
- package/.output/server/_libs/micromark-util-sanitize-uri.mjs +0 -41
- package/.output/server/_libs/micromark-util-subtokenize.mjs +0 -346
- package/.output/server/_libs/micromark.mjs +0 -906
- package/.output/server/_libs/property-information.mjs +0 -1209
- package/.output/server/_libs/radix-ui.mjs +0 -1
- package/.output/server/_libs/radix-ui__number.mjs +0 -6
- package/.output/server/_libs/radix-ui__primitive.mjs +0 -11
- package/.output/server/_libs/radix-ui__react-accordion.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-alert-dialog.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-arrow.mjs +0 -23
- package/.output/server/_libs/radix-ui__react-aspect-ratio.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-avatar.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-checkbox.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-collapsible.mjs +0 -144
- package/.output/server/_libs/radix-ui__react-collection.mjs +0 -69
- package/.output/server/_libs/radix-ui__react-compose-refs.mjs +0 -38
- package/.output/server/_libs/radix-ui__react-context-menu.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-context.mjs +0 -64
- package/.output/server/_libs/radix-ui__react-dialog.mjs +0 -280
- package/.output/server/_libs/radix-ui__react-direction.mjs +0 -9
- package/.output/server/_libs/radix-ui__react-dropdown-menu.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-focus-guards.mjs +0 -39
- package/.output/server/_libs/radix-ui__react-focus-scope.mjs +0 -210
- package/.output/server/_libs/radix-ui__react-form.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-hover-card.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-id.mjs +0 -14
- package/.output/server/_libs/radix-ui__react-label.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-menu.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-menubar.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-popover.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-popper.mjs +0 -340
- package/.output/server/_libs/radix-ui__react-portal.mjs +0 -16
- package/.output/server/_libs/radix-ui__react-presence.mjs +0 -173
- package/.output/server/_libs/radix-ui__react-primitive.mjs +0 -42
- package/.output/server/_libs/radix-ui__react-progress.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-radio-group.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-roving-focus.mjs +0 -235
- package/.output/server/_libs/radix-ui__react-scroll-area.mjs +0 -731
- package/.output/server/_libs/radix-ui__react-select.mjs +0 -1207
- package/.output/server/_libs/radix-ui__react-separator.mjs +0 -28
- package/.output/server/_libs/radix-ui__react-slider.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-slot.mjs +0 -132
- package/.output/server/_libs/radix-ui__react-switch.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-tabs.mjs +0 -194
- package/.output/server/_libs/radix-ui__react-toast.mjs +0 -2
- package/.output/server/_libs/radix-ui__react-toggle-group.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-toggle.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-toolbar.mjs +0 -1
- package/.output/server/_libs/radix-ui__react-tooltip.mjs +0 -498
- package/.output/server/_libs/radix-ui__react-use-previous.mjs +0 -14
- package/.output/server/_libs/radix-ui__react-use-size.mjs +0 -39
- package/.output/server/_libs/react-markdown.mjs +0 -235
- package/.output/server/_libs/react-remove-scroll-bar.mjs +0 -82
- package/.output/server/_libs/react-remove-scroll.mjs +0 -328
- package/.output/server/_libs/react-style-singleton.mjs +0 -69
- package/.output/server/_libs/remark-parse.mjs +0 -19
- package/.output/server/_libs/remark-rehype.mjs +0 -21
- package/.output/server/_libs/space-separated-tokens.mjs +0 -6
- package/.output/server/_libs/style-to-js.mjs +0 -72
- package/.output/server/_libs/style-to-object.mjs +0 -38
- package/.output/server/_libs/swr.mjs +0 -947
- package/.output/server/_libs/tailwind-merge.mjs +0 -3255
- package/.output/server/_libs/tanstack__react-virtual.mjs +0 -130
- package/.output/server/_libs/tanstack__virtual-core.mjs +0 -1319
- package/.output/server/_libs/three.mjs +0 -26016
- package/.output/server/_libs/trim-lines.mjs +0 -41
- package/.output/server/_libs/trough.mjs +0 -85
- package/.output/server/_libs/tslib.mjs +0 -1
- package/.output/server/_libs/ungap__structured-clone.mjs +0 -212
- package/.output/server/_libs/unified.mjs +0 -661
- package/.output/server/_libs/unist-util-is.mjs +0 -100
- package/.output/server/_libs/unist-util-position.mjs +0 -27
- package/.output/server/_libs/unist-util-stringify-position.mjs +0 -27
- package/.output/server/_libs/unist-util-visit-parents.mjs +0 -82
- package/.output/server/_libs/unist-util-visit.mjs +0 -24
- package/.output/server/_libs/use-callback-ref.mjs +0 -66
- package/.output/server/_libs/use-sidecar.mjs +0 -106
- package/.output/server/_libs/vfile-message.mjs +0 -138
- package/.output/server/_libs/vfile.mjs +0 -467
- package/.output/server/_sessionId-E_Dmopc-.mjs +0 -144
- package/.output/server/_sessionId-U54BAqdp.mjs +0 -82
- package/.output/server/_ssr/CompareDrawer-CksatPed.mjs +0 -1058
- package/.output/server/_ssr/InspectorPet-DNc4GQ7z.mjs +0 -936
- package/.output/server/_ssr/ProxyViewerContainer-B02Ey0p_.mjs +0 -17607
- package/.output/server/_ssr/ReplayDialog-DdMvHJF1.mjs +0 -723
- package/.output/server/_ssr/RequestAnatomy--vh2Z8__.mjs +0 -835
- package/.output/server/_ssr/ResponseView-Dhxc-cKC.mjs +0 -755
- package/.output/server/_ssr/StreamingChunkSequence-BG0EQmaD.mjs +0 -272
- package/.output/server/_ssr/index-D0At9nfd.mjs +0 -82
- package/.output/server/_ssr/index-lcfulIXa.mjs +0 -133
- package/.output/server/_ssr/json-viewer-My1J1_5R.mjs +0 -481
- package/.output/server/_ssr/start-HYkvq4Ni.mjs +0 -4
- package/.output/server/_tanstack-start-manifest_v-B2chR8ef.mjs +0 -4
- package/.output/server/node_modules/tslib/modules/index.js +0 -70
- package/.output/server/node_modules/tslib/modules/package.json +0 -3
- package/.output/server/node_modules/tslib/package.json +0 -47
- package/.output/server/node_modules/tslib/tslib.js +0 -484
- package/.output/server/package.json +0 -9
- package/src/routes/__root.tsx +0 -170
- /package/.output/{public → ui}/assets/agent-inspector-58K1_MsC.ico +0 -0
- /package/.output/{public → ui}/assets/alibaba-TTwafVwX.svg +0 -0
- /package/.output/{public → ui}/assets/minimax-BPMzvuL-.jpeg +0 -0
- /package/.output/{public → ui}/assets/qwen-mMn3f5ul.webp +0 -0
- /package/.output/{public → ui}/assets/zhipuai-BPNAnxo-.svg +0 -0
- /package/src/{routes → backend/routes}/livez.ts +0 -0
|
@@ -1,1027 +0,0 @@
|
|
|
1
|
-
import { r as reactExports } from "./react.mjs";
|
|
2
|
-
const mergeClasses = (...classes) => classes.filter((className, index, array) => {
|
|
3
|
-
return Boolean(className) && className.trim() !== "" && array.indexOf(className) === index;
|
|
4
|
-
}).join(" ").trim();
|
|
5
|
-
const toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
|
|
6
|
-
const toCamelCase = (string) => string.replace(
|
|
7
|
-
/^([A-Z])|[\s-_]+(\w)/g,
|
|
8
|
-
(match, p1, p2) => p2 ? p2.toUpperCase() : p1.toLowerCase()
|
|
9
|
-
);
|
|
10
|
-
const toPascalCase = (string) => {
|
|
11
|
-
const camelCase = toCamelCase(string);
|
|
12
|
-
return camelCase.charAt(0).toUpperCase() + camelCase.slice(1);
|
|
13
|
-
};
|
|
14
|
-
var defaultAttributes = {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
width: 24,
|
|
17
|
-
height: 24,
|
|
18
|
-
viewBox: "0 0 24 24",
|
|
19
|
-
fill: "none",
|
|
20
|
-
stroke: "currentColor",
|
|
21
|
-
strokeWidth: 2,
|
|
22
|
-
strokeLinecap: "round",
|
|
23
|
-
strokeLinejoin: "round"
|
|
24
|
-
};
|
|
25
|
-
const hasA11yProp = (props) => {
|
|
26
|
-
for (const prop in props) {
|
|
27
|
-
if (prop.startsWith("aria-") || prop === "role" || prop === "title") {
|
|
28
|
-
return true;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
return false;
|
|
32
|
-
};
|
|
33
|
-
const Icon = reactExports.forwardRef(
|
|
34
|
-
({
|
|
35
|
-
color = "currentColor",
|
|
36
|
-
size = 24,
|
|
37
|
-
strokeWidth = 2,
|
|
38
|
-
absoluteStrokeWidth,
|
|
39
|
-
className = "",
|
|
40
|
-
children,
|
|
41
|
-
iconNode,
|
|
42
|
-
...rest
|
|
43
|
-
}, ref) => reactExports.createElement(
|
|
44
|
-
"svg",
|
|
45
|
-
{
|
|
46
|
-
ref,
|
|
47
|
-
...defaultAttributes,
|
|
48
|
-
width: size,
|
|
49
|
-
height: size,
|
|
50
|
-
stroke: color,
|
|
51
|
-
strokeWidth: absoluteStrokeWidth ? Number(strokeWidth) * 24 / Number(size) : strokeWidth,
|
|
52
|
-
className: mergeClasses("lucide", className),
|
|
53
|
-
...!children && !hasA11yProp(rest) && { "aria-hidden": "true" },
|
|
54
|
-
...rest
|
|
55
|
-
},
|
|
56
|
-
[
|
|
57
|
-
...iconNode.map(([tag, attrs]) => reactExports.createElement(tag, attrs)),
|
|
58
|
-
...Array.isArray(children) ? children : [children]
|
|
59
|
-
]
|
|
60
|
-
)
|
|
61
|
-
);
|
|
62
|
-
const createLucideIcon = (iconName, iconNode) => {
|
|
63
|
-
const Component = reactExports.forwardRef(
|
|
64
|
-
({ className, ...props }, ref) => reactExports.createElement(Icon, {
|
|
65
|
-
ref,
|
|
66
|
-
iconNode,
|
|
67
|
-
className: mergeClasses(
|
|
68
|
-
`lucide-${toKebabCase(toPascalCase(iconName))}`,
|
|
69
|
-
`lucide-${iconName}`,
|
|
70
|
-
className
|
|
71
|
-
),
|
|
72
|
-
...props
|
|
73
|
-
})
|
|
74
|
-
);
|
|
75
|
-
Component.displayName = toPascalCase(iconName);
|
|
76
|
-
return Component;
|
|
77
|
-
};
|
|
78
|
-
const __iconNode$1B = [
|
|
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$1B);
|
|
85
|
-
const __iconNode$1A = [
|
|
86
|
-
[
|
|
87
|
-
"path",
|
|
88
|
-
{
|
|
89
|
-
d: "M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2",
|
|
90
|
-
key: "169zse"
|
|
91
|
-
}
|
|
92
|
-
]
|
|
93
|
-
];
|
|
94
|
-
const Activity = createLucideIcon("activity", __iconNode$1A);
|
|
95
|
-
const __iconNode$1z = [
|
|
96
|
-
["path", { d: "m7 7 10 10", key: "1fmybs" }],
|
|
97
|
-
["path", { d: "M17 7v10H7", key: "6fjiku" }]
|
|
98
|
-
];
|
|
99
|
-
const ArrowDownRight = createLucideIcon("arrow-down-right", __iconNode$1z);
|
|
100
|
-
const __iconNode$1y = [
|
|
101
|
-
["path", { d: "M12 5v14", key: "s699le" }],
|
|
102
|
-
["path", { d: "m19 12-7 7-7-7", key: "1idqje" }]
|
|
103
|
-
];
|
|
104
|
-
const ArrowDown = createLucideIcon("arrow-down", __iconNode$1y);
|
|
105
|
-
const __iconNode$1x = [
|
|
106
|
-
["path", { d: "m12 19-7-7 7-7", key: "1l729n" }],
|
|
107
|
-
["path", { d: "M19 12H5", key: "x3x0zl" }]
|
|
108
|
-
];
|
|
109
|
-
const ArrowLeft = createLucideIcon("arrow-left", __iconNode$1x);
|
|
110
|
-
const __iconNode$1w = [
|
|
111
|
-
["path", { d: "M7 7h10v10", key: "1tivn9" }],
|
|
112
|
-
["path", { d: "M7 17 17 7", key: "1vkiza" }]
|
|
113
|
-
];
|
|
114
|
-
const ArrowUpRight = createLucideIcon("arrow-up-right", __iconNode$1w);
|
|
115
|
-
const __iconNode$1v = [
|
|
116
|
-
["path", { d: "m5 12 7-7 7 7", key: "hav0vg" }],
|
|
117
|
-
["path", { d: "M12 19V5", key: "x0mq9r" }]
|
|
118
|
-
];
|
|
119
|
-
const ArrowUp = createLucideIcon("arrow-up", __iconNode$1v);
|
|
120
|
-
const __iconNode$1u = [
|
|
121
|
-
["path", { d: "M4.5 3h15", key: "c7n0jr" }],
|
|
122
|
-
["path", { d: "M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3", key: "m1uhx7" }],
|
|
123
|
-
["path", { d: "M6 14h12", key: "4cwo0f" }]
|
|
124
|
-
];
|
|
125
|
-
const Beaker = createLucideIcon("beaker", __iconNode$1u);
|
|
126
|
-
const __iconNode$1t = [
|
|
127
|
-
["path", { d: "M10.268 21a2 2 0 0 0 3.464 0", key: "vwvbt9" }],
|
|
128
|
-
[
|
|
129
|
-
"path",
|
|
130
|
-
{
|
|
131
|
-
d: "M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326",
|
|
132
|
-
key: "11g9vi"
|
|
133
|
-
}
|
|
134
|
-
]
|
|
135
|
-
];
|
|
136
|
-
const Bell = createLucideIcon("bell", __iconNode$1t);
|
|
137
|
-
const __iconNode$1s = [
|
|
138
|
-
[
|
|
139
|
-
"path",
|
|
140
|
-
{
|
|
141
|
-
d: "M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2",
|
|
142
|
-
key: "1ah6g2"
|
|
143
|
-
}
|
|
144
|
-
],
|
|
145
|
-
["rect", { x: "14", y: "2", width: "8", height: "8", rx: "1", key: "88lufb" }]
|
|
146
|
-
];
|
|
147
|
-
const Blocks = createLucideIcon("blocks", __iconNode$1s);
|
|
148
|
-
const __iconNode$1r = [
|
|
149
|
-
[
|
|
150
|
-
"path",
|
|
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" }
|
|
152
|
-
],
|
|
153
|
-
[
|
|
154
|
-
"path",
|
|
155
|
-
{
|
|
156
|
-
d: "M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1",
|
|
157
|
-
key: "e1hn23"
|
|
158
|
-
}
|
|
159
|
-
]
|
|
160
|
-
];
|
|
161
|
-
const Braces = createLucideIcon("braces", __iconNode$1r);
|
|
162
|
-
const __iconNode$1q = [
|
|
163
|
-
[
|
|
164
|
-
"path",
|
|
165
|
-
{
|
|
166
|
-
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",
|
|
167
|
-
key: "l5xja"
|
|
168
|
-
}
|
|
169
|
-
],
|
|
170
|
-
["path", { d: "M9 13a4.5 4.5 0 0 0 3-4", key: "10igwf" }],
|
|
171
|
-
["path", { d: "M6.003 5.125A3 3 0 0 0 6.401 6.5", key: "105sqy" }],
|
|
172
|
-
["path", { d: "M3.477 10.896a4 4 0 0 1 .585-.396", key: "ql3yin" }],
|
|
173
|
-
["path", { d: "M6 18a4 4 0 0 1-1.967-.516", key: "2e4loj" }],
|
|
174
|
-
["path", { d: "M12 13h4", key: "1ku699" }],
|
|
175
|
-
["path", { d: "M12 18h6a2 2 0 0 1 2 2v1", key: "105ag5" }],
|
|
176
|
-
["path", { d: "M12 8h8", key: "1lhi5i" }],
|
|
177
|
-
["path", { d: "M16 8V5a2 2 0 0 1 2-2", key: "u6izg6" }],
|
|
178
|
-
["circle", { cx: "16", cy: "13", r: ".5", key: "ry7gng" }],
|
|
179
|
-
["circle", { cx: "18", cy: "3", r: ".5", key: "1aiba7" }],
|
|
180
|
-
["circle", { cx: "20", cy: "21", r: ".5", key: "yhc1fs" }],
|
|
181
|
-
["circle", { cx: "20", cy: "8", r: ".5", key: "1e43v0" }]
|
|
182
|
-
];
|
|
183
|
-
const BrainCircuit = createLucideIcon("brain-circuit", __iconNode$1q);
|
|
184
|
-
const __iconNode$1p = [
|
|
185
|
-
["path", { d: "M12 18V5", key: "adv99a" }],
|
|
186
|
-
["path", { d: "M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4", key: "1e3is1" }],
|
|
187
|
-
["path", { d: "M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5", key: "1gqd8o" }],
|
|
188
|
-
["path", { d: "M17.997 5.125a4 4 0 0 1 2.526 5.77", key: "iwvgf7" }],
|
|
189
|
-
["path", { d: "M18 18a4 4 0 0 0 2-7.464", key: "efp6ie" }],
|
|
190
|
-
["path", { d: "M19.967 17.483A4 4 0 1 1 12 18a4 4 0 1 1-7.967-.517", key: "1gq6am" }],
|
|
191
|
-
["path", { d: "M6 18a4 4 0 0 1-2-7.464", key: "k1g0md" }],
|
|
192
|
-
["path", { d: "M6.003 5.125a4 4 0 0 0-2.526 5.77", key: "q97ue3" }]
|
|
193
|
-
];
|
|
194
|
-
const Brain = createLucideIcon("brain", __iconNode$1p);
|
|
195
|
-
const __iconNode$1o = [["path", { d: "M20 6 9 17l-5-5", key: "1gmf2c" }]];
|
|
196
|
-
const Check = createLucideIcon("check", __iconNode$1o);
|
|
197
|
-
const __iconNode$1n = [["path", { d: "m6 9 6 6 6-6", key: "qrunsl" }]];
|
|
198
|
-
const ChevronDown = createLucideIcon("chevron-down", __iconNode$1n);
|
|
199
|
-
const __iconNode$1m = [["path", { d: "m15 18-6-6 6-6", key: "1wnfg3" }]];
|
|
200
|
-
const ChevronLeft = createLucideIcon("chevron-left", __iconNode$1m);
|
|
201
|
-
const __iconNode$1l = [["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]];
|
|
202
|
-
const ChevronRight = createLucideIcon("chevron-right", __iconNode$1l);
|
|
203
|
-
const __iconNode$1k = [["path", { d: "m18 15-6-6-6 6", key: "153udz" }]];
|
|
204
|
-
const ChevronUp = createLucideIcon("chevron-up", __iconNode$1k);
|
|
205
|
-
const __iconNode$1j = [
|
|
206
|
-
["path", { d: "m7 6 5 5 5-5", key: "1lc07p" }],
|
|
207
|
-
["path", { d: "m7 13 5 5 5-5", key: "1d48rs" }]
|
|
208
|
-
];
|
|
209
|
-
const ChevronsDown = createLucideIcon("chevrons-down", __iconNode$1j);
|
|
210
|
-
const __iconNode$1i = [
|
|
211
|
-
["path", { d: "m11 17-5-5 5-5", key: "13zhaf" }],
|
|
212
|
-
["path", { d: "m18 17-5-5 5-5", key: "h8a8et" }]
|
|
213
|
-
];
|
|
214
|
-
const ChevronsLeft = createLucideIcon("chevrons-left", __iconNode$1i);
|
|
215
|
-
const __iconNode$1h = [
|
|
216
|
-
["path", { d: "m6 17 5-5-5-5", key: "xnjwq" }],
|
|
217
|
-
["path", { d: "m13 17 5-5-5-5", key: "17xmmf" }]
|
|
218
|
-
];
|
|
219
|
-
const ChevronsRight = createLucideIcon("chevrons-right", __iconNode$1h);
|
|
220
|
-
const __iconNode$1g = [
|
|
221
|
-
["path", { d: "m17 11-5-5-5 5", key: "e8nh98" }],
|
|
222
|
-
["path", { d: "m17 18-5-5-5 5", key: "2avn1x" }]
|
|
223
|
-
];
|
|
224
|
-
const ChevronsUp = createLucideIcon("chevrons-up", __iconNode$1g);
|
|
225
|
-
const __iconNode$1f = [
|
|
226
|
-
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
227
|
-
["line", { x1: "12", x2: "12", y1: "8", y2: "12", key: "1pkeuh" }],
|
|
228
|
-
["line", { x1: "12", x2: "12.01", y1: "16", y2: "16", key: "4dfq90" }]
|
|
229
|
-
];
|
|
230
|
-
const CircleAlert = createLucideIcon("circle-alert", __iconNode$1f);
|
|
231
|
-
const __iconNode$1e = [
|
|
232
|
-
["path", { d: "M21.801 10A10 10 0 1 1 17 3.335", key: "yps3ct" }],
|
|
233
|
-
["path", { d: "m9 11 3 3L22 4", key: "1pflzl" }]
|
|
234
|
-
];
|
|
235
|
-
const CircleCheckBig = createLucideIcon("circle-check-big", __iconNode$1e);
|
|
236
|
-
const __iconNode$1d = [
|
|
237
|
-
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
238
|
-
["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }]
|
|
239
|
-
];
|
|
240
|
-
const CircleCheck = createLucideIcon("circle-check", __iconNode$1d);
|
|
241
|
-
const __iconNode$1c = [
|
|
242
|
-
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
243
|
-
["path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3", key: "1u773s" }],
|
|
244
|
-
["path", { d: "M12 17h.01", key: "p32p05" }]
|
|
245
|
-
];
|
|
246
|
-
const CircleQuestionMark = createLucideIcon("circle-question-mark", __iconNode$1c);
|
|
247
|
-
const __iconNode$1b = [
|
|
248
|
-
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
249
|
-
["rect", { x: "9", y: "9", width: "6", height: "6", rx: "1", key: "1ssd4o" }]
|
|
250
|
-
];
|
|
251
|
-
const CircleStop = createLucideIcon("circle-stop", __iconNode$1b);
|
|
252
|
-
const __iconNode$1a = [
|
|
253
|
-
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
254
|
-
["path", { d: "m15 9-6 6", key: "1uzhvr" }],
|
|
255
|
-
["path", { d: "m9 9 6 6", key: "z0biqf" }]
|
|
256
|
-
];
|
|
257
|
-
const CircleX = createLucideIcon("circle-x", __iconNode$1a);
|
|
258
|
-
const __iconNode$19 = [
|
|
259
|
-
[
|
|
260
|
-
"path",
|
|
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" }
|
|
262
|
-
],
|
|
263
|
-
["path", { d: "m6.2 5.3 3.1 3.9", key: "iuk76l" }],
|
|
264
|
-
["path", { d: "m12.4 3.4 3.1 4", key: "6hsd6n" }],
|
|
265
|
-
["path", { d: "M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z", key: "ltgou9" }]
|
|
266
|
-
];
|
|
267
|
-
const Clapperboard = createLucideIcon("clapperboard", __iconNode$19);
|
|
268
|
-
const __iconNode$18 = [
|
|
269
|
-
["path", { d: "M12 6v6h4", key: "135r8i" }],
|
|
270
|
-
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
|
|
271
|
-
];
|
|
272
|
-
const Clock3 = createLucideIcon("clock-3", __iconNode$18);
|
|
273
|
-
const __iconNode$17 = [
|
|
274
|
-
["path", { d: "M12 6v6l4 2", key: "mmk7yg" }],
|
|
275
|
-
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
|
|
276
|
-
];
|
|
277
|
-
const Clock = createLucideIcon("clock", __iconNode$17);
|
|
278
|
-
const __iconNode$16 = [
|
|
279
|
-
["path", { d: "M12 13v8", key: "1l5pq0" }],
|
|
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" }],
|
|
281
|
-
["path", { d: "m8 17 4-4 4 4", key: "1quai1" }]
|
|
282
|
-
];
|
|
283
|
-
const CloudUpload = createLucideIcon("cloud-upload", __iconNode$16);
|
|
284
|
-
const __iconNode$15 = [
|
|
285
|
-
["path", { d: "m18 16 4-4-4-4", key: "1inbqp" }],
|
|
286
|
-
["path", { d: "m6 8-4 4 4 4", key: "15zrgr" }],
|
|
287
|
-
["path", { d: "m14.5 4-5 16", key: "e7oirm" }]
|
|
288
|
-
];
|
|
289
|
-
const CodeXml = createLucideIcon("code-xml", __iconNode$15);
|
|
290
|
-
const __iconNode$14 = [
|
|
291
|
-
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
|
|
292
|
-
["path", { d: "M12 3v18", key: "108xh3" }]
|
|
293
|
-
];
|
|
294
|
-
const Columns2 = createLucideIcon("columns-2", __iconNode$14);
|
|
295
|
-
const __iconNode$13 = [
|
|
296
|
-
["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2", key: "17jyea" }],
|
|
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" }]
|
|
298
|
-
];
|
|
299
|
-
const Copy = createLucideIcon("copy", __iconNode$13);
|
|
300
|
-
const __iconNode$12 = [
|
|
301
|
-
["path", { d: "M12 20v2", key: "1lh1kg" }],
|
|
302
|
-
["path", { d: "M12 2v2", key: "tus03m" }],
|
|
303
|
-
["path", { d: "M17 20v2", key: "1rnc9c" }],
|
|
304
|
-
["path", { d: "M17 2v2", key: "11trls" }],
|
|
305
|
-
["path", { d: "M2 12h2", key: "1t8f8n" }],
|
|
306
|
-
["path", { d: "M2 17h2", key: "7oei6x" }],
|
|
307
|
-
["path", { d: "M2 7h2", key: "asdhe0" }],
|
|
308
|
-
["path", { d: "M20 12h2", key: "1q8mjw" }],
|
|
309
|
-
["path", { d: "M20 17h2", key: "1fpfkl" }],
|
|
310
|
-
["path", { d: "M20 7h2", key: "1o8tra" }],
|
|
311
|
-
["path", { d: "M7 20v2", key: "4gnj0m" }],
|
|
312
|
-
["path", { d: "M7 2v2", key: "1i4yhu" }],
|
|
313
|
-
["rect", { x: "4", y: "4", width: "16", height: "16", rx: "2", key: "1vbyd7" }],
|
|
314
|
-
["rect", { x: "8", y: "8", width: "8", height: "8", rx: "1", key: "z9xiuo" }]
|
|
315
|
-
];
|
|
316
|
-
const Cpu = createLucideIcon("cpu", __iconNode$12);
|
|
317
|
-
const __iconNode$11 = [
|
|
318
|
-
["path", { d: "M12 15V3", key: "m9g1x1" }],
|
|
319
|
-
["path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4", key: "ih7n3h" }],
|
|
320
|
-
["path", { d: "m7 10 5 5 5-5", key: "brsn70" }]
|
|
321
|
-
];
|
|
322
|
-
const Download = createLucideIcon("download", __iconNode$11);
|
|
323
|
-
const __iconNode$10 = [
|
|
324
|
-
["circle", { cx: "12", cy: "12", r: "1", key: "41hilf" }],
|
|
325
|
-
["circle", { cx: "19", cy: "12", r: "1", key: "1wjl8i" }],
|
|
326
|
-
["circle", { cx: "5", cy: "12", r: "1", key: "1pcz8c" }]
|
|
327
|
-
];
|
|
328
|
-
const Ellipsis = createLucideIcon("ellipsis", __iconNode$10);
|
|
329
|
-
const __iconNode$$ = [
|
|
330
|
-
["line", { x1: "5", x2: "19", y1: "9", y2: "9", key: "1nwqeh" }],
|
|
331
|
-
["line", { x1: "5", x2: "19", y1: "15", y2: "15", key: "g8yjpy" }]
|
|
332
|
-
];
|
|
333
|
-
const Equal = createLucideIcon("equal", __iconNode$$);
|
|
334
|
-
const __iconNode$_ = [
|
|
335
|
-
["path", { d: "M15 3h6v6", key: "1q9fwt" }],
|
|
336
|
-
["path", { d: "M10 14 21 3", key: "gplh6r" }],
|
|
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" }]
|
|
338
|
-
];
|
|
339
|
-
const ExternalLink = createLucideIcon("external-link", __iconNode$_);
|
|
340
|
-
const __iconNode$Z = [
|
|
341
|
-
[
|
|
342
|
-
"path",
|
|
343
|
-
{
|
|
344
|
-
d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",
|
|
345
|
-
key: "ct8e1f"
|
|
346
|
-
}
|
|
347
|
-
],
|
|
348
|
-
["path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242", key: "151rxh" }],
|
|
349
|
-
[
|
|
350
|
-
"path",
|
|
351
|
-
{
|
|
352
|
-
d: "M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143",
|
|
353
|
-
key: "13bj9a"
|
|
354
|
-
}
|
|
355
|
-
],
|
|
356
|
-
["path", { d: "m2 2 20 20", key: "1ooewy" }]
|
|
357
|
-
];
|
|
358
|
-
const EyeOff = createLucideIcon("eye-off", __iconNode$Z);
|
|
359
|
-
const __iconNode$Y = [
|
|
360
|
-
[
|
|
361
|
-
"path",
|
|
362
|
-
{
|
|
363
|
-
d: "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0",
|
|
364
|
-
key: "1nclc0"
|
|
365
|
-
}
|
|
366
|
-
],
|
|
367
|
-
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }]
|
|
368
|
-
];
|
|
369
|
-
const Eye = createLucideIcon("eye", __iconNode$Y);
|
|
370
|
-
const __iconNode$X = [
|
|
371
|
-
[
|
|
372
|
-
"path",
|
|
373
|
-
{
|
|
374
|
-
d: "M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",
|
|
375
|
-
key: "1oefj6"
|
|
376
|
-
}
|
|
377
|
-
],
|
|
378
|
-
["path", { d: "M14 2v5a1 1 0 0 0 1 1h5", key: "wfsgrz" }],
|
|
379
|
-
[
|
|
380
|
-
"path",
|
|
381
|
-
{ d: "M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1", key: "1oajmo" }
|
|
382
|
-
],
|
|
383
|
-
[
|
|
384
|
-
"path",
|
|
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" }
|
|
386
|
-
]
|
|
387
|
-
];
|
|
388
|
-
const FileBraces = createLucideIcon("file-braces", __iconNode$X);
|
|
389
|
-
const __iconNode$W = [
|
|
390
|
-
[
|
|
391
|
-
"path",
|
|
392
|
-
{
|
|
393
|
-
d: "M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",
|
|
394
|
-
key: "1oefj6"
|
|
395
|
-
}
|
|
396
|
-
],
|
|
397
|
-
["path", { d: "M9 10h6", key: "9gxzsh" }],
|
|
398
|
-
["path", { d: "M12 13V7", key: "h0r20n" }],
|
|
399
|
-
["path", { d: "M9 17h6", key: "r8uit2" }]
|
|
400
|
-
];
|
|
401
|
-
const FileDiff = createLucideIcon("file-diff", __iconNode$W);
|
|
402
|
-
const __iconNode$V = [
|
|
403
|
-
[
|
|
404
|
-
"path",
|
|
405
|
-
{
|
|
406
|
-
d: "M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",
|
|
407
|
-
key: "1oefj6"
|
|
408
|
-
}
|
|
409
|
-
],
|
|
410
|
-
["path", { d: "M14 2v5a1 1 0 0 0 1 1h5", key: "wfsgrz" }],
|
|
411
|
-
["circle", { cx: "11.5", cy: "14.5", r: "2.5", key: "1bq0ko" }],
|
|
412
|
-
["path", { d: "M13.3 16.3 15 18", key: "2quom7" }]
|
|
413
|
-
];
|
|
414
|
-
const FileSearch = createLucideIcon("file-search", __iconNode$V);
|
|
415
|
-
const __iconNode$U = [
|
|
416
|
-
[
|
|
417
|
-
"path",
|
|
418
|
-
{
|
|
419
|
-
d: "M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",
|
|
420
|
-
key: "1oefj6"
|
|
421
|
-
}
|
|
422
|
-
],
|
|
423
|
-
["path", { d: "M14 2v5a1 1 0 0 0 1 1h5", key: "wfsgrz" }],
|
|
424
|
-
["path", { d: "m8 16 2-2-2-2", key: "10vzyd" }],
|
|
425
|
-
["path", { d: "M12 18h4", key: "1wd2n7" }]
|
|
426
|
-
];
|
|
427
|
-
const FileTerminal = createLucideIcon("file-terminal", __iconNode$U);
|
|
428
|
-
const __iconNode$T = [
|
|
429
|
-
[
|
|
430
|
-
"path",
|
|
431
|
-
{
|
|
432
|
-
d: "M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",
|
|
433
|
-
key: "1oefj6"
|
|
434
|
-
}
|
|
435
|
-
],
|
|
436
|
-
["path", { d: "M14 2v5a1 1 0 0 0 1 1h5", key: "wfsgrz" }],
|
|
437
|
-
["path", { d: "M10 9H8", key: "b1mrlr" }],
|
|
438
|
-
["path", { d: "M16 13H8", key: "t4e002" }],
|
|
439
|
-
["path", { d: "M16 17H8", key: "z1uh3a" }]
|
|
440
|
-
];
|
|
441
|
-
const FileText = createLucideIcon("file-text", __iconNode$T);
|
|
442
|
-
const __iconNode$S = [
|
|
443
|
-
[
|
|
444
|
-
"path",
|
|
445
|
-
{
|
|
446
|
-
d: "M4 22V4a1 1 0 0 1 .4-.8A6 6 0 0 1 8 2c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10a1 1 0 0 1-.4.8A6 6 0 0 1 16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528",
|
|
447
|
-
key: "1jaruq"
|
|
448
|
-
}
|
|
449
|
-
]
|
|
450
|
-
];
|
|
451
|
-
const Flag = createLucideIcon("flag", __iconNode$S);
|
|
452
|
-
const __iconNode$R = [
|
|
453
|
-
[
|
|
454
|
-
"path",
|
|
455
|
-
{
|
|
456
|
-
d: "M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2",
|
|
457
|
-
key: "18mbvz"
|
|
458
|
-
}
|
|
459
|
-
],
|
|
460
|
-
["path", { d: "M6.453 15h11.094", key: "3shlmq" }],
|
|
461
|
-
["path", { d: "M8.5 2h7", key: "csnxdl" }]
|
|
462
|
-
];
|
|
463
|
-
const FlaskConical = createLucideIcon("flask-conical", __iconNode$R);
|
|
464
|
-
const __iconNode$Q = [
|
|
465
|
-
[
|
|
466
|
-
"path",
|
|
467
|
-
{
|
|
468
|
-
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",
|
|
469
|
-
key: "usdka0"
|
|
470
|
-
}
|
|
471
|
-
]
|
|
472
|
-
];
|
|
473
|
-
const FolderOpen = createLucideIcon("folder-open", __iconNode$Q);
|
|
474
|
-
const __iconNode$P = [
|
|
475
|
-
["path", { d: "m12 14 4-4", key: "9kzdfg" }],
|
|
476
|
-
["path", { d: "M3.34 19a10 10 0 1 1 17.32 0", key: "19p75a" }]
|
|
477
|
-
];
|
|
478
|
-
const Gauge = createLucideIcon("gauge", __iconNode$P);
|
|
479
|
-
const __iconNode$O = [
|
|
480
|
-
["circle", { cx: "5", cy: "6", r: "3", key: "1qnov2" }],
|
|
481
|
-
["path", { d: "M12 6h5a2 2 0 0 1 2 2v7", key: "1yj91y" }],
|
|
482
|
-
["path", { d: "m15 9-3-3 3-3", key: "1lwv8l" }],
|
|
483
|
-
["circle", { cx: "19", cy: "18", r: "3", key: "1qljk2" }],
|
|
484
|
-
["path", { d: "M12 18H7a2 2 0 0 1-2-2V9", key: "16sdep" }],
|
|
485
|
-
["path", { d: "m9 15 3 3-3 3", key: "1m3kbl" }]
|
|
486
|
-
];
|
|
487
|
-
const GitCompareArrows = createLucideIcon("git-compare-arrows", __iconNode$O);
|
|
488
|
-
const __iconNode$N = [
|
|
489
|
-
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
490
|
-
["path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20", key: "13o1zl" }],
|
|
491
|
-
["path", { d: "M2 12h20", key: "9i4pu4" }]
|
|
492
|
-
];
|
|
493
|
-
const Globe = createLucideIcon("globe", __iconNode$N);
|
|
494
|
-
const __iconNode$M = [
|
|
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$M);
|
|
504
|
-
const __iconNode$L = [
|
|
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" }],
|
|
506
|
-
["path", { d: "M3 3v5h5", key: "1xhq8a" }],
|
|
507
|
-
["path", { d: "M12 7v5l4 2", key: "1fdv2h" }]
|
|
508
|
-
];
|
|
509
|
-
const History = createLucideIcon("history", __iconNode$L);
|
|
510
|
-
const __iconNode$K = [
|
|
511
|
-
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
512
|
-
["path", { d: "M12 16v-4", key: "1dtifu" }],
|
|
513
|
-
["path", { d: "M12 8h.01", key: "e9boi3" }]
|
|
514
|
-
];
|
|
515
|
-
const Info = createLucideIcon("info", __iconNode$K);
|
|
516
|
-
const __iconNode$J = [
|
|
517
|
-
[
|
|
518
|
-
"path",
|
|
519
|
-
{
|
|
520
|
-
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",
|
|
521
|
-
key: "zw3jo"
|
|
522
|
-
}
|
|
523
|
-
],
|
|
524
|
-
[
|
|
525
|
-
"path",
|
|
526
|
-
{
|
|
527
|
-
d: "M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12",
|
|
528
|
-
key: "1wduqc"
|
|
529
|
-
}
|
|
530
|
-
],
|
|
531
|
-
[
|
|
532
|
-
"path",
|
|
533
|
-
{
|
|
534
|
-
d: "M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17",
|
|
535
|
-
key: "kqbvx6"
|
|
536
|
-
}
|
|
537
|
-
]
|
|
538
|
-
];
|
|
539
|
-
const Layers = createLucideIcon("layers", __iconNode$J);
|
|
540
|
-
const __iconNode$I = [["path", { d: "M21 12a9 9 0 1 1-6.219-8.56", key: "13zald" }]];
|
|
541
|
-
const LoaderCircle = createLucideIcon("loader-circle", __iconNode$I);
|
|
542
|
-
const __iconNode$H = [
|
|
543
|
-
["rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2", key: "1w4ew1" }],
|
|
544
|
-
["path", { d: "M7 11V7a5 5 0 0 1 10 0v4", key: "fwvmzm" }]
|
|
545
|
-
];
|
|
546
|
-
const Lock = createLucideIcon("lock", __iconNode$H);
|
|
547
|
-
const __iconNode$G = [
|
|
548
|
-
["path", { d: "M15 3h6v6", key: "1q9fwt" }],
|
|
549
|
-
["path", { d: "m21 3-7 7", key: "1l2asr" }],
|
|
550
|
-
["path", { d: "m3 21 7-7", key: "tjx5ai" }],
|
|
551
|
-
["path", { d: "M9 21H3v-6", key: "wtvkvv" }]
|
|
552
|
-
];
|
|
553
|
-
const Maximize2 = createLucideIcon("maximize-2", __iconNode$G);
|
|
554
|
-
const __iconNode$F = [
|
|
555
|
-
[
|
|
556
|
-
"path",
|
|
557
|
-
{
|
|
558
|
-
d: "M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",
|
|
559
|
-
key: "18887p"
|
|
560
|
-
}
|
|
561
|
-
]
|
|
562
|
-
];
|
|
563
|
-
const MessageSquare = createLucideIcon("message-square", __iconNode$F);
|
|
564
|
-
const __iconNode$E = [
|
|
565
|
-
["path", { d: "m14 10 7-7", key: "oa77jy" }],
|
|
566
|
-
["path", { d: "M20 10h-6V4", key: "mjg0md" }],
|
|
567
|
-
["path", { d: "m3 21 7-7", key: "tjx5ai" }],
|
|
568
|
-
["path", { d: "M4 14h6v6", key: "rmj7iw" }]
|
|
569
|
-
];
|
|
570
|
-
const Minimize2 = createLucideIcon("minimize-2", __iconNode$E);
|
|
571
|
-
const __iconNode$D = [["path", { d: "M5 12h14", key: "1ays0h" }]];
|
|
572
|
-
const Minus = createLucideIcon("minus", __iconNode$D);
|
|
573
|
-
const __iconNode$C = [
|
|
574
|
-
["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2", key: "48i651" }],
|
|
575
|
-
["line", { x1: "8", x2: "16", y1: "21", y2: "21", key: "1svkeh" }],
|
|
576
|
-
["line", { x1: "12", x2: "12", y1: "17", y2: "21", key: "vw1qmm" }]
|
|
577
|
-
];
|
|
578
|
-
const Monitor = createLucideIcon("monitor", __iconNode$C);
|
|
579
|
-
const __iconNode$B = [
|
|
580
|
-
[
|
|
581
|
-
"path",
|
|
582
|
-
{
|
|
583
|
-
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",
|
|
584
|
-
key: "kfwtm"
|
|
585
|
-
}
|
|
586
|
-
]
|
|
587
|
-
];
|
|
588
|
-
const Moon = createLucideIcon("moon", __iconNode$B);
|
|
589
|
-
const __iconNode$A = [
|
|
590
|
-
["path", { d: "M14 4.1 12 6", key: "ita8i4" }],
|
|
591
|
-
["path", { d: "m5.1 8-2.9-.8", key: "1go3kf" }],
|
|
592
|
-
["path", { d: "m6 12-1.9 2", key: "mnht97" }],
|
|
593
|
-
["path", { d: "M7.2 2.2 8 5.1", key: "1cfko1" }],
|
|
594
|
-
[
|
|
595
|
-
"path",
|
|
596
|
-
{
|
|
597
|
-
d: "M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z",
|
|
598
|
-
key: "s0h3yz"
|
|
599
|
-
}
|
|
600
|
-
]
|
|
601
|
-
];
|
|
602
|
-
const MousePointerClick = createLucideIcon("mouse-pointer-click", __iconNode$A);
|
|
603
|
-
const __iconNode$z = [
|
|
604
|
-
["rect", { x: "16", y: "16", width: "6", height: "6", rx: "1", key: "4q2zg0" }],
|
|
605
|
-
["rect", { x: "2", y: "16", width: "6", height: "6", rx: "1", key: "8cvhb9" }],
|
|
606
|
-
["rect", { x: "9", y: "2", width: "6", height: "6", rx: "1", key: "1egb70" }],
|
|
607
|
-
["path", { d: "M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3", key: "1jsf9p" }],
|
|
608
|
-
["path", { d: "M12 12V8", key: "2874zd" }]
|
|
609
|
-
];
|
|
610
|
-
const Network = createLucideIcon("network", __iconNode$z);
|
|
611
|
-
const __iconNode$y = [
|
|
612
|
-
["path", { d: "M12 16h.01", key: "1drbdi" }],
|
|
613
|
-
["path", { d: "M12 8v4", key: "1got3b" }],
|
|
614
|
-
[
|
|
615
|
-
"path",
|
|
616
|
-
{
|
|
617
|
-
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",
|
|
618
|
-
key: "1fd625"
|
|
619
|
-
}
|
|
620
|
-
]
|
|
621
|
-
];
|
|
622
|
-
const OctagonAlert = createLucideIcon("octagon-alert", __iconNode$y);
|
|
623
|
-
const __iconNode$x = [
|
|
624
|
-
["path", { d: "m16 16 2 2 4-4", key: "gfu2re" }],
|
|
625
|
-
[
|
|
626
|
-
"path",
|
|
627
|
-
{
|
|
628
|
-
d: "M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",
|
|
629
|
-
key: "e7tb2h"
|
|
630
|
-
}
|
|
631
|
-
],
|
|
632
|
-
["path", { d: "m7.5 4.27 9 5.15", key: "1c824w" }],
|
|
633
|
-
["polyline", { points: "3.29 7 12 12 20.71 7", key: "ousv84" }],
|
|
634
|
-
["line", { x1: "12", x2: "12", y1: "22", y2: "12", key: "a4e8g8" }]
|
|
635
|
-
];
|
|
636
|
-
const PackageCheck = createLucideIcon("package-check", __iconNode$x);
|
|
637
|
-
const __iconNode$w = [
|
|
638
|
-
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
|
|
639
|
-
["path", { d: "M15 3v18", key: "14nvp0" }],
|
|
640
|
-
["path", { d: "m8 9 3 3-3 3", key: "12hl5m" }]
|
|
641
|
-
];
|
|
642
|
-
const PanelRightClose = createLucideIcon("panel-right-close", __iconNode$w);
|
|
643
|
-
const __iconNode$v = [
|
|
644
|
-
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
|
|
645
|
-
["path", { d: "M15 3v18", key: "14nvp0" }],
|
|
646
|
-
["path", { d: "m10 15-3-3 3-3", key: "1pgupc" }]
|
|
647
|
-
];
|
|
648
|
-
const PanelRightOpen = createLucideIcon("panel-right-open", __iconNode$v);
|
|
649
|
-
const __iconNode$u = [
|
|
650
|
-
["rect", { x: "14", y: "3", width: "5", height: "18", rx: "1", key: "kaeet6" }],
|
|
651
|
-
["rect", { x: "5", y: "3", width: "5", height: "18", rx: "1", key: "1wsw3u" }]
|
|
652
|
-
];
|
|
653
|
-
const Pause = createLucideIcon("pause", __iconNode$u);
|
|
654
|
-
const __iconNode$t = [
|
|
655
|
-
[
|
|
656
|
-
"path",
|
|
657
|
-
{
|
|
658
|
-
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",
|
|
659
|
-
key: "1a8usu"
|
|
660
|
-
}
|
|
661
|
-
],
|
|
662
|
-
["path", { d: "m15 5 4 4", key: "1mk7zo" }]
|
|
663
|
-
];
|
|
664
|
-
const Pencil = createLucideIcon("pencil", __iconNode$t);
|
|
665
|
-
const __iconNode$s = [
|
|
666
|
-
[
|
|
667
|
-
"path",
|
|
668
|
-
{
|
|
669
|
-
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",
|
|
670
|
-
key: "10ikf1"
|
|
671
|
-
}
|
|
672
|
-
]
|
|
673
|
-
];
|
|
674
|
-
const Play = createLucideIcon("play", __iconNode$s);
|
|
675
|
-
const __iconNode$r = [
|
|
676
|
-
["path", { d: "M5 12h14", key: "1ays0h" }],
|
|
677
|
-
["path", { d: "M12 5v14", key: "s699le" }]
|
|
678
|
-
];
|
|
679
|
-
const Plus = createLucideIcon("plus", __iconNode$r);
|
|
680
|
-
const __iconNode$q = [
|
|
681
|
-
["path", { d: "M16.247 7.761a6 6 0 0 1 0 8.478", key: "1fwjs5" }],
|
|
682
|
-
["path", { d: "M19.075 4.933a10 10 0 0 1 0 14.134", key: "ehdyv1" }],
|
|
683
|
-
["path", { d: "M4.925 19.067a10 10 0 0 1 0-14.134", key: "1q22gi" }],
|
|
684
|
-
["path", { d: "M7.753 16.239a6 6 0 0 1 0-8.478", key: "r2q7qm" }],
|
|
685
|
-
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }]
|
|
686
|
-
];
|
|
687
|
-
const Radio = createLucideIcon("radio", __iconNode$q);
|
|
688
|
-
const __iconNode$p = [
|
|
689
|
-
["path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8", key: "v9h5vc" }],
|
|
690
|
-
["path", { d: "M21 3v5h-5", key: "1q7to0" }],
|
|
691
|
-
["path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16", key: "3uifl3" }],
|
|
692
|
-
["path", { d: "M8 16H3v5", key: "1cv678" }]
|
|
693
|
-
];
|
|
694
|
-
const RefreshCw = createLucideIcon("refresh-cw", __iconNode$p);
|
|
695
|
-
const __iconNode$o = [
|
|
696
|
-
[
|
|
697
|
-
"path",
|
|
698
|
-
{
|
|
699
|
-
d: "M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z",
|
|
700
|
-
key: "m3kijz"
|
|
701
|
-
}
|
|
702
|
-
],
|
|
703
|
-
[
|
|
704
|
-
"path",
|
|
705
|
-
{
|
|
706
|
-
d: "m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z",
|
|
707
|
-
key: "1fmvmk"
|
|
708
|
-
}
|
|
709
|
-
],
|
|
710
|
-
["path", { d: "M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0", key: "1f8sc4" }],
|
|
711
|
-
["path", { d: "M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5", key: "qeys4" }]
|
|
712
|
-
];
|
|
713
|
-
const Rocket = createLucideIcon("rocket", __iconNode$o);
|
|
714
|
-
const __iconNode$n = [
|
|
715
|
-
["path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8", key: "1357e3" }],
|
|
716
|
-
["path", { d: "M3 3v5h5", key: "1xhq8a" }]
|
|
717
|
-
];
|
|
718
|
-
const RotateCcw = createLucideIcon("rotate-ccw", __iconNode$n);
|
|
719
|
-
const __iconNode$m = [
|
|
720
|
-
["path", { d: "M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8", key: "1p45f6" }],
|
|
721
|
-
["path", { d: "M21 3v5h-5", key: "1q7to0" }]
|
|
722
|
-
];
|
|
723
|
-
const RotateCw = createLucideIcon("rotate-cw", __iconNode$m);
|
|
724
|
-
const __iconNode$l = [
|
|
725
|
-
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
|
|
726
|
-
["path", { d: "M21 9H3", key: "1338ky" }],
|
|
727
|
-
["path", { d: "M21 15H3", key: "9uk58r" }]
|
|
728
|
-
];
|
|
729
|
-
const Rows3 = createLucideIcon("rows-3", __iconNode$l);
|
|
730
|
-
const __iconNode$k = [
|
|
731
|
-
[
|
|
732
|
-
"path",
|
|
733
|
-
{
|
|
734
|
-
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",
|
|
735
|
-
key: "1c8476"
|
|
736
|
-
}
|
|
737
|
-
],
|
|
738
|
-
["path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7", key: "1ydtos" }],
|
|
739
|
-
["path", { d: "M7 3v4a1 1 0 0 0 1 1h7", key: "t51u73" }]
|
|
740
|
-
];
|
|
741
|
-
const Save = createLucideIcon("save", __iconNode$k);
|
|
742
|
-
const __iconNode$j = [
|
|
743
|
-
["path", { d: "M3 7V5a2 2 0 0 1 2-2h2", key: "aa7l1z" }],
|
|
744
|
-
["path", { d: "M17 3h2a2 2 0 0 1 2 2v2", key: "4qcy5o" }],
|
|
745
|
-
["path", { d: "M21 17v2a2 2 0 0 1-2 2h-2", key: "6vwrx8" }],
|
|
746
|
-
["path", { d: "M7 21H5a2 2 0 0 1-2-2v-2", key: "ioqczr" }]
|
|
747
|
-
];
|
|
748
|
-
const Scan = createLucideIcon("scan", __iconNode$j);
|
|
749
|
-
const __iconNode$i = [
|
|
750
|
-
["path", { d: "m21 21-4.34-4.34", key: "14j7rj" }],
|
|
751
|
-
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }]
|
|
752
|
-
];
|
|
753
|
-
const Search = createLucideIcon("search", __iconNode$i);
|
|
754
|
-
const __iconNode$h = [
|
|
755
|
-
[
|
|
756
|
-
"path",
|
|
757
|
-
{
|
|
758
|
-
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",
|
|
759
|
-
key: "1ffxy3"
|
|
760
|
-
}
|
|
761
|
-
],
|
|
762
|
-
["path", { d: "m21.854 2.147-10.94 10.939", key: "12cjpa" }]
|
|
763
|
-
];
|
|
764
|
-
const Send = createLucideIcon("send", __iconNode$h);
|
|
765
|
-
const __iconNode$g = [
|
|
766
|
-
["rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2", key: "ngkwjq" }],
|
|
767
|
-
["rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2", key: "iecqi9" }],
|
|
768
|
-
["line", { x1: "6", x2: "6.01", y1: "6", y2: "6", key: "16zg32" }],
|
|
769
|
-
["line", { x1: "6", x2: "6.01", y1: "18", y2: "18", key: "nzw8ys" }]
|
|
770
|
-
];
|
|
771
|
-
const Server = createLucideIcon("server", __iconNode$g);
|
|
772
|
-
const __iconNode$f = [
|
|
773
|
-
[
|
|
774
|
-
"path",
|
|
775
|
-
{
|
|
776
|
-
d: "M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915",
|
|
777
|
-
key: "1i5ecw"
|
|
778
|
-
}
|
|
779
|
-
],
|
|
780
|
-
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }]
|
|
781
|
-
];
|
|
782
|
-
const Settings = createLucideIcon("settings", __iconNode$f);
|
|
783
|
-
const __iconNode$e = [
|
|
784
|
-
[
|
|
785
|
-
"path",
|
|
786
|
-
{
|
|
787
|
-
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",
|
|
788
|
-
key: "oel41y"
|
|
789
|
-
}
|
|
790
|
-
],
|
|
791
|
-
["path", { d: "M12 8v4", key: "1got3b" }],
|
|
792
|
-
["path", { d: "M12 16h.01", key: "1drbdi" }]
|
|
793
|
-
];
|
|
794
|
-
const ShieldAlert = createLucideIcon("shield-alert", __iconNode$e);
|
|
795
|
-
const __iconNode$d = [
|
|
796
|
-
[
|
|
797
|
-
"path",
|
|
798
|
-
{
|
|
799
|
-
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",
|
|
800
|
-
key: "oel41y"
|
|
801
|
-
}
|
|
802
|
-
],
|
|
803
|
-
["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }]
|
|
804
|
-
];
|
|
805
|
-
const ShieldCheck = createLucideIcon("shield-check", __iconNode$d);
|
|
806
|
-
const __iconNode$c = [
|
|
807
|
-
["path", { d: "M7 18v-6a5 5 0 1 1 10 0v6", key: "pcx96s" }],
|
|
808
|
-
[
|
|
809
|
-
"path",
|
|
810
|
-
{ d: "M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z", key: "1b4s83" }
|
|
811
|
-
],
|
|
812
|
-
["path", { d: "M21 12h1", key: "jtio3y" }],
|
|
813
|
-
["path", { d: "M18.5 4.5 18 5", key: "g5sp9y" }],
|
|
814
|
-
["path", { d: "M2 12h1", key: "1uaihz" }],
|
|
815
|
-
["path", { d: "M12 2v1", key: "11qlp1" }],
|
|
816
|
-
["path", { d: "m4.929 4.929.707.707", key: "1i51kw" }],
|
|
817
|
-
["path", { d: "M12 12v6", key: "3ahymv" }]
|
|
818
|
-
];
|
|
819
|
-
const Siren = createLucideIcon("siren", __iconNode$c);
|
|
820
|
-
const __iconNode$b = [
|
|
821
|
-
[
|
|
822
|
-
"path",
|
|
823
|
-
{
|
|
824
|
-
d: "M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z",
|
|
825
|
-
key: "1s2grr"
|
|
826
|
-
}
|
|
827
|
-
],
|
|
828
|
-
["path", { d: "M20 2v4", key: "1rf3ol" }],
|
|
829
|
-
["path", { d: "M22 4h-4", key: "gwowj6" }],
|
|
830
|
-
["circle", { cx: "4", cy: "20", r: "2", key: "6kqj1y" }]
|
|
831
|
-
];
|
|
832
|
-
const Sparkles = createLucideIcon("sparkles", __iconNode$b);
|
|
833
|
-
const __iconNode$a = [
|
|
834
|
-
["circle", { cx: "12", cy: "12", r: "4", key: "4exip2" }],
|
|
835
|
-
["path", { d: "M12 2v2", key: "tus03m" }],
|
|
836
|
-
["path", { d: "M12 20v2", key: "1lh1kg" }],
|
|
837
|
-
["path", { d: "m4.93 4.93 1.41 1.41", key: "149t6j" }],
|
|
838
|
-
["path", { d: "m17.66 17.66 1.41 1.41", key: "ptbguv" }],
|
|
839
|
-
["path", { d: "M2 12h2", key: "1t8f8n" }],
|
|
840
|
-
["path", { d: "M20 12h2", key: "1q8mjw" }],
|
|
841
|
-
["path", { d: "m6.34 17.66-1.41 1.41", key: "1m8zz5" }],
|
|
842
|
-
["path", { d: "m19.07 4.93-1.41 1.41", key: "1shlcs" }]
|
|
843
|
-
];
|
|
844
|
-
const Sun = createLucideIcon("sun", __iconNode$a);
|
|
845
|
-
const __iconNode$9 = [
|
|
846
|
-
["path", { d: "M12 19h8", key: "baeox8" }],
|
|
847
|
-
["path", { d: "m4 17 6-6-6-6", key: "1yngyt" }]
|
|
848
|
-
];
|
|
849
|
-
const Terminal = createLucideIcon("terminal", __iconNode$9);
|
|
850
|
-
const __iconNode$8 = [
|
|
851
|
-
["line", { x1: "10", x2: "14", y1: "2", y2: "2", key: "14vaq8" }],
|
|
852
|
-
["line", { x1: "12", x2: "15", y1: "14", y2: "11", key: "17fdiu" }],
|
|
853
|
-
["circle", { cx: "12", cy: "14", r: "8", key: "1e1u0o" }]
|
|
854
|
-
];
|
|
855
|
-
const Timer = createLucideIcon("timer", __iconNode$8);
|
|
856
|
-
const __iconNode$7 = [
|
|
857
|
-
["path", { d: "M10 11v6", key: "nco0om" }],
|
|
858
|
-
["path", { d: "M14 11v6", key: "outv1u" }],
|
|
859
|
-
["path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6", key: "miytrc" }],
|
|
860
|
-
["path", { d: "M3 6h18", key: "d0wm0j" }],
|
|
861
|
-
["path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2", key: "e791ji" }]
|
|
862
|
-
];
|
|
863
|
-
const Trash2 = createLucideIcon("trash-2", __iconNode$7);
|
|
864
|
-
const __iconNode$6 = [
|
|
865
|
-
[
|
|
866
|
-
"path",
|
|
867
|
-
{
|
|
868
|
-
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",
|
|
869
|
-
key: "wmoenq"
|
|
870
|
-
}
|
|
871
|
-
],
|
|
872
|
-
["path", { d: "M12 9v4", key: "juzpu7" }],
|
|
873
|
-
["path", { d: "M12 17h.01", key: "p32p05" }]
|
|
874
|
-
];
|
|
875
|
-
const TriangleAlert = createLucideIcon("triangle-alert", __iconNode$6);
|
|
876
|
-
const __iconNode$5 = [
|
|
877
|
-
["path", { d: "M12 3v12", key: "1x0j5s" }],
|
|
878
|
-
["path", { d: "m17 8-5-5-5 5", key: "7q97r8" }],
|
|
879
|
-
["path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4", key: "ih7n3h" }]
|
|
880
|
-
];
|
|
881
|
-
const Upload = createLucideIcon("upload", __iconNode$5);
|
|
882
|
-
const __iconNode$4 = [
|
|
883
|
-
["path", { d: "M12 20h.01", key: "zekei9" }],
|
|
884
|
-
["path", { d: "M8.5 16.429a5 5 0 0 1 7 0", key: "1bycff" }],
|
|
885
|
-
["path", { d: "M5 12.859a10 10 0 0 1 5.17-2.69", key: "1dl1wf" }],
|
|
886
|
-
["path", { d: "M19 12.859a10 10 0 0 0-2.007-1.523", key: "4k23kn" }],
|
|
887
|
-
["path", { d: "M2 8.82a15 15 0 0 1 4.177-2.643", key: "1grhjp" }],
|
|
888
|
-
["path", { d: "M22 8.82a15 15 0 0 0-11.288-3.764", key: "z3jwby" }],
|
|
889
|
-
["path", { d: "m2 2 20 20", key: "1ooewy" }]
|
|
890
|
-
];
|
|
891
|
-
const WifiOff = createLucideIcon("wifi-off", __iconNode$4);
|
|
892
|
-
const __iconNode$3 = [
|
|
893
|
-
["path", { d: "M12 20h.01", key: "zekei9" }],
|
|
894
|
-
["path", { d: "M2 8.82a15 15 0 0 1 20 0", key: "dnpr2z" }],
|
|
895
|
-
["path", { d: "M5 12.859a10 10 0 0 1 14 0", key: "1x1e6c" }],
|
|
896
|
-
["path", { d: "M8.5 16.429a5 5 0 0 1 7 0", key: "1bycff" }]
|
|
897
|
-
];
|
|
898
|
-
const Wifi = createLucideIcon("wifi", __iconNode$3);
|
|
899
|
-
const __iconNode$2 = [
|
|
900
|
-
[
|
|
901
|
-
"path",
|
|
902
|
-
{
|
|
903
|
-
d: "M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z",
|
|
904
|
-
key: "1ngwbx"
|
|
905
|
-
}
|
|
906
|
-
]
|
|
907
|
-
];
|
|
908
|
-
const Wrench = createLucideIcon("wrench", __iconNode$2);
|
|
909
|
-
const __iconNode$1 = [
|
|
910
|
-
["path", { d: "M18 6 6 18", key: "1bl5f8" }],
|
|
911
|
-
["path", { d: "m6 6 12 12", key: "d8bk6v" }]
|
|
912
|
-
];
|
|
913
|
-
const X = createLucideIcon("x", __iconNode$1);
|
|
914
|
-
const __iconNode = [
|
|
915
|
-
[
|
|
916
|
-
"path",
|
|
917
|
-
{
|
|
918
|
-
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",
|
|
919
|
-
key: "1xq2db"
|
|
920
|
-
}
|
|
921
|
-
]
|
|
922
|
-
];
|
|
923
|
-
const Zap = createLucideIcon("zap", __iconNode);
|
|
924
|
-
export {
|
|
925
|
-
Clock as $,
|
|
926
|
-
ALargeSmall as A,
|
|
927
|
-
Beaker as B,
|
|
928
|
-
CircleCheck as C,
|
|
929
|
-
Download as D,
|
|
930
|
-
Eye as E,
|
|
931
|
-
FileBraces as F,
|
|
932
|
-
Gauge as G,
|
|
933
|
-
Maximize2 as H,
|
|
934
|
-
Info as I,
|
|
935
|
-
Scan as J,
|
|
936
|
-
Plus as K,
|
|
937
|
-
LoaderCircle as L,
|
|
938
|
-
Moon as M,
|
|
939
|
-
Network as N,
|
|
940
|
-
CircleAlert as O,
|
|
941
|
-
PanelRightOpen as P,
|
|
942
|
-
Rocket as Q,
|
|
943
|
-
RefreshCw as R,
|
|
944
|
-
Settings as S,
|
|
945
|
-
TriangleAlert as T,
|
|
946
|
-
Upload as U,
|
|
947
|
-
PackageCheck as V,
|
|
948
|
-
History as W,
|
|
949
|
-
X,
|
|
950
|
-
Monitor as Y,
|
|
951
|
-
EyeOff as Z,
|
|
952
|
-
ExternalLink as _,
|
|
953
|
-
PanelRightClose as a,
|
|
954
|
-
RotateCw as a0,
|
|
955
|
-
CircleCheckBig as a1,
|
|
956
|
-
Pencil as a2,
|
|
957
|
-
Bell as a3,
|
|
958
|
-
Clock3 as a4,
|
|
959
|
-
ShieldAlert as a5,
|
|
960
|
-
ArrowUpRight as a6,
|
|
961
|
-
ArrowDownRight as a7,
|
|
962
|
-
CodeXml as a8,
|
|
963
|
-
Cpu as a9,
|
|
964
|
-
ArrowDown as aA,
|
|
965
|
-
Ellipsis as aB,
|
|
966
|
-
Blocks as aC,
|
|
967
|
-
MousePointerClick as aD,
|
|
968
|
-
FileText as aE,
|
|
969
|
-
Rows3 as aF,
|
|
970
|
-
Columns2 as aG,
|
|
971
|
-
Equal as aH,
|
|
972
|
-
Heart as aI,
|
|
973
|
-
Pause as aJ,
|
|
974
|
-
Play as aK,
|
|
975
|
-
Braces as aL,
|
|
976
|
-
FolderOpen as aa,
|
|
977
|
-
MessageSquare as ab,
|
|
978
|
-
Zap as ac,
|
|
979
|
-
Wrench as ad,
|
|
980
|
-
Brain as ae,
|
|
981
|
-
Minus as af,
|
|
982
|
-
CircleQuestionMark as ag,
|
|
983
|
-
Server as ah,
|
|
984
|
-
Lock as ai,
|
|
985
|
-
Wifi as aj,
|
|
986
|
-
WifiOff as ak,
|
|
987
|
-
CircleX as al,
|
|
988
|
-
ShieldCheck as am,
|
|
989
|
-
Save as an,
|
|
990
|
-
FileSearch as ao,
|
|
991
|
-
CloudUpload as ap,
|
|
992
|
-
OctagonAlert as aq,
|
|
993
|
-
Radio as ar,
|
|
994
|
-
Globe as as,
|
|
995
|
-
FileTerminal as at,
|
|
996
|
-
ChevronsUp as au,
|
|
997
|
-
ChevronsDown as av,
|
|
998
|
-
FileDiff as aw,
|
|
999
|
-
Search as ax,
|
|
1000
|
-
GitCompareArrows as ay,
|
|
1001
|
-
ArrowUp as az,
|
|
1002
|
-
Trash2 as b,
|
|
1003
|
-
ChevronDown as c,
|
|
1004
|
-
Check as d,
|
|
1005
|
-
Siren as e,
|
|
1006
|
-
Sun as f,
|
|
1007
|
-
Layers as g,
|
|
1008
|
-
FlaskConical as h,
|
|
1009
|
-
Sparkles as i,
|
|
1010
|
-
Activity as j,
|
|
1011
|
-
Copy as k,
|
|
1012
|
-
Terminal as l,
|
|
1013
|
-
ArrowLeft as m,
|
|
1014
|
-
ChevronUp as n,
|
|
1015
|
-
BrainCircuit as o,
|
|
1016
|
-
RotateCcw as p,
|
|
1017
|
-
Send as q,
|
|
1018
|
-
ChevronsLeft as r,
|
|
1019
|
-
ChevronLeft as s,
|
|
1020
|
-
ChevronRight as t,
|
|
1021
|
-
ChevronsRight as u,
|
|
1022
|
-
CircleStop as v,
|
|
1023
|
-
Clapperboard as w,
|
|
1024
|
-
Flag as x,
|
|
1025
|
-
Timer as y,
|
|
1026
|
-
Minimize2 as z
|
|
1027
|
-
};
|