@harbinger-ai/harbinger 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (317) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +406 -0
  3. package/agents/README.md +76 -0
  4. package/agents/_template/CONFIG.yaml +7 -0
  5. package/agents/_template/HEARTBEAT.md +59 -0
  6. package/agents/_template/IDENTITY.md +4 -0
  7. package/agents/_template/SKILLS.md +1 -0
  8. package/agents/_template/SOUL.md +25 -0
  9. package/agents/_template/TOOLS.md +3 -0
  10. package/agents/binary-reverser/CONFIG.yaml +21 -0
  11. package/agents/binary-reverser/HEARTBEAT.md +65 -0
  12. package/agents/binary-reverser/IDENTITY.md +1 -0
  13. package/agents/binary-reverser/SKILLS.md +1 -0
  14. package/agents/binary-reverser/SOUL.md +23 -0
  15. package/agents/binary-reverser/TOOLS.md +99 -0
  16. package/agents/browser-agent/CONFIG.yaml +20 -0
  17. package/agents/browser-agent/HEARTBEAT.md +79 -0
  18. package/agents/browser-agent/IDENTITY.md +5 -0
  19. package/agents/browser-agent/SKILLS.md +86 -0
  20. package/agents/browser-agent/SOUL.md +23 -0
  21. package/agents/browser-agent/TOOLS.md +186 -0
  22. package/agents/cloud-infiltrator/CONFIG.yaml +22 -0
  23. package/agents/cloud-infiltrator/HEARTBEAT.md +78 -0
  24. package/agents/cloud-infiltrator/IDENTITY.md +1 -0
  25. package/agents/cloud-infiltrator/SKILLS.md +1 -0
  26. package/agents/cloud-infiltrator/SOUL.md +23 -0
  27. package/agents/cloud-infiltrator/TOOLS.md +68 -0
  28. package/agents/coding-assistant/CONFIG.yaml +22 -0
  29. package/agents/coding-assistant/HEARTBEAT.md +57 -0
  30. package/agents/coding-assistant/IDENTITY.md +5 -0
  31. package/agents/coding-assistant/SKILLS.md +69 -0
  32. package/agents/coding-assistant/SOUL.md +60 -0
  33. package/agents/coding-assistant/TOOLS.md +168 -0
  34. package/agents/learning-agent/CONFIG.yaml +21 -0
  35. package/agents/learning-agent/HEARTBEAT.md +63 -0
  36. package/agents/learning-agent/IDENTITY.md +5 -0
  37. package/agents/learning-agent/SKILLS.md +86 -0
  38. package/agents/learning-agent/SOUL.md +77 -0
  39. package/agents/learning-agent/TOOLS.md +145 -0
  40. package/agents/maintainer/CONFIG.yaml +31 -0
  41. package/agents/maintainer/HEARTBEAT.md +28 -0
  42. package/agents/maintainer/IDENTITY.md +33 -0
  43. package/agents/maintainer/SKILLS.md +24 -0
  44. package/agents/maintainer/SOUL.md +61 -0
  45. package/agents/maintainer/TOOLS.md +29 -0
  46. package/agents/maintainer/lib/engine.js +279 -0
  47. package/agents/maintainer/lib/safe-fixer.js +183 -0
  48. package/agents/morning-brief/CONFIG.yaml +22 -0
  49. package/agents/morning-brief/HEARTBEAT.md +60 -0
  50. package/agents/morning-brief/IDENTITY.md +5 -0
  51. package/agents/morning-brief/SKILLS.md +56 -0
  52. package/agents/morning-brief/SOUL.md +64 -0
  53. package/agents/morning-brief/TOOLS.md +112 -0
  54. package/agents/osint-detective/CONFIG.yaml +24 -0
  55. package/agents/osint-detective/HEARTBEAT.md +66 -0
  56. package/agents/osint-detective/IDENTITY.md +1 -0
  57. package/agents/osint-detective/SKILLS.md +1 -0
  58. package/agents/osint-detective/SOUL.md +23 -0
  59. package/agents/osint-detective/TOOLS.md +81 -0
  60. package/agents/recon-scout/CONFIG.yaml +22 -0
  61. package/agents/recon-scout/HEARTBEAT.md +79 -0
  62. package/agents/recon-scout/IDENTITY.md +1 -0
  63. package/agents/recon-scout/SKILLS.md +1 -0
  64. package/agents/recon-scout/SOUL.md +23 -0
  65. package/agents/recon-scout/TOOLS.md +93 -0
  66. package/agents/report-writer/CONFIG.yaml +21 -0
  67. package/agents/report-writer/HEARTBEAT.md +63 -0
  68. package/agents/report-writer/IDENTITY.md +1 -0
  69. package/agents/report-writer/SKILLS.md +1 -0
  70. package/agents/report-writer/SOUL.md +23 -0
  71. package/agents/report-writer/TOOLS.md +69 -0
  72. package/agents/shared/README.md +13 -0
  73. package/agents/web-hacker/CONFIG.yaml +24 -0
  74. package/agents/web-hacker/HEARTBEAT.md +78 -0
  75. package/agents/web-hacker/IDENTITY.md +1 -0
  76. package/agents/web-hacker/SKILLS.md +1 -0
  77. package/agents/web-hacker/SOUL.md +23 -0
  78. package/agents/web-hacker/TOOLS.md +86 -0
  79. package/api/CLAUDE.md +19 -0
  80. package/api/index.js +274 -0
  81. package/bin/cli.js +620 -0
  82. package/bin/local.sh +31 -0
  83. package/bin/postinstall.js +63 -0
  84. package/config/index.js +24 -0
  85. package/config/instrumentation.js +93 -0
  86. package/drizzle/0000_initial.sql +52 -0
  87. package/drizzle/0001_bounty_and_registry.sql +82 -0
  88. package/drizzle/0002_sync_columns.sql +7 -0
  89. package/drizzle/0003_graceful_bloodscream.sql +86 -0
  90. package/drizzle/meta/0000_snapshot.json +321 -0
  91. package/drizzle/meta/0003_snapshot.json +878 -0
  92. package/drizzle/meta/_journal.json +34 -0
  93. package/drizzle/relations.ts +3 -0
  94. package/drizzle/schema.ts +145 -0
  95. package/lib/actions.js +47 -0
  96. package/lib/agents.js +166 -0
  97. package/lib/ai/agent.js +96 -0
  98. package/lib/ai/autonomous-engine.js +261 -0
  99. package/lib/ai/index.js +359 -0
  100. package/lib/ai/model-router.js +254 -0
  101. package/lib/ai/model.js +73 -0
  102. package/lib/ai/tools.js +84 -0
  103. package/lib/auth/actions.js +28 -0
  104. package/lib/auth/config.js +27 -0
  105. package/lib/auth/edge-config.js +27 -0
  106. package/lib/auth/index.js +27 -0
  107. package/lib/auth/middleware.js +53 -0
  108. package/lib/bounty/actions.js +119 -0
  109. package/lib/bounty/findings.js +64 -0
  110. package/lib/bounty/programs.js +34 -0
  111. package/lib/bounty/sync-targets.js +267 -0
  112. package/lib/bounty/targets.js +33 -0
  113. package/lib/channels/base.js +56 -0
  114. package/lib/channels/index.js +15 -0
  115. package/lib/channels/telegram.js +148 -0
  116. package/lib/chat/actions.js +288 -0
  117. package/lib/chat/api.js +135 -0
  118. package/lib/chat/components/app-sidebar.js +237 -0
  119. package/lib/chat/components/app-sidebar.jsx +289 -0
  120. package/lib/chat/components/chat-header.js +27 -0
  121. package/lib/chat/components/chat-header.jsx +37 -0
  122. package/lib/chat/components/chat-input.js +230 -0
  123. package/lib/chat/components/chat-input.jsx +228 -0
  124. package/lib/chat/components/chat-nav-context.js +11 -0
  125. package/lib/chat/components/chat-nav-context.jsx +11 -0
  126. package/lib/chat/components/chat-page.js +81 -0
  127. package/lib/chat/components/chat-page.jsx +100 -0
  128. package/lib/chat/components/chat.js +150 -0
  129. package/lib/chat/components/chat.jsx +182 -0
  130. package/lib/chat/components/chats-page.js +302 -0
  131. package/lib/chat/components/chats-page.jsx +330 -0
  132. package/lib/chat/components/crons-page.js +172 -0
  133. package/lib/chat/components/crons-page.jsx +244 -0
  134. package/lib/chat/components/enhanced-tool-call.js +103 -0
  135. package/lib/chat/components/enhanced-tool-call.jsx +139 -0
  136. package/lib/chat/components/findings-page.js +175 -0
  137. package/lib/chat/components/findings-page.jsx +214 -0
  138. package/lib/chat/components/greeting.js +22 -0
  139. package/lib/chat/components/greeting.jsx +26 -0
  140. package/lib/chat/components/icons.js +777 -0
  141. package/lib/chat/components/icons.jsx +741 -0
  142. package/lib/chat/components/index.js +26 -0
  143. package/lib/chat/components/mcp-page.js +260 -0
  144. package/lib/chat/components/mcp-page.jsx +355 -0
  145. package/lib/chat/components/message.js +289 -0
  146. package/lib/chat/components/message.jsx +315 -0
  147. package/lib/chat/components/messages.js +66 -0
  148. package/lib/chat/components/messages.jsx +77 -0
  149. package/lib/chat/components/notifications-page.js +56 -0
  150. package/lib/chat/components/notifications-page.jsx +87 -0
  151. package/lib/chat/components/page-layout.js +21 -0
  152. package/lib/chat/components/page-layout.jsx +28 -0
  153. package/lib/chat/components/registry-page.js +222 -0
  154. package/lib/chat/components/registry-page.jsx +255 -0
  155. package/lib/chat/components/settings-layout.js +40 -0
  156. package/lib/chat/components/settings-layout.jsx +54 -0
  157. package/lib/chat/components/settings-secrets-page.js +216 -0
  158. package/lib/chat/components/settings-secrets-page.jsx +264 -0
  159. package/lib/chat/components/sidebar-history-item.js +132 -0
  160. package/lib/chat/components/sidebar-history-item.jsx +113 -0
  161. package/lib/chat/components/sidebar-history.js +115 -0
  162. package/lib/chat/components/sidebar-history.jsx +157 -0
  163. package/lib/chat/components/sidebar-user-nav.js +63 -0
  164. package/lib/chat/components/sidebar-user-nav.jsx +73 -0
  165. package/lib/chat/components/status-bar.js +39 -0
  166. package/lib/chat/components/status-bar.jsx +51 -0
  167. package/lib/chat/components/swarm-page.js +157 -0
  168. package/lib/chat/components/swarm-page.jsx +210 -0
  169. package/lib/chat/components/targets-page.js +376 -0
  170. package/lib/chat/components/targets-page.jsx +389 -0
  171. package/lib/chat/components/tool-call.js +86 -0
  172. package/lib/chat/components/tool-call.jsx +104 -0
  173. package/lib/chat/components/tool-panel.js +107 -0
  174. package/lib/chat/components/tool-panel.jsx +145 -0
  175. package/lib/chat/components/triggers-page.js +153 -0
  176. package/lib/chat/components/triggers-page.jsx +221 -0
  177. package/lib/chat/components/ui/confirm-dialog.js +53 -0
  178. package/lib/chat/components/ui/confirm-dialog.jsx +57 -0
  179. package/lib/chat/components/ui/dropdown-menu.js +98 -0
  180. package/lib/chat/components/ui/dropdown-menu.jsx +116 -0
  181. package/lib/chat/components/ui/rename-dialog.js +74 -0
  182. package/lib/chat/components/ui/rename-dialog.jsx +72 -0
  183. package/lib/chat/components/ui/scroll-area.js +13 -0
  184. package/lib/chat/components/ui/scroll-area.jsx +17 -0
  185. package/lib/chat/components/ui/separator.js +21 -0
  186. package/lib/chat/components/ui/separator.jsx +18 -0
  187. package/lib/chat/components/ui/sheet.js +75 -0
  188. package/lib/chat/components/ui/sheet.jsx +95 -0
  189. package/lib/chat/components/ui/sidebar.js +227 -0
  190. package/lib/chat/components/ui/sidebar.jsx +245 -0
  191. package/lib/chat/components/ui/tooltip.js +56 -0
  192. package/lib/chat/components/ui/tooltip.jsx +66 -0
  193. package/lib/chat/components/upgrade-dialog.js +151 -0
  194. package/lib/chat/components/upgrade-dialog.jsx +170 -0
  195. package/lib/chat/utils.js +11 -0
  196. package/lib/cron.js +246 -0
  197. package/lib/db/api-keys.js +163 -0
  198. package/lib/db/chats.js +145 -0
  199. package/lib/db/index.js +52 -0
  200. package/lib/db/notifications.js +99 -0
  201. package/lib/db/schema.js +145 -0
  202. package/lib/db/update-check.js +96 -0
  203. package/lib/db/users.js +89 -0
  204. package/lib/mcp/actions.js +104 -0
  205. package/lib/mcp/client.js +79 -0
  206. package/lib/mcp/handler.js +57 -0
  207. package/lib/mcp/server.js +165 -0
  208. package/lib/paths.js +46 -0
  209. package/lib/registry/actions.js +164 -0
  210. package/lib/registry/catalog.js +137 -0
  211. package/lib/registry/tools.js +71 -0
  212. package/lib/tools/create-job.js +99 -0
  213. package/lib/tools/github.js +217 -0
  214. package/lib/tools/openai.js +35 -0
  215. package/lib/tools/telegram.js +292 -0
  216. package/lib/triggers.js +118 -0
  217. package/lib/utils/render-md.js +102 -0
  218. package/package.json +103 -0
  219. package/setup/lib/auth.mjs +81 -0
  220. package/setup/lib/env.mjs +21 -0
  221. package/setup/lib/fs-utils.mjs +20 -0
  222. package/setup/lib/github.mjs +149 -0
  223. package/setup/lib/prerequisites.mjs +155 -0
  224. package/setup/lib/prompts.mjs +267 -0
  225. package/setup/lib/providers.mjs +48 -0
  226. package/setup/lib/sync.mjs +125 -0
  227. package/setup/lib/targets.mjs +45 -0
  228. package/setup/lib/telegram-verify.mjs +63 -0
  229. package/setup/lib/telegram.mjs +76 -0
  230. package/setup/setup-telegram.mjs +264 -0
  231. package/setup/setup.mjs +842 -0
  232. package/templates/.dockerignore +5 -0
  233. package/templates/.env.example +63 -0
  234. package/templates/.github/workflows/auto-merge.yml +117 -0
  235. package/templates/.github/workflows/build-image.yml +36 -0
  236. package/templates/.github/workflows/notify-job-failed.yml +64 -0
  237. package/templates/.github/workflows/notify-pr-complete.yml +119 -0
  238. package/templates/.github/workflows/rebuild-event-handler.yml +121 -0
  239. package/templates/.github/workflows/run-job.yml +89 -0
  240. package/templates/.github/workflows/upgrade-event-handler.yml +62 -0
  241. package/templates/.gitignore.template +45 -0
  242. package/templates/.pi/extensions/env-sanitizer/index.ts +48 -0
  243. package/templates/.pi/extensions/env-sanitizer/package.json +5 -0
  244. package/templates/CLAUDE.md +29 -0
  245. package/templates/CLAUDE.md.template +307 -0
  246. package/templates/app/api/[...thepopebot]/route.js +1 -0
  247. package/templates/app/api/auth/[...nextauth]/route.js +1 -0
  248. package/templates/app/chat/[chatId]/page.js +8 -0
  249. package/templates/app/chats/page.js +7 -0
  250. package/templates/app/components/ascii-logo.jsx +10 -0
  251. package/templates/app/components/login-form.jsx +92 -0
  252. package/templates/app/components/setup-form.jsx +82 -0
  253. package/templates/app/components/theme-provider.jsx +11 -0
  254. package/templates/app/components/theme-toggle.jsx +38 -0
  255. package/templates/app/components/ui/button.jsx +21 -0
  256. package/templates/app/components/ui/card.jsx +23 -0
  257. package/templates/app/components/ui/input.jsx +10 -0
  258. package/templates/app/components/ui/label.jsx +10 -0
  259. package/templates/app/crons/page.js +5 -0
  260. package/templates/app/findings/page.js +7 -0
  261. package/templates/app/globals.css +90 -0
  262. package/templates/app/layout.js +19 -0
  263. package/templates/app/login/page.js +15 -0
  264. package/templates/app/notifications/page.js +7 -0
  265. package/templates/app/page.js +7 -0
  266. package/templates/app/settings/crons/page.js +5 -0
  267. package/templates/app/settings/layout.js +7 -0
  268. package/templates/app/settings/mcp/page.js +5 -0
  269. package/templates/app/settings/page.js +5 -0
  270. package/templates/app/settings/secrets/page.js +5 -0
  271. package/templates/app/settings/triggers/page.js +5 -0
  272. package/templates/app/stream/chat/route.js +1 -0
  273. package/templates/app/swarm/page.js +7 -0
  274. package/templates/app/targets/page.js +7 -0
  275. package/templates/app/toolbox/page.js +7 -0
  276. package/templates/app/triggers/page.js +5 -0
  277. package/templates/config/AGENT.md +34 -0
  278. package/templates/config/CRONS.json +56 -0
  279. package/templates/config/EVENT_HANDLER.md +224 -0
  280. package/templates/config/HEARTBEAT.md +3 -0
  281. package/templates/config/JOB_SUMMARY.md +130 -0
  282. package/templates/config/MCP_SERVERS.json +1 -0
  283. package/templates/config/SKILL_BUILDING_GUIDE.md +90 -0
  284. package/templates/config/SOUL.md +17 -0
  285. package/templates/config/TRIGGERS.json +58 -0
  286. package/templates/docker/event-handler/Dockerfile +20 -0
  287. package/templates/docker/event-handler/ecosystem.config.cjs +8 -0
  288. package/templates/docker/job-claude-code/Dockerfile +34 -0
  289. package/templates/docker/job-claude-code/entrypoint.sh +139 -0
  290. package/templates/docker/job-pi-coding-agent/Dockerfile +44 -0
  291. package/templates/docker/job-pi-coding-agent/entrypoint.sh +163 -0
  292. package/templates/docker-compose.yml +63 -0
  293. package/templates/instrumentation.js +6 -0
  294. package/templates/middleware.js +1 -0
  295. package/templates/next.config.mjs +3 -0
  296. package/templates/postcss.config.mjs +5 -0
  297. package/templates/skills/LICENSE +21 -0
  298. package/templates/skills/README.md +119 -0
  299. package/templates/skills/brave-search/SKILL.md +79 -0
  300. package/templates/skills/brave-search/content.js +86 -0
  301. package/templates/skills/brave-search/package-lock.json +621 -0
  302. package/templates/skills/brave-search/package.json +14 -0
  303. package/templates/skills/brave-search/search.js +199 -0
  304. package/templates/skills/browser-tools/SKILL.md +196 -0
  305. package/templates/skills/browser-tools/browser-content.js +103 -0
  306. package/templates/skills/browser-tools/browser-cookies.js +35 -0
  307. package/templates/skills/browser-tools/browser-eval.js +53 -0
  308. package/templates/skills/browser-tools/browser-hn-scraper.js +108 -0
  309. package/templates/skills/browser-tools/browser-nav.js +44 -0
  310. package/templates/skills/browser-tools/browser-pick.js +162 -0
  311. package/templates/skills/browser-tools/browser-screenshot.js +34 -0
  312. package/templates/skills/browser-tools/browser-start.js +87 -0
  313. package/templates/skills/browser-tools/package-lock.json +2556 -0
  314. package/templates/skills/browser-tools/package.json +19 -0
  315. package/templates/skills/llm-secrets/SKILL.md +34 -0
  316. package/templates/skills/llm-secrets/llm-secrets.js +33 -0
  317. package/templates/skills/modify-self/SKILL.md +12 -0
@@ -0,0 +1,777 @@
1
+ "use client";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ function PlusIcon({ size = 16 }) {
4
+ return /* @__PURE__ */ jsxs(
5
+ "svg",
6
+ {
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ viewBox: "0 0 24 24",
9
+ fill: "none",
10
+ stroke: "currentColor",
11
+ strokeWidth: 2,
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round",
14
+ width: size,
15
+ height: size,
16
+ children: [
17
+ /* @__PURE__ */ jsx("path", { d: "M5 12h14" }),
18
+ /* @__PURE__ */ jsx("path", { d: "M12 5v14" })
19
+ ]
20
+ }
21
+ );
22
+ }
23
+ function TrashIcon({ size = 16 }) {
24
+ return /* @__PURE__ */ jsxs(
25
+ "svg",
26
+ {
27
+ xmlns: "http://www.w3.org/2000/svg",
28
+ viewBox: "0 0 24 24",
29
+ fill: "none",
30
+ stroke: "currentColor",
31
+ strokeWidth: 2,
32
+ strokeLinecap: "round",
33
+ strokeLinejoin: "round",
34
+ width: size,
35
+ height: size,
36
+ children: [
37
+ /* @__PURE__ */ jsx("path", { d: "M3 6h18" }),
38
+ /* @__PURE__ */ jsx("path", { d: "M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6" }),
39
+ /* @__PURE__ */ jsx("path", { d: "M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2" })
40
+ ]
41
+ }
42
+ );
43
+ }
44
+ function SendIcon({ size = 16 }) {
45
+ return /* @__PURE__ */ jsxs(
46
+ "svg",
47
+ {
48
+ xmlns: "http://www.w3.org/2000/svg",
49
+ viewBox: "0 0 24 24",
50
+ fill: "none",
51
+ stroke: "currentColor",
52
+ strokeWidth: 2,
53
+ strokeLinecap: "round",
54
+ strokeLinejoin: "round",
55
+ width: size,
56
+ height: size,
57
+ children: [
58
+ /* @__PURE__ */ jsx("path", { d: "m5 12 7-7 7 7" }),
59
+ /* @__PURE__ */ jsx("path", { d: "M12 19V5" })
60
+ ]
61
+ }
62
+ );
63
+ }
64
+ function StopIcon({ size = 16 }) {
65
+ return /* @__PURE__ */ jsx(
66
+ "svg",
67
+ {
68
+ xmlns: "http://www.w3.org/2000/svg",
69
+ viewBox: "0 0 24 24",
70
+ fill: "currentColor",
71
+ width: size,
72
+ height: size,
73
+ children: /* @__PURE__ */ jsx("rect", { x: "6", y: "6", width: "12", height: "12", rx: "1" })
74
+ }
75
+ );
76
+ }
77
+ function MessageIcon({ size = 16 }) {
78
+ return /* @__PURE__ */ jsx(
79
+ "svg",
80
+ {
81
+ xmlns: "http://www.w3.org/2000/svg",
82
+ viewBox: "0 0 24 24",
83
+ fill: "none",
84
+ stroke: "currentColor",
85
+ strokeWidth: 2,
86
+ strokeLinecap: "round",
87
+ strokeLinejoin: "round",
88
+ width: size,
89
+ height: size,
90
+ children: /* @__PURE__ */ jsx("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
91
+ }
92
+ );
93
+ }
94
+ function SquarePenIcon({ size = 16 }) {
95
+ return /* @__PURE__ */ jsxs(
96
+ "svg",
97
+ {
98
+ xmlns: "http://www.w3.org/2000/svg",
99
+ viewBox: "0 0 24 24",
100
+ fill: "none",
101
+ stroke: "currentColor",
102
+ strokeWidth: 2,
103
+ strokeLinecap: "round",
104
+ strokeLinejoin: "round",
105
+ width: size,
106
+ height: size,
107
+ children: [
108
+ /* @__PURE__ */ jsx("path", { d: "M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" }),
109
+ /* @__PURE__ */ jsx("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" })
110
+ ]
111
+ }
112
+ );
113
+ }
114
+ function PanelLeftIcon({ size = 16 }) {
115
+ return /* @__PURE__ */ jsxs(
116
+ "svg",
117
+ {
118
+ xmlns: "http://www.w3.org/2000/svg",
119
+ viewBox: "0 0 24 24",
120
+ fill: "none",
121
+ stroke: "currentColor",
122
+ strokeWidth: 2,
123
+ strokeLinecap: "round",
124
+ strokeLinejoin: "round",
125
+ width: size,
126
+ height: size,
127
+ children: [
128
+ /* @__PURE__ */ jsx("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
129
+ /* @__PURE__ */ jsx("path", { d: "M9 3v18" })
130
+ ]
131
+ }
132
+ );
133
+ }
134
+ function SearchIcon({ size = 16 }) {
135
+ return /* @__PURE__ */ jsxs(
136
+ "svg",
137
+ {
138
+ xmlns: "http://www.w3.org/2000/svg",
139
+ viewBox: "0 0 24 24",
140
+ fill: "none",
141
+ stroke: "currentColor",
142
+ strokeWidth: 2,
143
+ strokeLinecap: "round",
144
+ strokeLinejoin: "round",
145
+ width: size,
146
+ height: size,
147
+ children: [
148
+ /* @__PURE__ */ jsx("circle", { cx: "11", cy: "11", r: "8" }),
149
+ /* @__PURE__ */ jsx("path", { d: "m21 21-4.35-4.35" })
150
+ ]
151
+ }
152
+ );
153
+ }
154
+ function BellIcon({ size = 16 }) {
155
+ return /* @__PURE__ */ jsxs(
156
+ "svg",
157
+ {
158
+ xmlns: "http://www.w3.org/2000/svg",
159
+ viewBox: "0 0 24 24",
160
+ fill: "none",
161
+ stroke: "currentColor",
162
+ strokeWidth: 2,
163
+ strokeLinecap: "round",
164
+ strokeLinejoin: "round",
165
+ width: size,
166
+ height: size,
167
+ children: [
168
+ /* @__PURE__ */ jsx("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
169
+ /* @__PURE__ */ jsx("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" })
170
+ ]
171
+ }
172
+ );
173
+ }
174
+ function SwarmIcon({ size = 16 }) {
175
+ return /* @__PURE__ */ jsxs(
176
+ "svg",
177
+ {
178
+ xmlns: "http://www.w3.org/2000/svg",
179
+ viewBox: "0 0 24 24",
180
+ fill: "none",
181
+ stroke: "currentColor",
182
+ strokeWidth: 2,
183
+ strokeLinecap: "round",
184
+ strokeLinejoin: "round",
185
+ width: size,
186
+ height: size,
187
+ children: [
188
+ /* @__PURE__ */ jsx("path", { d: "M9.5 2L12 4.5L9.5 7L5 7L2.5 4.5L5 2Z" }),
189
+ /* @__PURE__ */ jsx("path", { d: "M19 2L21.5 4.5L19 7L14.5 7L12 4.5L14.5 2Z" }),
190
+ /* @__PURE__ */ jsx("path", { d: "M14.25 7L16.75 9.5L14.25 12L9.75 12L7.25 9.5L9.75 7Z" })
191
+ ]
192
+ }
193
+ );
194
+ }
195
+ function PaperclipIcon({ size = 16 }) {
196
+ return /* @__PURE__ */ jsx(
197
+ "svg",
198
+ {
199
+ xmlns: "http://www.w3.org/2000/svg",
200
+ viewBox: "0 0 24 24",
201
+ fill: "none",
202
+ stroke: "currentColor",
203
+ strokeWidth: 2,
204
+ strokeLinecap: "round",
205
+ strokeLinejoin: "round",
206
+ width: size,
207
+ height: size,
208
+ children: /* @__PURE__ */ jsx("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" })
209
+ }
210
+ );
211
+ }
212
+ function XIcon({ size = 16, className = "" }) {
213
+ return /* @__PURE__ */ jsxs(
214
+ "svg",
215
+ {
216
+ xmlns: "http://www.w3.org/2000/svg",
217
+ viewBox: "0 0 24 24",
218
+ fill: "none",
219
+ stroke: "currentColor",
220
+ strokeWidth: 2,
221
+ strokeLinecap: "round",
222
+ strokeLinejoin: "round",
223
+ width: size,
224
+ height: size,
225
+ className,
226
+ children: [
227
+ /* @__PURE__ */ jsx("path", { d: "M18 6 6 18" }),
228
+ /* @__PURE__ */ jsx("path", { d: "m6 6 12 12" })
229
+ ]
230
+ }
231
+ );
232
+ }
233
+ function FileTextIcon({ size = 16 }) {
234
+ return /* @__PURE__ */ jsxs(
235
+ "svg",
236
+ {
237
+ xmlns: "http://www.w3.org/2000/svg",
238
+ viewBox: "0 0 24 24",
239
+ fill: "none",
240
+ stroke: "currentColor",
241
+ strokeWidth: 2,
242
+ strokeLinecap: "round",
243
+ strokeLinejoin: "round",
244
+ width: size,
245
+ height: size,
246
+ children: [
247
+ /* @__PURE__ */ jsx("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
248
+ /* @__PURE__ */ jsx("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
249
+ /* @__PURE__ */ jsx("path", { d: "M10 9H8" }),
250
+ /* @__PURE__ */ jsx("path", { d: "M16 13H8" }),
251
+ /* @__PURE__ */ jsx("path", { d: "M16 17H8" })
252
+ ]
253
+ }
254
+ );
255
+ }
256
+ function ClockIcon({ size = 16 }) {
257
+ return /* @__PURE__ */ jsxs(
258
+ "svg",
259
+ {
260
+ xmlns: "http://www.w3.org/2000/svg",
261
+ viewBox: "0 0 24 24",
262
+ fill: "none",
263
+ stroke: "currentColor",
264
+ strokeWidth: 2,
265
+ strokeLinecap: "round",
266
+ strokeLinejoin: "round",
267
+ width: size,
268
+ height: size,
269
+ children: [
270
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
271
+ /* @__PURE__ */ jsx("polyline", { points: "12 6 12 12 16 14" })
272
+ ]
273
+ }
274
+ );
275
+ }
276
+ function ZapIcon({ size = 16 }) {
277
+ return /* @__PURE__ */ jsx(
278
+ "svg",
279
+ {
280
+ xmlns: "http://www.w3.org/2000/svg",
281
+ viewBox: "0 0 24 24",
282
+ fill: "none",
283
+ stroke: "currentColor",
284
+ strokeWidth: 2,
285
+ strokeLinecap: "round",
286
+ strokeLinejoin: "round",
287
+ width: size,
288
+ height: size,
289
+ children: /* @__PURE__ */ jsx("path", { d: "M13 2 3 14h9l-1 10 10-12h-9l1-10z" })
290
+ }
291
+ );
292
+ }
293
+ function RefreshIcon({ size = 16 }) {
294
+ return /* @__PURE__ */ jsxs(
295
+ "svg",
296
+ {
297
+ xmlns: "http://www.w3.org/2000/svg",
298
+ viewBox: "0 0 24 24",
299
+ fill: "none",
300
+ stroke: "currentColor",
301
+ strokeWidth: 2,
302
+ strokeLinecap: "round",
303
+ strokeLinejoin: "round",
304
+ width: size,
305
+ height: size,
306
+ children: [
307
+ /* @__PURE__ */ jsx("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
308
+ /* @__PURE__ */ jsx("path", { d: "M21 3v5h-5" }),
309
+ /* @__PURE__ */ jsx("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
310
+ /* @__PURE__ */ jsx("path", { d: "M8 16H3v5" })
311
+ ]
312
+ }
313
+ );
314
+ }
315
+ function ChevronDownIcon({ size = 16, className = "" }) {
316
+ return /* @__PURE__ */ jsx(
317
+ "svg",
318
+ {
319
+ xmlns: "http://www.w3.org/2000/svg",
320
+ viewBox: "0 0 24 24",
321
+ fill: "none",
322
+ stroke: "currentColor",
323
+ strokeWidth: 2,
324
+ strokeLinecap: "round",
325
+ strokeLinejoin: "round",
326
+ width: size,
327
+ height: size,
328
+ className,
329
+ children: /* @__PURE__ */ jsx("path", { d: "m6 9 6 6 6-6" })
330
+ }
331
+ );
332
+ }
333
+ function SettingsIcon({ size = 16 }) {
334
+ return /* @__PURE__ */ jsxs(
335
+ "svg",
336
+ {
337
+ xmlns: "http://www.w3.org/2000/svg",
338
+ viewBox: "0 0 24 24",
339
+ fill: "none",
340
+ stroke: "currentColor",
341
+ strokeWidth: 2,
342
+ strokeLinecap: "round",
343
+ strokeLinejoin: "round",
344
+ width: size,
345
+ height: size,
346
+ children: [
347
+ /* @__PURE__ */ jsx("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" }),
348
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "3" })
349
+ ]
350
+ }
351
+ );
352
+ }
353
+ function KeyIcon({ size = 16 }) {
354
+ return /* @__PURE__ */ jsxs(
355
+ "svg",
356
+ {
357
+ xmlns: "http://www.w3.org/2000/svg",
358
+ viewBox: "0 0 24 24",
359
+ fill: "none",
360
+ stroke: "currentColor",
361
+ strokeWidth: 2,
362
+ strokeLinecap: "round",
363
+ strokeLinejoin: "round",
364
+ width: size,
365
+ height: size,
366
+ children: [
367
+ /* @__PURE__ */ jsx("path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4" }),
368
+ /* @__PURE__ */ jsx("path", { d: "m21 2-9.6 9.6" }),
369
+ /* @__PURE__ */ jsx("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
370
+ ]
371
+ }
372
+ );
373
+ }
374
+ function CopyIcon({ size = 16 }) {
375
+ return /* @__PURE__ */ jsxs(
376
+ "svg",
377
+ {
378
+ xmlns: "http://www.w3.org/2000/svg",
379
+ viewBox: "0 0 24 24",
380
+ fill: "none",
381
+ stroke: "currentColor",
382
+ strokeWidth: 2,
383
+ strokeLinecap: "round",
384
+ strokeLinejoin: "round",
385
+ width: size,
386
+ height: size,
387
+ children: [
388
+ /* @__PURE__ */ jsx("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
389
+ /* @__PURE__ */ jsx("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
390
+ ]
391
+ }
392
+ );
393
+ }
394
+ function CheckIcon({ size = 16, className = "" }) {
395
+ return /* @__PURE__ */ jsx(
396
+ "svg",
397
+ {
398
+ xmlns: "http://www.w3.org/2000/svg",
399
+ viewBox: "0 0 24 24",
400
+ fill: "none",
401
+ stroke: "currentColor",
402
+ strokeWidth: 2,
403
+ strokeLinecap: "round",
404
+ strokeLinejoin: "round",
405
+ width: size,
406
+ height: size,
407
+ className,
408
+ children: /* @__PURE__ */ jsx("path", { d: "M20 6 9 17l-5-5" })
409
+ }
410
+ );
411
+ }
412
+ function SpinnerIcon({ size = 16, className = "" }) {
413
+ return /* @__PURE__ */ jsx(
414
+ "svg",
415
+ {
416
+ xmlns: "http://www.w3.org/2000/svg",
417
+ viewBox: "0 0 24 24",
418
+ fill: "none",
419
+ stroke: "currentColor",
420
+ strokeWidth: 2,
421
+ strokeLinecap: "round",
422
+ strokeLinejoin: "round",
423
+ width: size,
424
+ height: size,
425
+ className: `animate-spin ${className}`,
426
+ children: /* @__PURE__ */ jsx("path", { d: "M21 12a9 9 0 1 1-6.219-8.56" })
427
+ }
428
+ );
429
+ }
430
+ function SunIcon({ size = 16 }) {
431
+ return /* @__PURE__ */ jsxs(
432
+ "svg",
433
+ {
434
+ xmlns: "http://www.w3.org/2000/svg",
435
+ viewBox: "0 0 24 24",
436
+ fill: "none",
437
+ stroke: "currentColor",
438
+ strokeWidth: 2,
439
+ strokeLinecap: "round",
440
+ strokeLinejoin: "round",
441
+ width: size,
442
+ height: size,
443
+ children: [
444
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "4" }),
445
+ /* @__PURE__ */ jsx("path", { d: "M12 2v2" }),
446
+ /* @__PURE__ */ jsx("path", { d: "M12 20v2" }),
447
+ /* @__PURE__ */ jsx("path", { d: "m4.93 4.93 1.41 1.41" }),
448
+ /* @__PURE__ */ jsx("path", { d: "m17.66 17.66 1.41 1.41" }),
449
+ /* @__PURE__ */ jsx("path", { d: "M2 12h2" }),
450
+ /* @__PURE__ */ jsx("path", { d: "M20 12h2" }),
451
+ /* @__PURE__ */ jsx("path", { d: "m6.34 17.66-1.41 1.41" }),
452
+ /* @__PURE__ */ jsx("path", { d: "m19.07 4.93-1.41 1.41" })
453
+ ]
454
+ }
455
+ );
456
+ }
457
+ function MoonIcon({ size = 16 }) {
458
+ return /* @__PURE__ */ jsx(
459
+ "svg",
460
+ {
461
+ xmlns: "http://www.w3.org/2000/svg",
462
+ viewBox: "0 0 24 24",
463
+ fill: "none",
464
+ stroke: "currentColor",
465
+ strokeWidth: 2,
466
+ strokeLinecap: "round",
467
+ strokeLinejoin: "round",
468
+ width: size,
469
+ height: size,
470
+ children: /* @__PURE__ */ jsx("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
471
+ }
472
+ );
473
+ }
474
+ function StarIcon({ size = 16 }) {
475
+ return /* @__PURE__ */ jsx(
476
+ "svg",
477
+ {
478
+ xmlns: "http://www.w3.org/2000/svg",
479
+ viewBox: "0 0 24 24",
480
+ fill: "none",
481
+ stroke: "currentColor",
482
+ strokeWidth: 2,
483
+ strokeLinecap: "round",
484
+ strokeLinejoin: "round",
485
+ width: size,
486
+ height: size,
487
+ children: /* @__PURE__ */ jsx("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" })
488
+ }
489
+ );
490
+ }
491
+ function StarFilledIcon({ size = 16 }) {
492
+ return /* @__PURE__ */ jsx(
493
+ "svg",
494
+ {
495
+ xmlns: "http://www.w3.org/2000/svg",
496
+ viewBox: "0 0 24 24",
497
+ fill: "currentColor",
498
+ stroke: "currentColor",
499
+ strokeWidth: 2,
500
+ strokeLinecap: "round",
501
+ strokeLinejoin: "round",
502
+ width: size,
503
+ height: size,
504
+ children: /* @__PURE__ */ jsx("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" })
505
+ }
506
+ );
507
+ }
508
+ function MoreHorizontalIcon({ size = 16 }) {
509
+ return /* @__PURE__ */ jsxs(
510
+ "svg",
511
+ {
512
+ xmlns: "http://www.w3.org/2000/svg",
513
+ viewBox: "0 0 24 24",
514
+ fill: "none",
515
+ stroke: "currentColor",
516
+ strokeWidth: 2,
517
+ strokeLinecap: "round",
518
+ strokeLinejoin: "round",
519
+ width: size,
520
+ height: size,
521
+ children: [
522
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "1.5" }),
523
+ /* @__PURE__ */ jsx("circle", { cx: "19", cy: "12", r: "1.5" }),
524
+ /* @__PURE__ */ jsx("circle", { cx: "5", cy: "12", r: "1.5" })
525
+ ]
526
+ }
527
+ );
528
+ }
529
+ function PencilIcon({ size = 16 }) {
530
+ return /* @__PURE__ */ jsx(
531
+ "svg",
532
+ {
533
+ xmlns: "http://www.w3.org/2000/svg",
534
+ viewBox: "0 0 24 24",
535
+ fill: "none",
536
+ stroke: "currentColor",
537
+ strokeWidth: 2,
538
+ strokeLinecap: "round",
539
+ strokeLinejoin: "round",
540
+ width: size,
541
+ height: size,
542
+ children: /* @__PURE__ */ jsx("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" })
543
+ }
544
+ );
545
+ }
546
+ function CirclePlusIcon({ size = 16 }) {
547
+ return /* @__PURE__ */ jsxs(
548
+ "svg",
549
+ {
550
+ xmlns: "http://www.w3.org/2000/svg",
551
+ viewBox: "0 0 24 24",
552
+ fill: "none",
553
+ stroke: "currentColor",
554
+ strokeWidth: 2,
555
+ strokeLinecap: "round",
556
+ strokeLinejoin: "round",
557
+ width: size,
558
+ height: size,
559
+ children: [
560
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
561
+ /* @__PURE__ */ jsx("path", { d: "M8 12h8" }),
562
+ /* @__PURE__ */ jsx("path", { d: "M12 8v8" })
563
+ ]
564
+ }
565
+ );
566
+ }
567
+ function ArrowUpCircleIcon({ size = 16 }) {
568
+ return /* @__PURE__ */ jsxs(
569
+ "svg",
570
+ {
571
+ xmlns: "http://www.w3.org/2000/svg",
572
+ viewBox: "0 0 24 24",
573
+ fill: "none",
574
+ stroke: "currentColor",
575
+ strokeWidth: 2,
576
+ strokeLinecap: "round",
577
+ strokeLinejoin: "round",
578
+ width: size,
579
+ height: size,
580
+ children: [
581
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
582
+ /* @__PURE__ */ jsx("path", { d: "m16 12-4-4-4 4" }),
583
+ /* @__PURE__ */ jsx("path", { d: "M12 16V8" })
584
+ ]
585
+ }
586
+ );
587
+ }
588
+ function BugIcon({ size = 16 }) {
589
+ return /* @__PURE__ */ jsxs(
590
+ "svg",
591
+ {
592
+ xmlns: "http://www.w3.org/2000/svg",
593
+ viewBox: "0 0 24 24",
594
+ fill: "none",
595
+ stroke: "currentColor",
596
+ strokeWidth: 2,
597
+ strokeLinecap: "round",
598
+ strokeLinejoin: "round",
599
+ width: size,
600
+ height: size,
601
+ children: [
602
+ /* @__PURE__ */ jsx("path", { d: "m8 2 1.88 1.88" }),
603
+ /* @__PURE__ */ jsx("path", { d: "M14.12 3.88 16 2" }),
604
+ /* @__PURE__ */ jsx("path", { d: "M9 7.13v-1a3.003 3.003 0 1 1 6 0v1" }),
605
+ /* @__PURE__ */ jsx("path", { d: "M12 20c-3.3 0-6-2.7-6-6v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v3c0 3.3-2.7 6-6 6" }),
606
+ /* @__PURE__ */ jsx("path", { d: "M12 20v-9" }),
607
+ /* @__PURE__ */ jsx("path", { d: "M6.53 9C4.6 8.8 3 7.1 3 5" }),
608
+ /* @__PURE__ */ jsx("path", { d: "M6 13H2" }),
609
+ /* @__PURE__ */ jsx("path", { d: "M3 21c0-2.1 1.7-3.9 3.8-4" }),
610
+ /* @__PURE__ */ jsx("path", { d: "M20.97 5c0 2.1-1.6 3.8-3.5 4" }),
611
+ /* @__PURE__ */ jsx("path", { d: "M22 13h-4" }),
612
+ /* @__PURE__ */ jsx("path", { d: "M17.2 17c2.1.1 3.8 1.9 3.8 4" })
613
+ ]
614
+ }
615
+ );
616
+ }
617
+ function LifeBuoyIcon({ size = 16 }) {
618
+ return /* @__PURE__ */ jsxs(
619
+ "svg",
620
+ {
621
+ xmlns: "http://www.w3.org/2000/svg",
622
+ viewBox: "0 0 24 24",
623
+ fill: "none",
624
+ stroke: "currentColor",
625
+ strokeWidth: 2,
626
+ strokeLinecap: "round",
627
+ strokeLinejoin: "round",
628
+ width: size,
629
+ height: size,
630
+ children: [
631
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
632
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "4" }),
633
+ /* @__PURE__ */ jsx("line", { x1: "4.93", x2: "9.17", y1: "4.93", y2: "9.17" }),
634
+ /* @__PURE__ */ jsx("line", { x1: "14.83", x2: "19.07", y1: "14.83", y2: "19.07" }),
635
+ /* @__PURE__ */ jsx("line", { x1: "14.83", x2: "19.07", y1: "9.17", y2: "4.93" }),
636
+ /* @__PURE__ */ jsx("line", { x1: "4.93", x2: "9.17", y1: "19.07", y2: "14.83" })
637
+ ]
638
+ }
639
+ );
640
+ }
641
+ function WrenchIcon({ size = 16, className = "" }) {
642
+ return /* @__PURE__ */ jsx(
643
+ "svg",
644
+ {
645
+ xmlns: "http://www.w3.org/2000/svg",
646
+ viewBox: "0 0 24 24",
647
+ fill: "none",
648
+ stroke: "currentColor",
649
+ strokeWidth: 2,
650
+ strokeLinecap: "round",
651
+ strokeLinejoin: "round",
652
+ width: size,
653
+ height: size,
654
+ className,
655
+ children: /* @__PURE__ */ jsx("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" })
656
+ }
657
+ );
658
+ }
659
+ function CrosshairIcon({ size = 16 }) {
660
+ return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", width: size, height: size, children: [
661
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
662
+ /* @__PURE__ */ jsx("line", { x1: "22", x2: "18", y1: "12", y2: "12" }),
663
+ /* @__PURE__ */ jsx("line", { x1: "6", x2: "2", y1: "12", y2: "12" }),
664
+ /* @__PURE__ */ jsx("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
665
+ /* @__PURE__ */ jsx("line", { x1: "12", x2: "12", y1: "18", y2: "22" })
666
+ ] });
667
+ }
668
+ function ShieldIcon({ size = 16 }) {
669
+ return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", width: size, height: size, children: /* @__PURE__ */ jsx("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" }) });
670
+ }
671
+ function PackageIcon({ size = 16 }) {
672
+ return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", width: size, height: size, children: [
673
+ /* @__PURE__ */ jsx("path", { d: "M16.5 9.4 7.55 4.24" }),
674
+ /* @__PURE__ */ jsx("path", { d: "M21 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.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z" }),
675
+ /* @__PURE__ */ jsx("polyline", { points: "3.29 7 12 12 20.71 7" }),
676
+ /* @__PURE__ */ jsx("line", { x1: "12", x2: "12", y1: "22", y2: "12" })
677
+ ] });
678
+ }
679
+ function DownloadIcon({ size = 16 }) {
680
+ return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", width: size, height: size, children: [
681
+ /* @__PURE__ */ jsx("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
682
+ /* @__PURE__ */ jsx("polyline", { points: "7 10 12 15 17 10" }),
683
+ /* @__PURE__ */ jsx("line", { x1: "12", x2: "12", y1: "15", y2: "3" })
684
+ ] });
685
+ }
686
+ function GlobeIcon({ size = 16 }) {
687
+ return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", width: size, height: size, children: [
688
+ /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
689
+ /* @__PURE__ */ jsx("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
690
+ /* @__PURE__ */ jsx("path", { d: "M2 12h20" })
691
+ ] });
692
+ }
693
+ function PlugIcon({ size = 16 }) {
694
+ return /* @__PURE__ */ jsxs(
695
+ "svg",
696
+ {
697
+ xmlns: "http://www.w3.org/2000/svg",
698
+ viewBox: "0 0 24 24",
699
+ fill: "none",
700
+ stroke: "currentColor",
701
+ strokeWidth: 2,
702
+ strokeLinecap: "round",
703
+ strokeLinejoin: "round",
704
+ width: size,
705
+ height: size,
706
+ children: [
707
+ /* @__PURE__ */ jsx("path", { d: "M12 22v-5" }),
708
+ /* @__PURE__ */ jsx("path", { d: "M9 8V2" }),
709
+ /* @__PURE__ */ jsx("path", { d: "M15 8V2" }),
710
+ /* @__PURE__ */ jsx("path", { d: "M18 8v5a6 6 0 0 1-6 6a6 6 0 0 1-6-6V8Z" })
711
+ ]
712
+ }
713
+ );
714
+ }
715
+ function LogOutIcon({ size = 16 }) {
716
+ return /* @__PURE__ */ jsxs(
717
+ "svg",
718
+ {
719
+ xmlns: "http://www.w3.org/2000/svg",
720
+ viewBox: "0 0 24 24",
721
+ fill: "none",
722
+ stroke: "currentColor",
723
+ strokeWidth: 2,
724
+ strokeLinecap: "round",
725
+ strokeLinejoin: "round",
726
+ width: size,
727
+ height: size,
728
+ children: [
729
+ /* @__PURE__ */ jsx("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
730
+ /* @__PURE__ */ jsx("polyline", { points: "16 17 21 12 16 7" }),
731
+ /* @__PURE__ */ jsx("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
732
+ ]
733
+ }
734
+ );
735
+ }
736
+ export {
737
+ ArrowUpCircleIcon,
738
+ BellIcon,
739
+ BugIcon,
740
+ CheckIcon,
741
+ ChevronDownIcon,
742
+ CirclePlusIcon,
743
+ ClockIcon,
744
+ CopyIcon,
745
+ CrosshairIcon,
746
+ DownloadIcon,
747
+ FileTextIcon,
748
+ GlobeIcon,
749
+ KeyIcon,
750
+ LifeBuoyIcon,
751
+ LogOutIcon,
752
+ MessageIcon,
753
+ MoonIcon,
754
+ MoreHorizontalIcon,
755
+ PackageIcon,
756
+ PanelLeftIcon,
757
+ PaperclipIcon,
758
+ PencilIcon,
759
+ PlugIcon,
760
+ PlusIcon,
761
+ RefreshIcon,
762
+ SearchIcon,
763
+ SendIcon,
764
+ SettingsIcon,
765
+ ShieldIcon,
766
+ SpinnerIcon,
767
+ SquarePenIcon,
768
+ StarFilledIcon,
769
+ StarIcon,
770
+ StopIcon,
771
+ SunIcon,
772
+ SwarmIcon,
773
+ TrashIcon,
774
+ WrenchIcon,
775
+ XIcon,
776
+ ZapIcon
777
+ };