@speakeasy-api/moonshine 1.33.4 → 2.0.0-alpha.2

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 (330) hide show
  1. package/README.md +26 -10
  2. package/package.json +12 -23
  3. package/scripts/generate-utility-docs.js +324 -0
  4. package/src/assets/icons/external/github.svg +3 -0
  5. package/src/assets/icons/external/maven.svg +152 -0
  6. package/src/assets/icons/external/npm.svg +4 -0
  7. package/src/assets/icons/external/nuget.svg +5 -0
  8. package/src/assets/icons/external/packagist.svg +1 -0
  9. package/src/assets/icons/external/pypi.svg +182 -0
  10. package/src/assets/icons/external/rubygems.svg +14 -0
  11. package/src/assets/icons/external/terraform.svg +1 -0
  12. package/src/assets/icons/languages/csharp.svg +1 -0
  13. package/src/assets/icons/languages/go.svg +1 -0
  14. package/src/assets/icons/languages/java.svg +1 -0
  15. package/src/assets/icons/languages/json.svg +2 -0
  16. package/src/assets/icons/languages/php.svg +1 -0
  17. package/src/assets/icons/languages/postman.svg +3 -0
  18. package/src/assets/icons/languages/python.svg +1 -0
  19. package/src/assets/icons/languages/ruby.svg +1 -0
  20. package/src/assets/icons/languages/swift.svg +1 -0
  21. package/src/assets/icons/languages/terraform.svg +1 -0
  22. package/src/assets/icons/languages/typescript.svg +1 -0
  23. package/src/assets/icons/languages/unity.svg +1 -0
  24. package/src/components/AIChat/AIChatContainer.tsx +71 -0
  25. package/src/components/AIChat/AIChatMessage.tsx +135 -0
  26. package/src/components/AIChat/AIChatMessageComposer.tsx +175 -0
  27. package/src/components/AIChat/AIChatMessageList.tsx +34 -0
  28. package/src/components/AIChat/AIChatModelSelector.tsx +159 -0
  29. package/src/components/AIChat/componentsTypes.ts +36 -0
  30. package/src/components/AIChat/context.ts +15 -0
  31. package/src/components/AIChat/index.ts +12 -0
  32. package/src/components/AIChat/parts/AIChatMessageFilePart.tsx +129 -0
  33. package/src/components/AIChat/parts/AIChatMessageReasoningPart.tsx +23 -0
  34. package/src/components/AIChat/parts/AIChatMessageSourcePart.tsx +58 -0
  35. package/src/components/AIChat/parts/AIChatMessageTextPart.tsx +33 -0
  36. package/src/components/AIChat/parts/AIChatMessageToolInvocationPart.tsx +53 -0
  37. package/src/components/AIChat/parts/AIChatMessageToolPart.tsx +395 -0
  38. package/src/components/AIChat/parts/AIChatMessageToolResultPart.tsx +46 -0
  39. package/src/components/AIChat/toolCallApproval.ts +61 -0
  40. package/src/components/AIChat/types.ts +97 -0
  41. package/src/components/ActionBar/index.tsx +184 -0
  42. package/src/components/Alert/index.tsx +118 -0
  43. package/src/components/Alert/types.ts +12 -0
  44. package/src/components/AppLayout/context.tsx +31 -0
  45. package/src/components/AppLayout/index.tsx +550 -0
  46. package/src/components/AppLayout/provider.tsx +40 -0
  47. package/src/components/AppLayout/useAppLayoutKeys.ts +26 -0
  48. package/src/components/Badge/index.tsx +227 -0
  49. package/src/components/Button/index.tsx +531 -0
  50. package/src/components/Card/index.tsx +193 -0
  51. package/src/components/CodeEditorLayout/index.tsx +394 -0
  52. package/src/components/CodeEditorLayout/styles.module.css +8 -0
  53. package/src/components/CodeHighlight/Pre.tsx +63 -0
  54. package/src/components/CodePlayground/index.tsx +411 -0
  55. package/src/components/CodeSnippet/codeSnippet.css +97 -0
  56. package/src/components/CodeSnippet/index.tsx +224 -0
  57. package/src/components/Combobox/index.tsx +193 -0
  58. package/src/components/Command/index.tsx +152 -0
  59. package/src/components/Container/index.tsx +31 -0
  60. package/src/components/ContextDropdown/index.tsx +150 -0
  61. package/src/components/Dialog/index.tsx +123 -0
  62. package/src/components/DragNDrop/DragNDropArea.tsx +30 -0
  63. package/src/components/DragNDrop/DragOverlay.tsx +4 -0
  64. package/src/components/DragNDrop/Draggable.tsx +97 -0
  65. package/src/components/DragNDrop/Droppable.tsx +51 -0
  66. package/src/components/Dropdown/index.tsx +201 -0
  67. package/src/components/ExternalPill/index.tsx +58 -0
  68. package/src/components/Facepile/index.tsx +309 -0
  69. package/src/components/GradientCircle/gradientCircle.css +34 -0
  70. package/src/components/GradientCircle/index.tsx +143 -0
  71. package/src/components/Grid/index.tsx +150 -0
  72. package/src/components/Heading/index.tsx +54 -0
  73. package/src/components/HighlightedText/index.tsx +152 -0
  74. package/src/components/Icon/customIcons/createCustomLucideIcon.ts +25 -0
  75. package/src/components/Icon/customIcons/gems.ts +26 -0
  76. package/{dist/go-DsW1bFpz.mjs → src/components/Icon/customIcons/go.ts} +21 -19
  77. package/src/components/Icon/customIcons/index.ts +11 -0
  78. package/{dist/maven-Dub5liK1.mjs → src/components/Icon/customIcons/maven.ts} +17 -15
  79. package/src/components/Icon/customIcons/npm.ts +19 -0
  80. package/{dist/nuget-D86y5HDl.mjs → src/components/Icon/customIcons/nuget.ts} +17 -15
  81. package/src/components/Icon/customIcons/packagist.ts +124 -0
  82. package/{dist/pypi-2SUX-2OR.mjs → src/components/Icon/customIcons/pypi.ts} +16 -14
  83. package/src/components/Icon/index.tsx +83 -0
  84. package/src/components/Icon/isIconName.ts +10 -0
  85. package/src/components/Icon/names.ts +14 -0
  86. package/src/components/IconButton/index.tsx +51 -0
  87. package/src/components/Input/index.tsx +98 -0
  88. package/src/components/KeyHint/index.tsx +118 -0
  89. package/src/components/LanguageIndicator/index.tsx +68 -0
  90. package/src/components/Link/index.tsx +153 -0
  91. package/src/components/LoggedInUserMenu/index.tsx +116 -0
  92. package/src/components/Logo/Animated.tsx +191 -0
  93. package/src/components/Logo/index.tsx +17 -0
  94. package/src/components/Logo/speakeasy-logo.riv +0 -0
  95. package/src/components/Logo/svgs/index.tsx +126 -0
  96. package/src/components/Modal/index.tsx +104 -0
  97. package/src/components/PageHeader/index.tsx +227 -0
  98. package/src/components/PageHeader/styles.module.css +27 -0
  99. package/src/components/Popover/index.tsx +35 -0
  100. package/src/components/PromptInput/index.tsx +372 -0
  101. package/src/components/PullRequestLink/index.tsx +64 -0
  102. package/src/components/ResizablePanel/index.tsx +119 -0
  103. package/src/components/Score/index.module.css +32 -0
  104. package/src/components/Score/index.tsx +268 -0
  105. package/src/components/ScrollArea/index.tsx +48 -0
  106. package/src/components/SegmentedButton/index.module.css +19 -0
  107. package/src/components/SegmentedButton/index.tsx +101 -0
  108. package/src/components/Select/index.tsx +159 -0
  109. package/src/components/Separator/index.tsx +23 -0
  110. package/src/components/Skeleton/index.tsx +61 -0
  111. package/src/components/Skeleton/skeleton.css +52 -0
  112. package/src/components/Stack/index.tsx +137 -0
  113. package/src/components/Subnav/index.tsx +315 -0
  114. package/src/components/Switch/index.tsx +29 -0
  115. package/src/components/Table/context/context.tsx +19 -0
  116. package/src/components/Table/context/tableProvider.tsx +39 -0
  117. package/src/components/Table/index.tsx +707 -0
  118. package/src/components/Table/styles.module.css +25 -0
  119. package/src/components/Tabs/index.tsx +87 -0
  120. package/src/components/TargetLanguageIcon/index.tsx +84 -0
  121. package/src/components/Text/index.tsx +59 -0
  122. package/src/components/ThemeSwitcher/index.tsx +118 -0
  123. package/src/components/Timeline/index.tsx +290 -0
  124. package/src/components/Tooltip/index.tsx +41 -0
  125. package/src/components/UserAvatar/index.tsx +87 -0
  126. package/src/components/UserAvatar/sizeMap.ts +12 -0
  127. package/src/components/Wizard/index.tsx +208 -0
  128. package/src/components/Wizard/types.ts +17 -0
  129. package/src/components/WorkspaceSelector/CreateOrg.tsx +95 -0
  130. package/src/components/WorkspaceSelector/CreateWorkspace.tsx +196 -0
  131. package/src/components/WorkspaceSelector/OrgList.tsx +115 -0
  132. package/src/components/WorkspaceSelector/OrgSelector.tsx +207 -0
  133. package/src/components/WorkspaceSelector/RecentWorkspaces.tsx +83 -0
  134. package/src/components/WorkspaceSelector/ScrollingList.tsx +84 -0
  135. package/src/components/WorkspaceSelector/SearchBox.tsx +40 -0
  136. package/src/components/WorkspaceSelector/WorkspaceItem.tsx +37 -0
  137. package/src/components/WorkspaceSelector/WorkspaceList.tsx +107 -0
  138. package/src/components/WorkspaceSelector/index.tsx +400 -0
  139. package/src/components/WorkspaceSelector/styles.css +74 -0
  140. package/src/components/__beta__/CLIWizard/index.tsx +357 -0
  141. package/src/components/__beta__/CLIWizard/terminal-command.tsx +108 -0
  142. package/src/components/__beta__/CLIWizard/terminal.tsx +83 -0
  143. package/src/components/__beta__/README.md +3 -0
  144. package/src/components/index.mdx +38 -0
  145. package/src/context/ConfigContext.tsx +43 -0
  146. package/src/context/ModalContext.tsx +118 -0
  147. package/src/context/theme.ts +1 -0
  148. package/src/hooks/useAppLayout.ts +10 -0
  149. package/src/hooks/useConfig.ts +10 -0
  150. package/src/hooks/useIsMounted.ts +13 -0
  151. package/src/hooks/useModal.tsx +10 -0
  152. package/src/hooks/useTailwindBreakpoint.ts +47 -0
  153. package/src/hooks/useTheme.ts +13 -0
  154. package/src/index.ts +234 -0
  155. package/src/lib/assert.ts +9 -0
  156. package/src/lib/codeUtils.ts +177 -0
  157. package/src/lib/debounce.ts +9 -0
  158. package/src/lib/responsiveMappers.ts +69 -0
  159. package/src/lib/responsiveUtils.ts +23 -0
  160. package/src/lib/storybookUtils.tsx +26 -0
  161. package/src/lib/typeUtils.ts +109 -0
  162. package/src/lib/utils.ts +85 -0
  163. package/src/styles/codeSyntax.css +59 -0
  164. package/src/styles/globals.css +51 -0
  165. package/src/types.ts +200 -0
  166. package/src/vite-env.d.ts +6 -0
  167. package/types/utilities.d.ts +1 -1
  168. package/dist/components/AIChat/AIChatContainer.d.ts +0 -26
  169. package/dist/components/AIChat/AIChatMessage.d.ts +0 -19
  170. package/dist/components/AIChat/AIChatMessageComposer.d.ts +0 -22
  171. package/dist/components/AIChat/AIChatMessageList.d.ts +0 -6
  172. package/dist/components/AIChat/AIChatModelSelector.d.ts +0 -14
  173. package/dist/components/AIChat/componentsTypes.d.ts +0 -11
  174. package/dist/components/AIChat/context.d.ts +0 -3
  175. package/dist/components/AIChat/index.d.ts +0 -12
  176. package/dist/components/AIChat/parts/AIChatMessageFilePart.d.ts +0 -7
  177. package/dist/components/AIChat/parts/AIChatMessageReasoningPart.d.ts +0 -5
  178. package/dist/components/AIChat/parts/AIChatMessageSourcePart.d.ts +0 -9
  179. package/dist/components/AIChat/parts/AIChatMessageTextPart.d.ts +0 -5
  180. package/dist/components/AIChat/parts/AIChatMessageToolInvocationPart.d.ts +0 -6
  181. package/dist/components/AIChat/parts/AIChatMessageToolPart.d.ts +0 -33
  182. package/dist/components/AIChat/parts/AIChatMessageToolResultPart.d.ts +0 -5
  183. package/dist/components/AIChat/toolCallApproval.d.ts +0 -15
  184. package/dist/components/AIChat/types.d.ts +0 -79
  185. package/dist/components/ActionBar/index.d.ts +0 -36
  186. package/dist/components/Alert/index.d.ts +0 -18
  187. package/dist/components/Alert/types.d.ts +0 -4
  188. package/dist/components/AppLayout/context.d.ts +0 -16
  189. package/dist/components/AppLayout/index.d.ts +0 -131
  190. package/dist/components/AppLayout/provider.d.ts +0 -8
  191. package/dist/components/AppLayout/useAppLayoutKeys.d.ts +0 -1
  192. package/dist/components/Badge/index.d.ts +0 -21
  193. package/dist/components/Button/index.d.ts +0 -22
  194. package/dist/components/Card/index.d.ts +0 -47
  195. package/dist/components/CodeEditorLayout/index.d.ts +0 -101
  196. package/dist/components/CodeHighlight/Pre.d.ts +0 -8
  197. package/dist/components/CodePlayground/index.d.ts +0 -102
  198. package/dist/components/CodeSnippet/index.d.ts +0 -49
  199. package/dist/components/Combobox/index.d.ts +0 -35
  200. package/dist/components/Command/index.d.ts +0 -80
  201. package/dist/components/Container/index.d.ts +0 -9
  202. package/dist/components/ContextDropdown/index.d.ts +0 -7
  203. package/dist/components/Dialog/index.d.ts +0 -21
  204. package/dist/components/DragNDrop/DragNDropArea.d.ts +0 -8
  205. package/dist/components/DragNDrop/DragOverlay.d.ts +0 -1
  206. package/dist/components/DragNDrop/Draggable.d.ts +0 -29
  207. package/dist/components/DragNDrop/Droppable.d.ts +0 -28
  208. package/dist/components/Dropdown/index.d.ts +0 -27
  209. package/dist/components/ExternalPill/index.d.ts +0 -12
  210. package/dist/components/Facepile/index.d.ts +0 -16
  211. package/dist/components/GradientCircle/index.d.ts +0 -10
  212. package/dist/components/Grid/index.d.ts +0 -80
  213. package/dist/components/Heading/index.d.ts +0 -12
  214. package/dist/components/HighlightedText/index.d.ts +0 -19
  215. package/dist/components/Icon/customIcons/createCustomLucideIcon.d.ts +0 -3
  216. package/dist/components/Icon/customIcons/gems.d.ts +0 -2
  217. package/dist/components/Icon/customIcons/go.d.ts +0 -2
  218. package/dist/components/Icon/customIcons/index.d.ts +0 -10
  219. package/dist/components/Icon/customIcons/maven.d.ts +0 -2
  220. package/dist/components/Icon/customIcons/npm.d.ts +0 -2
  221. package/dist/components/Icon/customIcons/nuget.d.ts +0 -2
  222. package/dist/components/Icon/customIcons/packagist.d.ts +0 -2
  223. package/dist/components/Icon/customIcons/pypi.d.ts +0 -2
  224. package/dist/components/Icon/index.d.ts +0 -10
  225. package/dist/components/Icon/isIconName.d.ts +0 -2
  226. package/dist/components/Icon/names.d.ts +0 -6
  227. package/dist/components/IconButton/index.d.ts +0 -14
  228. package/dist/components/Input/index.d.ts +0 -8
  229. package/dist/components/KeyHint/index.d.ts +0 -16
  230. package/dist/components/LanguageIndicator/index.d.ts +0 -7
  231. package/dist/components/Link/index.d.ts +0 -15
  232. package/dist/components/LoggedInUserMenu/index.d.ts +0 -17
  233. package/dist/components/Logo/Animated.d.ts +0 -7
  234. package/dist/components/Logo/index.d.ts +0 -7
  235. package/dist/components/Logo/svgs/index.d.ts +0 -6
  236. package/dist/components/Modal/index.d.ts +0 -8
  237. package/dist/components/PageHeader/index.d.ts +0 -45
  238. package/dist/components/Popover/index.d.ts +0 -8
  239. package/dist/components/PromptInput/index.d.ts +0 -55
  240. package/dist/components/PullRequestLink/index.d.ts +0 -10
  241. package/dist/components/ResizablePanel/index.d.ts +0 -26
  242. package/dist/components/Score/index.d.ts +0 -37
  243. package/dist/components/ScrollArea/index.d.ts +0 -5
  244. package/dist/components/SegmentedButton/index.d.ts +0 -23
  245. package/dist/components/Select/index.d.ts +0 -13
  246. package/dist/components/Separator/index.d.ts +0 -6
  247. package/dist/components/Skeleton/index.d.ts +0 -27
  248. package/dist/components/Stack/index.d.ts +0 -33
  249. package/dist/components/Subnav/index.d.ts +0 -12
  250. package/dist/components/Switch/index.d.ts +0 -4
  251. package/dist/components/Table/context/context.d.ts +0 -8
  252. package/dist/components/Table/context/tableProvider.d.ts +0 -6
  253. package/dist/components/Table/index.d.ts +0 -94
  254. package/dist/components/Tabs/index.d.ts +0 -21
  255. package/dist/components/TargetLanguageIcon/index.d.ts +0 -7
  256. package/dist/components/Text/index.d.ts +0 -19
  257. package/dist/components/ThemeSwitcher/index.d.ts +0 -6
  258. package/dist/components/Timeline/index.d.ts +0 -49
  259. package/dist/components/Tooltip/index.d.ts +0 -9
  260. package/dist/components/UserAvatar/index.d.ts +0 -9
  261. package/dist/components/UserAvatar/sizeMap.d.ts +0 -3
  262. package/dist/components/Wizard/index.d.ts +0 -19
  263. package/dist/components/Wizard/types.d.ts +0 -15
  264. package/dist/components/WorkspaceSelector/CreateOrg.d.ts +0 -6
  265. package/dist/components/WorkspaceSelector/CreateWorkspace.d.ts +0 -17
  266. package/dist/components/WorkspaceSelector/OrgList.d.ts +0 -12
  267. package/dist/components/WorkspaceSelector/OrgSelector.d.ts +0 -13
  268. package/dist/components/WorkspaceSelector/RecentWorkspaces.d.ts +0 -11
  269. package/dist/components/WorkspaceSelector/ScrollingList.d.ts +0 -21
  270. package/dist/components/WorkspaceSelector/SearchBox.d.ts +0 -9
  271. package/dist/components/WorkspaceSelector/WorkspaceItem.d.ts +0 -9
  272. package/dist/components/WorkspaceSelector/WorkspaceList.d.ts +0 -11
  273. package/dist/components/WorkspaceSelector/index.d.ts +0 -36
  274. package/dist/components/__beta__/CLIWizard/index.d.ts +0 -19
  275. package/dist/components/__beta__/CLIWizard/terminal-command.d.ts +0 -19
  276. package/dist/components/__beta__/CLIWizard/terminal.d.ts +0 -26
  277. package/dist/context/ConfigContext.d.ts +0 -18
  278. package/dist/context/ModalContext.d.ts +0 -22
  279. package/dist/context/theme.d.ts +0 -1
  280. package/dist/createCustomLucideIcon-CatlpFc0.mjs +0 -19
  281. package/dist/createCustomLucideIcon-CatlpFc0.mjs.map +0 -1
  282. package/dist/gems-DQ7pOLLr.mjs +0 -24
  283. package/dist/gems-DQ7pOLLr.mjs.map +0 -1
  284. package/dist/github-kgjMtfE7.mjs +0 -11
  285. package/dist/github-kgjMtfE7.mjs.map +0 -1
  286. package/dist/go-DsW1bFpz.mjs.map +0 -1
  287. package/dist/hooks/useAppLayout.d.ts +0 -1
  288. package/dist/hooks/useConfig.d.ts +0 -2
  289. package/dist/hooks/useIsMounted.d.ts +0 -1
  290. package/dist/hooks/useModal.d.ts +0 -11
  291. package/dist/hooks/useTailwindBreakpoint.d.ts +0 -3
  292. package/dist/hooks/useTheme.d.ts +0 -6
  293. package/dist/index-C9bJtuJ5.mjs +0 -16347
  294. package/dist/index-C9bJtuJ5.mjs.map +0 -1
  295. package/dist/index.d.ts +0 -80
  296. package/dist/lib/assert.d.ts +0 -2
  297. package/dist/lib/codeUtils.d.ts +0 -36
  298. package/dist/lib/debounce.d.ts +0 -1
  299. package/dist/lib/responsiveMappers.d.ts +0 -10
  300. package/dist/lib/responsiveUtils.d.ts +0 -3
  301. package/dist/lib/storybookUtils.d.ts +0 -5
  302. package/dist/lib/typeUtils.d.ts +0 -24
  303. package/dist/lib/utils.d.ts +0 -24
  304. package/dist/maven-Dub5liK1.mjs.map +0 -1
  305. package/dist/maven-W_nkSDNW.mjs +0 -107
  306. package/dist/maven-W_nkSDNW.mjs.map +0 -1
  307. package/dist/moonshine.es.js +0 -125
  308. package/dist/moonshine.es.js.map +0 -1
  309. package/dist/npm-BWTcVvFH.mjs +0 -11
  310. package/dist/npm-BWTcVvFH.mjs.map +0 -1
  311. package/dist/npm-BYcG5_q9.mjs +0 -17
  312. package/dist/npm-BYcG5_q9.mjs.map +0 -1
  313. package/dist/nuget-CV5HU1JR.mjs +0 -11
  314. package/dist/nuget-CV5HU1JR.mjs.map +0 -1
  315. package/dist/nuget-D86y5HDl.mjs.map +0 -1
  316. package/dist/packagist-BFSSrw4p.mjs +0 -118
  317. package/dist/packagist-BFSSrw4p.mjs.map +0 -1
  318. package/dist/packagist-D01fn9N_.mjs +0 -11
  319. package/dist/packagist-D01fn9N_.mjs.map +0 -1
  320. package/dist/pypi-2SUX-2OR.mjs.map +0 -1
  321. package/dist/pypi-DLh6kIJe.mjs +0 -11
  322. package/dist/pypi-DLh6kIJe.mjs.map +0 -1
  323. package/dist/rubygems-DeiNjcDV.mjs +0 -11
  324. package/dist/rubygems-DeiNjcDV.mjs.map +0 -1
  325. package/dist/speakeasy-logo-ByBTXLWb.mjs +0 -5
  326. package/dist/speakeasy-logo-ByBTXLWb.mjs.map +0 -1
  327. package/dist/style.css +0 -1
  328. package/dist/terraform-C4aktQ0o.mjs +0 -11
  329. package/dist/terraform-C4aktQ0o.mjs.map +0 -1
  330. package/dist/types.d.ts +0 -85
package/dist/index.d.ts DELETED
@@ -1,80 +0,0 @@
1
- import { CLIWizard } from './components/__beta__/CLIWizard';
2
- export { isGroupOf } from './lib/typeUtils';
3
- export { Grid, type GridProps } from './components/Grid';
4
- export { Stack, type StackProps } from './components/Stack';
5
- export { Button, type ButtonProps } from './components/Button';
6
- export { Card, type CardProps } from './components/Card';
7
- export { Icon, type IconProps } from './components/Icon';
8
- export { isIconName } from './components/Icon/isIconName';
9
- export { type IconName } from './components/Icon/names';
10
- export { Separator, type SeparatorProps } from './components/Separator';
11
- export { Skeleton, type SkeletonProps } from './components/Skeleton';
12
- export { Badge, type BadgeProps } from './components/Badge';
13
- export { Heading, type HeadingProps } from './components/Heading';
14
- export { Text, type TextProps } from './components/Text';
15
- export { Score, type ScoreValue } from './components/Score';
16
- export { Logo, type LogoProps } from './components/Logo';
17
- export { AnimatedLogo } from './components/Logo/Animated';
18
- export { Container, type ContainerProps } from './components/Container';
19
- export { Combobox, type ComboboxProps } from './components/Combobox';
20
- export { TargetLanguageIcon, type TargetLanguageIconProps, } from './components/TargetLanguageIcon';
21
- export { UserAvatar, type UserAvatarProps } from './components/UserAvatar';
22
- export { Subnav, type SubnavItem, type SubnavProps } from './components/Subnav';
23
- export { CodeSnippet, type CodeSnippetProps } from './components/CodeSnippet';
24
- export { Pre, type PreProps } from './components/CodeHighlight/Pre';
25
- export { highlightCode, getMappedLanguage, isProgrammingLanguage, removeCodeHikeAnnotations, LIGHT_THEME, DARK_THEME, type HighlightedCode, type CodeLine, type CodeToken, } from './lib/codeUtils';
26
- export { LoggedInUserMenu, type LoggedInUserProps, } from './components/LoggedInUserMenu';
27
- export { PromptInput, type PromptInputProps, type Suggestion, type Attachment, } from './components/PromptInput';
28
- export { WorkspaceSelector, type Org, type Workspace, type WorkspaceSelectorProps, } from './components/WorkspaceSelector';
29
- export { Wizard, type WizardProps } from './components/Wizard';
30
- export { type WizardStep, type WizardCommand } from './components/Wizard/types';
31
- export { MoonshineConfigProvider, type MoonshineConfigProviderProps, } from './context/ConfigContext';
32
- export { useConfig as useMoonshineConfig } from './hooks/useConfig';
33
- export { useTheme as useMoonshineTheme, type Theme } from './hooks/useTheme';
34
- export { default as useTailwindBreakpoint } from './hooks/useTailwindBreakpoint';
35
- export { GradientCircle, type GradientCircleProps, } from './components/GradientCircle';
36
- export { Alert, type AlertProps } from './components/Alert';
37
- export { Tabs, type TabProps } from './components/Tabs';
38
- export { Table, type TableProps, type Column, type Group, } from './components/Table';
39
- export { Input, type InputProps } from './components/Input';
40
- export { type SupportedLanguage, supportedLanguages, isSupportedLanguage, } from './types';
41
- export { PageHeader, type PageHeaderProps } from './components/PageHeader';
42
- export { ExternalPill, type ExternalPillProps } from './components/ExternalPill';
43
- export { LanguageIndicator, type LanguageIndicatorProps, } from './components/LanguageIndicator';
44
- export { PullRequestLink, type PullRequestLinkProps, } from './components/PullRequestLink';
45
- export { Select, SelectGroup, SelectItem, SelectContent, SelectTrigger, SelectValue, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, } from './components/Select';
46
- export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider, TooltipPortal, } from './components/Tooltip';
47
- export { Popover, PopoverContent, PopoverTrigger, PopoverAnchor, PopoverPortal, } from './components/Popover';
48
- export { Facepile, type FacepileProps } from './components/Facepile';
49
- export { Link, type LinkProps } from './components/Link';
50
- export { Dialog } from './components/Dialog';
51
- export { Switch, type SwitchProps } from './components/Switch';
52
- export { SegmentedButton } from './components/SegmentedButton';
53
- export { AppLayout, type AppLayoutNavItemProps, type AppLayoutNavItemGroupProps, type AppLayoutBreadcrumbItemProps, } from './components/AppLayout';
54
- export { AppLayoutProvider } from './components/AppLayout/provider';
55
- export { useAppLayout } from './hooks/useAppLayout';
56
- export { ActionBar, type ActionBarProps } from './components/ActionBar';
57
- export { Key, type KeyProps, KeyHint, type KeyHintProps, } from './components/KeyHint';
58
- export { HighlightedText, type HighlightedTextProps, } from './components/HighlightedText';
59
- export { DragNDropArea, type DragNDropAreaProps, } from './components/DragNDrop/DragNDropArea';
60
- export { DragOverlay } from './components/DragNDrop/DragOverlay';
61
- export { Draggable, type DraggableProps, } from './components/DragNDrop/Draggable';
62
- export { Droppable, type DroppableProps, } from './components/DragNDrop/Droppable';
63
- export { ResizablePanel, type ResizablePanelProps, } from './components/ResizablePanel';
64
- export { CodePlayground, type CodePlaygroundProps, type CodePlaygroundSnippets, } from './components/CodePlayground';
65
- export { CodeEditor, type CodeEditorLayoutProps, } from './components/CodeEditorLayout';
66
- export { Command, CommandGroup, CommandItem, CommandEmpty, CommandInput, CommandList, CommandSeparator, CommandShortcut, CommandDialog, } from './components/Command';
67
- export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuGroup, DropdownMenuTrigger, DropdownMenuPortal, DropdownMenuSub, DropdownMenuSubTrigger, DropdownMenuSubContent, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, } from './components/Dropdown';
68
- export { ContextDropdown } from './components/ContextDropdown';
69
- export { ModalProvider } from './context/ModalContext';
70
- export { useModal } from './hooks/useModal';
71
- export { Modal, type ModalProps } from './components/Modal';
72
- export { ThemeSwitcher, type ThemeSwitcherProps, } from './components/ThemeSwitcher';
73
- export { cn } from './lib/utils';
74
- export { Timeline } from './components/Timeline';
75
- export declare const beta: {
76
- CLIWizard: typeof CLIWizard;
77
- };
78
- export { AIChatContainer, AIChatMessage, AIChatMessageComposer, } from './components/AIChat';
79
- export { useToolCallApproval } from './components/AIChat/toolCallApproval';
80
- /** END BETA COMPONENTS */
@@ -1,2 +0,0 @@
1
- export declare function assertNever(value: unknown): never;
2
- export declare function assert(condition: boolean, message: string): asserts condition;
@@ -1,36 +0,0 @@
1
- import { BundledLanguage, BundledTheme } from 'shiki';
2
- import { ProgrammingLanguage, SupportedLanguage } from '../types';
3
- export declare const LIGHT_THEME: "github-light";
4
- export declare const DARK_THEME: "github-dark";
5
- export interface CodeToken {
6
- content: string;
7
- color?: string;
8
- fontStyle?: number;
9
- }
10
- export interface CodeLine {
11
- tokens: CodeToken[];
12
- }
13
- export interface HighlightedCode {
14
- lines: CodeLine[];
15
- code: string;
16
- lang: string;
17
- }
18
- /**
19
- * Highlights code using Shiki
20
- */
21
- export declare function highlightCode(code: string, language: SupportedLanguage | string, theme?: BundledTheme): Promise<HighlightedCode>;
22
- /**
23
- * Maps language identifiers to their proper syntax highlighting aliases
24
- */
25
- export declare function getMappedLanguage(language: ProgrammingLanguage | SupportedLanguage): BundledLanguage;
26
- /**
27
- * Helper to check if a language is in our supported set
28
- */
29
- export declare function isProgrammingLanguage(language: string): language is ProgrammingLanguage;
30
- /**
31
- * Removes CodeHike annotations from the code
32
- * Useful for copying code / excluding annotations from clipboard
33
- * @param code - The code string containing CodeHike annotations
34
- * @returns Clean code string without annotations
35
- */
36
- export declare function removeCodeHikeAnnotations(code: string): string;
@@ -1 +0,0 @@
1
- export default function debounce(func: Function, wait: number): (...args: unknown[]) => void;
@@ -1,10 +0,0 @@
1
- import { Alignment, Gap, Padding } from '../types';
2
- export declare const directionToFlexMapper: (direction: "horizontal" | "vertical") => string;
3
- export declare const gapMapper: (gap: Gap) => string;
4
- export declare const paddingMapper: (padding: Padding) => string;
5
- export declare const colSpanMapper: (colSpan: number) => string;
6
- export declare const alignmentMapper: (alignment: Alignment) => string;
7
- declare const justifyClasses: Record<'start' | 'center' | 'end' | 'space-between' | 'space-evenly', string>;
8
- export declare const justifyMapper: (justify: keyof typeof justifyClasses) => string;
9
- export declare const wrapMapper: (wrap: "nowrap" | "wrap" | "wrap-reverse") => string;
10
- export {};
@@ -1,3 +0,0 @@
1
- import { Breakpoint, Gap, ResponsiveValue, Size } from '../types';
2
- export declare const gapMapper: (gap: Gap) => string;
3
- export declare const resolveSizeForBreakpoint: (currentBreakpoint: Breakpoint, size: ResponsiveValue<Size>, fallback?: Size) => Size;
@@ -1,5 +0,0 @@
1
- /**
2
- * Create a list of sample children for testing and rendering in storybook
3
- */
4
- export declare function createSampleChildren(count: number, attachTestIds?: boolean): import("react/jsx-runtime").JSX.Element[];
5
- export declare function createSampleGridChildren(count: number): import("react/jsx-runtime").JSX.Element[];
@@ -1,24 +0,0 @@
1
- import { Breakpoint, Direction, PaddingPerAxis, PaddingPerSide, PaddingPerSides, ResponsiveValue, Size } from '../types';
2
- import { Group } from '../components/Table';
3
- /**
4
- * Create a range of numbers from 0 to N
5
- * @example
6
- * type Range0to100 = Range<100> // [0, 1, 2, ..., 100]
7
- */
8
- export type Range<N extends number, Arr extends unknown[] = []> = Arr['length'] extends N ? [...Arr, N][number] : Range<N, [...Arr, Arr['length']]>;
9
- export declare function isResponsiveValueObject<T>(value: unknown): value is ResponsiveValue<T> & Record<Breakpoint, T>;
10
- export declare function isSize(value: unknown): value is Size;
11
- export declare function isDirection(value: unknown): value is Direction;
12
- /**
13
- * Checks if the value is an object with x and y properties
14
- */
15
- export declare function isPaddingHorizontalOrVerticalAxis(value: unknown): value is PaddingPerAxis;
16
- export declare function isPaddingPerSideValue(value: unknown): value is PaddingPerSides;
17
- export declare function isPaddingPerSide(value: unknown): value is PaddingPerSide;
18
- export declare function isPaddingPerSides(value: unknown): value is PaddingPerSides;
19
- /**
20
- * Asserts that a condition is true, otherwise throws an error
21
- * Can be used to narrow types
22
- */
23
- export declare function assert(condition: unknown, message: string): asserts condition;
24
- export declare function isGroupOf<T extends object>(data: unknown): data is Group<T>;
@@ -1,24 +0,0 @@
1
- import { Breakpoint, ResponsiveValue } from '../types';
2
- import { ClassValue } from 'clsx';
3
- export declare function cn(...inputs: ClassValue[]): string;
4
- /**
5
- * Given an object of responsive values for T and a mapper function, return a string of class names
6
- * that correspond to the responsive values.
7
- *
8
- * @param value - The responsive value
9
- * @param mapper - A function that takes the value and returns a string of class names
10
- * @returns A string of class names
11
- * @example
12
- * const gapMapper = (gap: number) => `gap-${gap}`
13
- * const gap = getResponsiveClasses({ sm: 0, md: 10 }, gapMapper)
14
- * // => 'gap-0 md:gap-10'
15
- */
16
- export declare function getResponsiveClasses<T>(value: ResponsiveValue<T>, mapper: (val: T, breakpoint: Breakpoint) => string): string;
17
- /**
18
- * Converts string to kebab case
19
- *
20
- * @param {string} string
21
- * @returns {string} A kebabized string
22
- */
23
- export declare const toKebabCase: (string: string) => string;
24
- export declare const partitionBy: <T>(array: T[], predicate: (item: T) => boolean) => [T[], T[]];
@@ -1 +0,0 @@
1
- {"version":3,"file":"maven-Dub5liK1.mjs","sources":["../src/components/Icon/customIcons/maven.ts"],"sourcesContent":["import { IconNode } from 'lucide-react'\nimport createCustomLucideIcon from './createCustomLucideIcon'\n\nconst iconNode: IconNode = [\n [\n 'path',\n {\n d: 'M21.91.007c-1.485.068-3.021.634-3.785 2.433a43.472 43.472 0 0 0-1.826 12.138l6.522 3.156a82.741 82.741 0 0 1 .455-11.615 73.289 73.289 0 0 0-.013 11.46 126.329 126.329 0 0 0 9.665-9.144A13.913 13.913 0 0 0 25.647.66S23.821-.08 21.91.007zm1.353 17.571c.103 1.83.262 3.879.46 6.147.004.116.017.238.04.353.188 1.983.43 4.116.741 6.442.263 2.009.559 4.116.915 6.402.294 1.972.66 4.04 1.034 6.234l-.034.029c.067.057.076.103.072.134.053.295.107.554.156.852.17.867.322 1.746.5 2.63.183.964.384 1.946.576 2.955.094.509.193 1.017.299 1.536.318 1.554.661 3.148 1.013 4.785.456 2.019.911 4.09 1.42 6.246.46 2.04.995 4.166 1.536 6.326.526 2.062 1.057 4.174 1.642 6.361.514 1.933 1.063 3.92 1.62 5.942 0 .094.067.2.086.299a722.705 722.705 0 0 0 1.763 6.183.349.349 0 0 0 .04.134l2.643-2.433c-.066 0-.115.058-.205.094a25.348 25.348 0 0 0 .975-1.257 27.826 27.826 0 0 1 .237.594 13.977 13.977 0 0 1-1.007.591l-2.643 2.433c.099.303.178.606.295.924.393 1.397.838 2.849 1.29 4.306a12.762 12.762 0 0 1-1.603-.759 856.995 856.995 0 0 1-.995-3.453c-.111-.411-.227-.795-.34-1.21l-.022-.011a652.583 652.583 0 0 1-1.366-4.888c-.129-.478-.245-.944-.38-1.422-.553-2.066-1.108-4.165-1.669-6.281a412.986 412.986 0 0 1-1.544-6.154c-.509-2.077-.996-4.167-1.483-6.252-.482-2.088-.96-4.27-1.406-6.4-.451-2.13-.87-4.256-1.29-6.372-.15-.768-.287-1.513-.424-2.286-.241-1.303-.46-2.62-.696-3.942a.706.706 0 0 0-.045-.214l-8.665-4.422c.023.137.032.275.036.417.174 1.96.339 3.953.576 5.945.232 1.986.481 4.066.785 6.129.255 1.737.531 3.458.817 5.198.057.344.13.708.188 1.047a125.375 125.375 0 0 0 2.92 12.375c.374 1.258.745 2.477 1.124 3.63.33.967.687 1.941 1.031 2.901a84.105 84.105 0 0 0 2.741 6.576l.025.013c.026.087.055.169.096.253a67.87 67.87 0 0 0 4.027 7.437c.048.07.098.173.151.245a17.72 17.72 0 0 0-6.673-.513 24.508 24.508 0 0 1 10.754 6.268 11.274 11.274 0 0 1-5.085 2.549 11.243 11.243 0 0 0 5.58-.496 13.73 13.73 0 0 0-3.393 6.616 14.106 14.106 0 0 1 5.51-5.834c.413 1.37.861 2.79 1.3 4.196-3.883 7.568-7.835 15.71-11.863 24.294a2.97 2.97 0 0 0 2.286-1.665c.704-1.5 4.447-9.484 10.183-20.683 2.205 6.956 4.691 14.3 7.392 21.928a2.65 2.65 0 0 0 .41-2.473c-.525-1.445-3.383-9.532-6.979-21.05a756.775 756.775 0 0 1 2.572-4.945 8.793 8.793 0 0 1 1.96.752 9.966 9.966 0 0 1 2.698 4.538 8.091 8.091 0 0 0-1.772-5.861c7.12 1.375 13.588.46 17.535-4.317a21.27 21.27 0 0 0 1.009-1.375 6.958 6.958 0 0 1-7.004 1.455 19.477 19.477 0 0 0 10.861-6.53 40.678 40.678 0 0 0 1.973-2.554 15.792 15.792 0 0 1-15.464 2.625l-.049-.003c-.06-.023-.121-.037-.2-.069a28.706 28.706 0 0 0 16.49-6.352 38.673 38.673 0 0 0 6.254-6.447 63.286 63.286 0 0 0 4.37-6.477 99.2 99.2 0 0 0 3.724-6.906 14.79 14.79 0 0 1-3.933.74l-.772.04h-.786a17.463 17.463 0 0 0 10.634-7.713 16.39 16.39 0 0 1-5.706 1.571c-.308.032-.638.032-.968.036h-.25a18.171 18.171 0 0 0 4.316-1.643c.268-.138.531-.29.782-.46.392-.245.759-.517 1.125-.794.236-.192.459-.366.692-.558a12.67 12.67 0 0 0 1.49-1.532c.157-.178.305-.335.43-.522.191-.272.378-.523.544-.781a46.685 46.685 0 0 0 2.009-3.125c.267-.455.508-.888.719-1.29.075-.165.17-.304.25-.456.219-.46.428-.852.58-1.21.183-.41.348-.833.486-1.267a2.67 2.67 0 0 1-.571.268 19.337 19.337 0 0 1-5.781 1.08c-.026-.014-.054-.014-.076 0a6.486 6.486 0 0 0-.406 0 15.49 15.49 0 0 0 7.656-4.393 51.908 51.908 0 0 0 1.544-1.723 75.627 75.627 0 0 0 4.603-5.857 64.303 64.303 0 0 0 3.656-5.719 33.874 33.874 0 0 0 1.603-3.16 37.78 37.78 0 0 0 .915-2.398c-4.999.13-10.001.005-14.986-.37a184.48 184.48 0 0 0-4.51 5.321 2.192 2.192 0 0 0-.25.317 204.008 204.008 0 0 0-4.521 5.777c-1.37 1.826-2.835 3.768-4.362 5.897-1.326 1.815-2.666 3.766-4.089 5.815l-.09-.003c.024.085-.009.13-.035.152-.192.272-.358.532-.55.804-.553.834-1.13 1.66-1.687 2.513a238.212 238.212 0 0 1-1.888 2.84c-.321.486-.647.968-.978 1.477-.982 1.505-1.969 3.057-2.99 4.656a397.668 397.668 0 0 0-3.818 6.152 574.693 574.693 0 0 0-3.79 6.312c-1.213 2.076-2.46 4.2-3.727 6.402-1.126 1.963-2.26 4-3.429 6.085-.063.089-.106.21-.17.303a605.526 605.526 0 0 0-3.495 6.402.34.34 0 0 0-.067.125h-.004c-.174.348-.354.656-.518.986a415.342 415.342 0 0 0-2.768 5.219c0 .023-.031.044-.036.067-.138.263-.276.495-.388.754-.625 1.184-1.174 2.292-2.408 4.67a7.136 7.136 0 0 0-1.257-.967c.612-1.164 1.205-2.303 1.848-3.51.25-.457.518-.938.768-1.434l.21-.397c.941-1.737 1.91-3.522 2.915-5.348.236-.423.455-.825.687-1.246v-.022l-.977-2.917a18.168 18.168 0 0 0-.016-.103l1.002 2.989c.915-1.67 1.858-3.33 2.795-5.031.25-.45.535-.915.799-1.41 1.196-2.108 2.418-4.232 3.656-6.403a338.51 338.51 0 0 1 3.66-6.178c1.254-2.066 2.51-4.143 3.773-6.214a322.68 322.68 0 0 1 3.964-6.286c1.343-2.085 2.683-4.111 4.018-6.151a99.312 99.312 0 0 1 1.487-2.188c.844-1.246 1.71-2.49 2.575-3.727.037-.068.093-.138.13-.21l.004.013c1.397-1.888 2.764-3.8 4.13-5.67a364.242 364.242 0 0 1 4.424-5.812 158.423 158.423 0 0 1 4.634-5.656c.089-.115.187-.223.272-.317a154.46 154.46 0 0 1 4.571-5.102l-2.74-7.706c-.328.309-.674.612-1.028.938a156.351 156.351 0 0 0-4.04 3.888 253.893 253.893 0 0 0-4.866 4.991 251.966 251.966 0 0 0-4.674 5.112 297.728 297.728 0 0 0-4.03 4.683l-.157.178.016.047a3.422 3.422 0 0 1-.28.333c-1.419 1.718-2.86 3.455-4.272 5.254a211.171 211.171 0 0 0-4.236 5.562 303.164 303.164 0 0 0-3.473 4.835c-.228.322-.46.669-.679.991-1.371 2.054-2.701 4.066-3.87 6a129.467 129.467 0 0 0-3.607 6.286 153.528 153.528 0 0 0-1.983 3.816c-.504 1.04-.99 2.108-1.473 3.152a97.516 97.516 0 0 0-3.022 7.469l.458 1.364a13.977 13.977 0 0 1-.012.024l-.455-1.357c-.054.103-.098.21-.134.317a77.264 77.264 0 0 0-1.536 4.79 13.977 13.977 0 0 1-2.676 2.652 20.048 20.048 0 0 0-.71-.994 25.348 25.348 0 0 0 4.498-11.73 33.998 33.998 0 0 0-.085-7.941 54.022 54.022 0 0 0-1.268-6.795 89.685 89.685 0 0 0-1.941-6.656 13.274 13.274 0 0 1-2.018 2.915l-.456.5c-.152.17-.322.318-.49.496a15.428 15.428 0 0 0 1.901-11.46 14.512 14.512 0 0 1-2.616 4.531c-.174.21-.38.415-.585.621-.054.04-.094.094-.165.152a15.931 15.931 0 0 0 1.696-3.723c.08-.255.149-.514.197-.777.094-.398.156-.801.214-1.201.023-.269.067-.514.09-.781a11.114 11.114 0 0 0 0-1.889c0-.209 0-.396-.05-.593-.053-.294-.089-.567-.143-.835a46.89 46.89 0 0 0-.683-3.2 23.717 23.717 0 0 0-.348-1.255c-.053-.152-.08-.3-.134-.46-.143-.415-.258-.8-.384-1.116a11.676 11.676 0 0 0-.482-1.107 2.446 2.446 0 0 1-.192.522 17.159 17.159 0 0 1-2.877 4.16l-.11.099a.091.091 0 0 0-.04.058 5.131 5.131 0 0 0-.357.397c0-.023.022-.042.036-.062l.05-.045a13.684 13.684 0 0 0 2.088-7.531c0-.652-.048-1.34-.102-2.045a64.467 64.467 0 0 0-.723-6.544 56.211 56.211 0 0 0-1.237-5.884 32.244 32.244 0 0 0-.955-2.987 37.099 37.099 0 0 0-.915-2.071 131.952 131.952 0 0 1-9.67 9.09zm81.784-13.861a4.499 4.499 0 0 0-1.66.357 49.325 49.325 0 0 0-11.094 8.33l2.74 7.728a91.8 91.8 0 0 1 9.603-8.982 81.998 81.998 0 0 0-9.142 9.2 144 144 0 0 0 15.03.33 15.748 15.748 0 0 0 .322-12.066s-2.139-4.948-5.799-4.897zM16.294 14.592c0 .392-.044.799-.062 1.227-.063 1.558-.111 3.2-.125 4.96 0 1.963 0 4.013.036 6.156.044 1.977.129 4.036.232 6.13.107 1.79.223 3.598.37 5.446v.21l8.714 4.41c-.29-2.058-.606-4.106-.915-6.138a264.993 264.993 0 0 1-.821-6.397 128.192 128.192 0 0 1-.598-6.438c0-.13-.023-.258 0-.37a102.286 102.286 0 0 1-.317-6.058Zm74.03 29.38.043.003a6.486 6.486 0 0 0-.047 0l.004-.002zM48.115 80.5l.748 2.236a6.156 6.156 0 0 1-.007.036l-.747-2.232a17.208 17.208 0 0 0 .006-.04zM37.328 92.766a12.672 12.672 0 0 0 1.879 1.692c.112.37.33 1.055.455 1.456a15.547 15.547 0 0 0-1.352.196c-.059-.195-.114-.373-.172-.57-.134-.46-.256-.915-.406-1.374-.042-.13-.072-.246-.112-.384a856.995 856.995 0 0 1-.292-1.016zm1.91 4.775a15.917 15.917 0 0 1 .978.156c.136.437.168.533.346 1.107a8.793 8.793 0 0 1 1.27.047c-.563 1.067-1.13 2.174-1.696 3.268-.453-1.466-.92-3-1.389-4.56a15.917 15.917 0 0 1 .491-.018z',\n key: 'path',\n },\n ],\n]\n\nconst icon = createCustomLucideIcon('maven', iconNode, {\n viewBox: '0 0 128 128',\n fill: 'currentColor',\n})\n\nexport { icon as default }\n"],"names":["iconNode","icon","createCustomLucideIcon"],"mappings":";AAGA,MAAMA,IAAqB;AAAA,EACzB;AAAA,IACE;AAAA,IACA;AAAA,MACE,GAAG;AAAA,MACH,KAAK;AAAA,IAAA;AAAA,EACP;AAEJ,GAEMC,IAAOC,EAAuB,SAASF,GAAU;AAAA,EACrD,SAAS;AAAA,EACT,MAAM;AACR,CAAC;"}
@@ -1,107 +0,0 @@
1
- import * as e from "react";
2
- import { forwardRef as n } from "react";
3
- const c = ({
4
- title: t,
5
- titleId: l,
6
- ...a
7
- }, r) => /* @__PURE__ */ e.createElement("svg", { width: 16, height: 16, viewBox: "0 0 32 32", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", ref: r, "aria-labelledby": l, ...a }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "a", x1: -7274.8, y1: 2082.507, x2: -7243.872, y2: 2046.343, gradientTransform: "matrix(-0.023, -0.116, -0.116, 0.023, 79.68, -889.484)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#f69923" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.312, stopColor: "#f79a23" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.838, stopColor: "#e97826" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "b", x1: -7503.689, y1: 2086.595, x2: -7283.036, y2: 2086.595, gradientTransform: "matrix(-0.023, -0.116, -0.116, 0.023, 79.68, -889.484)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0.323, stopColor: "#9e2064" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.63, stopColor: "#c92037" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.751, stopColor: "#cd2335" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#e97826" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "c", x1: -7477.053, y1: 2064.42, x2: -7345.566, y2: 2064.42, gradientTransform: "matrix(-0.023, -0.116, -0.116, 0.023, 79.68, -889.484)", gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 0, stopColor: "#282662" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.095, stopColor: "#662e8d" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.788, stopColor: "#9f2064" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.949, stopColor: "#cd2032" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "d", x1: -7491.296, y1: 2088.633, x2: -7270.643, y2: 2088.633, xlinkHref: "#b" }), /* @__PURE__ */ e.createElement("linearGradient", { id: "e", x1: -7475.203, y1: 2085.61, x2: -7359.244, y2: 2085.61, xlinkHref: "#c" }), /* @__PURE__ */ e.createElement("linearGradient", { id: "f", x1: -7491.296, y1: 2065.799, x2: -7270.643, y2: 2065.799, xlinkHref: "#b" }), /* @__PURE__ */ e.createElement("linearGradient", { id: "g", x1: -7504.984, y1: 2066.905, x2: -7284.331, y2: 2066.905, xlinkHref: "#b" }), /* @__PURE__ */ e.createElement("linearGradient", { id: "h", x1: -7491.296, y1: 2058.959, x2: -7270.643, y2: 2058.959, xlinkHref: "#b" }), /* @__PURE__ */ e.createElement("linearGradient", { id: "i", x1: -7491.296, y1: 2059.762, x2: -7270.643, y2: 2059.762, xlinkHref: "#b" }), /* @__PURE__ */ e.createElement("linearGradient", { id: "j", x1: -8307.632, y1: 2040.008, x2: -8276.704, y2: 2003.844, gradientTransform: "matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)", xlinkHref: "#a" }), /* @__PURE__ */ e.createElement("linearGradient", { id: "k", x1: -8536.521, y1: 2044.096, x2: -8315.868, y2: 2044.096, gradientTransform: "matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)", xlinkHref: "#b" }), /* @__PURE__ */ e.createElement("linearGradient", { id: "l", x1: -8509.885, y1: 2021.921, x2: -8378.397, y2: 2021.921, gradientTransform: "matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)", xlinkHref: "#c" }), /* @__PURE__ */ e.createElement("linearGradient", { id: "m", x1: -8524.128, y1: 2046.134, x2: -8303.475, y2: 2046.134, gradientTransform: "matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)", xlinkHref: "#b" }), /* @__PURE__ */ e.createElement("linearGradient", { id: "n", x1: -8508.035, y1: 2043.111, x2: -8392.076, y2: 2043.111, gradientTransform: "matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)", xlinkHref: "#c" }), /* @__PURE__ */ e.createElement("linearGradient", { id: "o", x1: -8524.128, y1: 2023.3, x2: -8303.475, y2: 2023.3, gradientTransform: "matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)", xlinkHref: "#b" }), /* @__PURE__ */ e.createElement("linearGradient", { id: "p", x1: -8537.816, y1: 2024.407, x2: -8317.163, y2: 2024.407, gradientTransform: "matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)", xlinkHref: "#b" }), /* @__PURE__ */ e.createElement("linearGradient", { id: "q", x1: -8524.128, y1: 2016.46, x2: -8303.475, y2: 2016.46, gradientTransform: "matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)", xlinkHref: "#b" }), /* @__PURE__ */ e.createElement("linearGradient", { id: "r", x1: -8524.128, y1: 2017.263, x2: -8303.475, y2: 2017.263, gradientTransform: "matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)", xlinkHref: "#b" })), t === void 0 ? /* @__PURE__ */ e.createElement("title", { id: l }, "file_type_maven") : t ? /* @__PURE__ */ e.createElement("title", { id: l }, t) : null, /* @__PURE__ */ e.createElement("path", { d: "M5.976,2.533a9.539,9.539,0,0,0-.4,2.655l1.427.691a17.928,17.928,0,0,1,.1-2.541c.005-.058.011-.092.011-.092,0,.031-.009.061-.011.092A15.939,15.939,0,0,0,7.1,5.845a27.79,27.79,0,0,0,2.114-2A3.041,3.041,0,0,0,7.621,2.144S6.357,1.634,5.976,2.533Z", style: {
8
- fill: "url(#a)"
9
- } }), /* @__PURE__ */ e.createElement("path", { d: "M9.688,9.722A.018.018,0,0,0,9.7,9.709l-.08.071c0,.007-.009.013-.01.019Z", style: {
10
- fill: "none"
11
- } }), /* @__PURE__ */ e.createElement("path", { d: "M10.562,12.19c-.038.046-.083.091-.128.136C10.478,12.282,10.523,12.236,10.562,12.19Z", style: {
12
- fill: "none"
13
- } }), /* @__PURE__ */ e.createElement("path", { d: "M9.741,19.776c0-.021-.014-.044-.018-.065-.122-.445-.24-.876-.355-1.3-.125-.474-.244-.939-.359-1.391-.118-.473-.231-.937-.336-1.384-.112-.472-.215-.925-.311-1.366-.077-.359-.152-.707-.221-1.047-.024-.115-.045-.225-.066-.336-.042-.222-.086-.436-.126-.647s-.073-.386-.109-.575c-.011-.064-.022-.128-.034-.186L7.8,11.444l-.069.062-.142-.07c0,.015.005.032.01.047.047.285.1.573.152.863.03.164.063.332.093.5.088.465.181.926.282,1.393s.2.94.308,1.4.214.914.324,1.368.222.9.338,1.346c.119.466.24.925.365,1.374.026.1.055.206.085.3.1.366.2.721.3,1.073l.229.115.076-.068a.069.069,0,0,0-.009-.029C9.993,20.668,9.865,20.215,9.741,19.776Z", style: {
14
- fill: "none"
15
- } }), /* @__PURE__ */ e.createElement("path", { d: "M10.924,13.495c-.067.073-.136.142-.206.211h0c.036-.033.073-.072.107-.108A1.212,1.212,0,0,0,10.924,13.495Z", style: {
16
- fill: "#be202e"
17
- } }), /* @__PURE__ */ e.createElement("path", { d: "M10.924,13.495c-.067.073-.136.142-.206.211h0c.036-.033.073-.072.107-.108A1.212,1.212,0,0,0,10.924,13.495Z", style: {
18
- fill: "#be202e",
19
- opacity: 0.3499999940395355,
20
- isolation: "isolate"
21
- } }), /* @__PURE__ */ e.createElement("path", { d: "M10.4,12.356h0c.012-.009.021-.021.032-.03.045-.045.09-.09.128-.136-.05.055-.107.108-.161.166Z", style: {
22
- fill: "#be202e"
23
- } }), /* @__PURE__ */ e.createElement("path", { d: "M10.4,12.356h0c.012-.009.021-.021.032-.03.045-.045.09-.09.128-.136-.05.055-.107.108-.161.166Z", style: {
24
- fill: "#be202e",
25
- opacity: 0.3499999940395355,
26
- isolation: "isolate"
27
- } }), /* @__PURE__ */ e.createElement("path", { d: "M7.38,10.092q-.1-.712-.18-1.4c-.055-.477-.1-.945-.131-1.408,0-.028-.005-.056,0-.081C7.032,6.751,7.01,6.31,7,5.878L5.575,5.191c0,.086-.01.175-.013.269-.014.341-.025.7-.028,1.085,0,.43,0,.878.008,1.347.01.432.028.882.051,1.34.023.392.049.788.081,1.192,0,.017,0,.028,0,.046l1.906.965C7.517,10.984,7.447,10.536,7.38,10.092Z", style: {
28
- fill: "url(#b)"
29
- } }), /* @__PURE__ */ e.createElement("path", { d: "M10.2,21.362c.1.356.212.723.328,1.095,0,0,0,.011,0,.015.016.054.029.105.049.157.076.251.149.474.307.984a1.927,1.927,0,0,1,1.094.262,1.563,1.563,0,0,0-1.041-.566,3.349,3.349,0,0,0,1.827-2.977c-.012-.106-.026-.216-.047-.326a1.347,1.347,0,0,1-.766,1.152l0,0,0,0a3.766,3.766,0,0,0,.61-2.373c-.015-.193-.04-.4-.075-.619a3.056,3.056,0,0,1-1.772,2.462l-.578.532C10.157,21.227,10.175,21.293,10.2,21.362Z", style: {
30
- fill: "url(#c)"
31
- } }), /* @__PURE__ */ e.createElement("path", { d: "M9.453,19.735c-.121-.452-.242-.911-.365-1.374-.116-.444-.227-.892-.338-1.346s-.218-.911-.324-1.368-.21-.934-.308-1.4-.19-.931-.282-1.393c-.033-.168-.063-.332-.093-.5-.053-.286-.1-.574-.152-.863,0-.015-.005-.032-.01-.047l-1.895-.967a.679.679,0,0,1,.007.091c.038.429.075.865.126,1.3s.106.89.172,1.341c.056.38.116.757.179,1.138.013.075.028.154.041.228.087.471.181.926.282,1.351.113.482.235.934.357,1.356.082.276.163.542.246.794.072.212.15.425.225.635.181.493.382.971.6,1.438l1.915.97c-.1-.352-.2-.71-.3-1.073C9.508,19.941,9.482,19.84,9.453,19.735Z", style: {
32
- fill: "url(#d)"
33
- } }), /* @__PURE__ */ e.createElement("path", { d: "M7.947,20.208a14.86,14.86,0,0,0,.881,1.627c.011.016.022.038.033.054a3.864,3.864,0,0,0-1.46-.113,5.37,5.37,0,0,1,2.353,1.371,2.468,2.468,0,0,1-1.112.558,2.46,2.46,0,0,0,1.22-.108,3,3,0,0,0-.742,1.447,3.084,3.084,0,0,1,1.205-1.276c.575,1.906,1.267,3.972,2.034,6.14a.577.577,0,0,0,.09-.541c-.141-.389-1.054-2.968-2.095-6.468-.03-.1-.056-.2-.089-.3-.009-.029-.016-.054-.025-.084q-.16-.55-.326-1.132c-.024-.09-.05-.174-.074-.265l0,0-1.915-.97A.357.357,0,0,0,7.947,20.208Z", style: {
34
- fill: "url(#e)"
35
- } }), /* @__PURE__ */ e.createElement("path", { d: "M7.806,11.476c.011.064.023.121.034.186.037.19.07.382.109.575.04.211.084.426.126.647.021.111.042.222.066.336.069.34.144.688.221,1.047.1.441.2.894.311,1.366.1.446.218.911.336,1.384.115.451.231.913.359,1.391.112.423.233.858.355,1.3,0,.021.014.044.018.065.123.439.252.892.386,1.353a.069.069,0,0,0,.009.029l.578-.532c-.015,0-.026.013-.045.021a5.547,5.547,0,0,0,1.408-3.114,7.47,7.47,0,0,0-.018-1.737,11.925,11.925,0,0,0-.278-1.486c-.114-.458-.254-.944-.425-1.456a2.891,2.891,0,0,1-.441.637l-.1.11c-.033.037-.07.069-.107.108h0a3.377,3.377,0,0,0,.416-2.507,3.176,3.176,0,0,1-.572.991c-.038.046-.083.091-.128.136-.012.009-.021.021-.036.033h0a3.52,3.52,0,0,0,.371-.814,1.509,1.509,0,0,0,.043-.17c.02-.087.034-.175.047-.263.005-.058.014-.112.019-.171a2.461,2.461,0,0,0,0-.413c0-.046,0-.087-.011-.13-.011-.064-.019-.124-.031-.182-.046-.267-.1-.5-.149-.7-.026-.1-.05-.192-.076-.275-.012-.033-.018-.065-.03-.1-.031-.091-.056-.175-.084-.245a2.452,2.452,0,0,0-.105-.242h0a.532.532,0,0,1-.042.115,3.749,3.749,0,0,1-.65.934l.533-.487L9.687,9.7a.018.018,0,0,0-.009.013A1.082,1.082,0,0,0,9.6,9.8c0-.007.009-.013.01-.019L7.79,11.446C7.805,11.459,7.807,11.469,7.806,11.476Z", style: {
36
- fill: "url(#f)"
37
- } }), /* @__PURE__ */ e.createElement("path", { d: "M7.1,5.845c.022.4.057.848.1,1.344a.485.485,0,0,0,.009.078c.041.433.094.9.162,1.409.058.439.122.9.2,1.4.065.433.145.886.227,1.367l1.82-1.667a2.987,2.987,0,0,0,.457-1.647c0-.143-.011-.293-.022-.447A14.324,14.324,0,0,0,9.895,6.25a12.46,12.46,0,0,0-.271-1.287,6.825,6.825,0,0,0-.209-.653c-.065-.163-.133-.312-.2-.454A28.8,28.8,0,0,1,7.1,5.845Z", style: {
38
- fill: "url(#g)"
39
- } }), /* @__PURE__ */ e.createElement("path", { d: "M10.827,13.6c-.033.037-.07.069-.107.108h0A1.391,1.391,0,0,1,10.827,13.6Z", style: {
40
- fill: "#be202e"
41
- } }), /* @__PURE__ */ e.createElement("path", { d: "M10.827,13.6c-.033.037-.07.069-.107.108h0A1.391,1.391,0,0,1,10.827,13.6Z", style: {
42
- fill: "#be202e",
43
- opacity: 0.3499999940395355,
44
- isolation: "isolate"
45
- } }), /* @__PURE__ */ e.createElement("path", { d: "M10.827,13.6c-.033.037-.07.069-.107.108h0A1.391,1.391,0,0,1,10.827,13.6Z", style: {
46
- fill: "url(#h)"
47
- } }), /* @__PURE__ */ e.createElement("path", { d: "M10.4,12.359c.012-.009.021-.021.036-.033-.012.009-.021.021-.036.033Z", style: {
48
- fill: "#be202e"
49
- } }), /* @__PURE__ */ e.createElement("path", { d: "M10.4,12.359c.012-.009.021-.021.036-.033-.012.009-.021.021-.036.033Z", style: {
50
- fill: "#be202e",
51
- opacity: 0.3499999940395355,
52
- isolation: "isolate"
53
- } }), /* @__PURE__ */ e.createElement("path", { d: "M10.4,12.359c.012-.009.021-.021.036-.033-.012.009-.021.021-.036.033Z", style: {
54
- fill: "url(#i)"
55
- } }), /* @__PURE__ */ e.createElement("path", { d: "M24.627,2.891A10.789,10.789,0,0,0,22.2,4.713l.6,1.69a20.278,20.278,0,0,1,2.1-1.965c.051-.042.082-.066.082-.066-.026.024-.056.042-.082.066a18.028,18.028,0,0,0-2,2.013,31.432,31.432,0,0,0,3.288.072,3.44,3.44,0,0,0,.071-2.639S25.647,2.47,24.627,2.891Z", style: {
56
- fill: "url(#j)"
57
- } }), /* @__PURE__ */ e.createElement("path", { d: "M21.9,11.627a.02.02,0,0,0,.017,0l-.121-.007c-.006,0-.017,0-.023.008Z", style: {
58
- fill: "none"
59
- } }), /* @__PURE__ */ e.createElement("path", { d: "M20.645,14.308c-.068.007-.14.007-.212.008C20.506,14.315,20.578,14.315,20.645,14.308Z", style: {
60
- fill: "none"
61
- } }), /* @__PURE__ */ e.createElement("path", { d: "M13.958,19.763c.014-.02.023-.046.037-.067.255-.456.5-.9.75-1.331.276-.481.55-.95.816-1.4.28-.474.559-.938.829-1.381.285-.468.561-.915.835-1.346.223-.35.439-.689.654-1.018.072-.111.143-.217.214-.323.142-.212.278-.419.413-.621.127-.186.248-.368.369-.55.042-.06.084-.121.12-.176l.021-.03-.1,0-.058-.169c-.008.015-.021.03-.029.046-.189.266-.378.538-.563.815-.106.156-.213.318-.325.479-.3.444-.591.889-.879,1.346s-.584.918-.867,1.375-.554.905-.826,1.359-.537.9-.8,1.352c-.274.47-.542.935-.8,1.4-.059.1-.119.21-.173.313-.21.374-.413.738-.611,1.1l.093.274.116.006a.078.078,0,0,0,.016-.031C13.452,20.681,13.709,20.214,13.958,19.763Z", style: {
62
- fill: "none"
63
- } }), /* @__PURE__ */ e.createElement("path", { d: "M19.9,15.646c-.112.006-.223.006-.334.006h0c.055,0,.116,0,.172,0A1.371,1.371,0,0,0,19.9,15.646Z", style: {
64
- fill: "#be202e"
65
- } }), /* @__PURE__ */ e.createElement("path", { d: "M19.9,15.646c-.112.006-.223.006-.334.006h0c.055,0,.116,0,.172,0A1.371,1.371,0,0,0,19.9,15.646Z", style: {
66
- fill: "#be202e",
67
- opacity: 0.3499999940395355,
68
- isolation: "isolate"
69
- } }), /* @__PURE__ */ e.createElement("path", { d: "M20.384,14.314h0c.016,0,.033,0,.05,0,.072,0,.144,0,.212-.008-.084,0-.172,0-.261.006Z", style: {
70
- fill: "#be202e"
71
- } }), /* @__PURE__ */ e.createElement("path", { d: "M20.384,14.314h0c.016,0,.033,0,.05,0,.072,0,.144,0,.212-.008-.084,0-.172,0-.261.006Z", style: {
72
- fill: "#be202e",
73
- opacity: 0.3499999940395355,
74
- isolation: "isolate"
75
- } }), /* @__PURE__ */ e.createElement("path", { d: "M19.751,10.091q.486-.652.968-1.272c.334-.428.672-.838,1.013-1.237.02-.025.041-.049.06-.069.334-.389.666-.761,1-1.117l-.6-1.685c-.071.067-.147.134-.224.205-.283.263-.579.547-.884.851-.344.343-.7.707-1.064,1.091-.335.356-.678.732-1.023,1.119-.293.334-.587.673-.882,1.024l-.034.039.767,2.291C19.153,10.918,19.452,10.5,19.751,10.091Z", style: {
76
- fill: "url(#k)"
77
- } }), /* @__PURE__ */ e.createElement("path", { d: "M13.063,21.4c-.2.37-.4.75-.605,1.142,0,.005-.007.01-.008.015-.03.057-.06.108-.085.165-.138.262-.256.5-.534,1.036a2.18,2.18,0,0,1,.673,1.08,1.768,1.768,0,0,0-.388-1.282c1.558.3,2.973.1,3.836-.945.075-.094.15-.194.221-.3a1.524,1.524,0,0,1-1.532.318h0A4.26,4.26,0,0,0,17.017,21.2c.141-.168.284-.352.431-.558a3.456,3.456,0,0,1-3.383.574l-.888-.031C13.139,21.261,13.1,21.328,13.063,21.4Z", style: {
78
- fill: "url(#l)"
79
- } }), /* @__PURE__ */ e.createElement("path", { d: "M13.758,19.5c.262-.461.529-.926.8-1.4.26-.45.525-.9.8-1.352s.549-.906.826-1.359.573-.919.867-1.375.587-.9.879-1.346c.107-.162.213-.318.325-.479.184-.272.374-.544.563-.815.008-.015.021-.03.029-.046l-.757-2.284a.768.768,0,0,1-.067.079c-.31.376-.626.756-.934,1.149s-.622.8-.927,1.217c-.257.35-.508.7-.76,1.058-.049.07-.1.146-.148.217-.3.449-.591.889-.847,1.312-.292.478-.554.939-.789,1.375-.153.288-.3.566-.433.835-.111.228-.217.461-.323.69-.246.54-.464,1.085-.661,1.633l.771,2.3c.2-.365.406-.728.611-1.1C13.638,19.71,13.7,19.608,13.758,19.5Z", style: {
80
- fill: "url(#m)"
81
- } }), /* @__PURE__ */ e.createElement("path", { d: "M12.17,18.686a16.808,16.808,0,0,0-.583,2.01c0,.022-.013.048-.016.07a4.37,4.37,0,0,0-1.086-1.251,6.074,6.074,0,0,1,.805,2.973,2.792,2.792,0,0,1-1.339-.435,2.782,2.782,0,0,0,1.068.883,3.4,3.4,0,0,0-1.747.575,3.488,3.488,0,0,1,1.984-.069C10.2,25.432,9.12,27.645,8.015,30a.652.652,0,0,0,.5-.364c.2-.426,1.51-3.226,3.453-6.872.054-.1.113-.205.168-.314.016-.031.03-.057.046-.087q.308-.57.637-1.17c.052-.092.1-.18.151-.272v-.005l-.771-2.3A.4.4,0,0,0,12.17,18.686Z", style: {
82
- fill: "url(#n)"
83
- } }), /* @__PURE__ */ e.createElement("path", { d: "M18.994,11.544c-.042.06-.078.116-.12.176-.121.182-.247.363-.369.55s-.271.409-.413.621c-.071.106-.142.212-.214.323-.215.329-.431.669-.654,1.018-.274.431-.55.878-.835,1.346-.27.443-.549.906-.829,1.381-.266.454-.539.919-.816,1.4-.246.43-.494.875-.75,1.331-.014.02-.023.046-.037.067-.249.451-.506.918-.765,1.4a.078.078,0,0,0-.016.031l.888.031c-.015-.008-.032-.01-.053-.019a6.274,6.274,0,0,0,3.607-1.389A8.449,8.449,0,0,0,18.986,18.4a13.487,13.487,0,0,0,.956-1.417c.272-.459.546-.962.815-1.51a3.269,3.269,0,0,1-.861.162l-.168.009c-.056,0-.111,0-.172,0h0a3.82,3.82,0,0,0,2.326-1.688,3.592,3.592,0,0,1-1.248.344c-.068.007-.14.007-.212.008-.016,0-.033,0-.055,0h0a3.981,3.981,0,0,0,.945-.36,1.707,1.707,0,0,0,.17-.1c.086-.054.166-.114.247-.174.051-.042.1-.08.151-.122a2.784,2.784,0,0,0,.326-.335c.034-.039.066-.073.094-.114.042-.06.083-.115.119-.171.175-.251.32-.48.439-.684.059-.1.112-.194.158-.282.016-.036.037-.067.054-.1.048-.1.094-.186.127-.264a2.773,2.773,0,0,0,.107-.278h0a.6.6,0,0,1-.125.059,4.24,4.24,0,0,1-1.265.236l.816.031-.816-.031a.02.02,0,0,0-.017,0,1.224,1.224,0,0,0-.128,0c.006,0,.017,0,.023-.008l-2.79-.1C19.007,11.529,19,11.539,18.994,11.544Z", style: {
84
- fill: "url(#o)"
85
- } }), /* @__PURE__ */ e.createElement("path", { d: "M22.9,6.452c-.3.339-.628.728-.986,1.164a.548.548,0,0,0-.055.07c-.311.381-.638.8-.989,1.263-.3.4-.62.824-.954,1.29-.292.4-.587.829-.9,1.281l2.79.1a3.379,3.379,0,0,0,1.677-.962c.111-.117.224-.244.338-.377A16.2,16.2,0,0,0,24.828,9a14.093,14.093,0,0,0,.8-1.251,7.72,7.72,0,0,0,.351-.691c.077-.183.141-.356.2-.525A32.58,32.58,0,0,1,22.9,6.452Z", style: {
86
- fill: "url(#p)"
87
- } }), /* @__PURE__ */ e.createElement("path", { d: "M19.738,15.655c-.056,0-.111,0-.172,0h0A1.573,1.573,0,0,1,19.738,15.655Z", style: {
88
- fill: "#be202e"
89
- } }), /* @__PURE__ */ e.createElement("path", { d: "M19.738,15.655c-.056,0-.111,0-.172,0h0A1.573,1.573,0,0,1,19.738,15.655Z", style: {
90
- fill: "#be202e",
91
- opacity: 0.3499999940395355,
92
- isolation: "isolate"
93
- } }), /* @__PURE__ */ e.createElement("path", { d: "M19.738,15.655c-.056,0-.111,0-.172,0h0A1.573,1.573,0,0,1,19.738,15.655Z", style: {
94
- fill: "url(#q)"
95
- } }), /* @__PURE__ */ e.createElement("path", { d: "M20.378,14.313c.016,0,.033,0,.055,0-.016,0-.033,0-.055,0Z", style: {
96
- fill: "#be202e"
97
- } }), /* @__PURE__ */ e.createElement("path", { d: "M20.378,14.313c.016,0,.033,0,.055,0-.016,0-.033,0-.055,0Z", style: {
98
- fill: "#be202e",
99
- opacity: 0.3499999940395355,
100
- isolation: "isolate"
101
- } }), /* @__PURE__ */ e.createElement("path", { d: "M20.378,14.313c.016,0,.033,0,.055,0-.016,0-.033,0-.055,0Z", style: {
102
- fill: "url(#r)"
103
- } })), s = n(c);
104
- export {
105
- s as default
106
- };
107
- //# sourceMappingURL=maven-W_nkSDNW.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"maven-W_nkSDNW.mjs","sources":["../src/assets/icons/external/maven.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nconst SvgMaven = ({\n title,\n titleId,\n ...props\n}, ref) => /* @__PURE__ */ React.createElement(\"svg\", { width: 16, height: 16, viewBox: \"0 0 32 32\", xmlns: \"http://www.w3.org/2000/svg\", xmlnsXlink: \"http://www.w3.org/1999/xlink\", ref, \"aria-labelledby\": titleId, ...props }, /* @__PURE__ */ React.createElement(\"defs\", null, /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"a\", x1: -7274.8, y1: 2082.507, x2: -7243.872, y2: 2046.343, gradientTransform: \"matrix(-0.023, -0.116, -0.116, 0.023, 79.68, -889.484)\", gradientUnits: \"userSpaceOnUse\" }, /* @__PURE__ */ React.createElement(\"stop\", { offset: 0, stopColor: \"#f69923\" }), /* @__PURE__ */ React.createElement(\"stop\", { offset: 0.312, stopColor: \"#f79a23\" }), /* @__PURE__ */ React.createElement(\"stop\", { offset: 0.838, stopColor: \"#e97826\" })), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"b\", x1: -7503.689, y1: 2086.595, x2: -7283.036, y2: 2086.595, gradientTransform: \"matrix(-0.023, -0.116, -0.116, 0.023, 79.68, -889.484)\", gradientUnits: \"userSpaceOnUse\" }, /* @__PURE__ */ React.createElement(\"stop\", { offset: 0.323, stopColor: \"#9e2064\" }), /* @__PURE__ */ React.createElement(\"stop\", { offset: 0.63, stopColor: \"#c92037\" }), /* @__PURE__ */ React.createElement(\"stop\", { offset: 0.751, stopColor: \"#cd2335\" }), /* @__PURE__ */ React.createElement(\"stop\", { offset: 1, stopColor: \"#e97826\" })), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"c\", x1: -7477.053, y1: 2064.42, x2: -7345.566, y2: 2064.42, gradientTransform: \"matrix(-0.023, -0.116, -0.116, 0.023, 79.68, -889.484)\", gradientUnits: \"userSpaceOnUse\" }, /* @__PURE__ */ React.createElement(\"stop\", { offset: 0, stopColor: \"#282662\" }), /* @__PURE__ */ React.createElement(\"stop\", { offset: 0.095, stopColor: \"#662e8d\" }), /* @__PURE__ */ React.createElement(\"stop\", { offset: 0.788, stopColor: \"#9f2064\" }), /* @__PURE__ */ React.createElement(\"stop\", { offset: 0.949, stopColor: \"#cd2032\" })), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"d\", x1: -7491.296, y1: 2088.633, x2: -7270.643, y2: 2088.633, xlinkHref: \"#b\" }), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"e\", x1: -7475.203, y1: 2085.61, x2: -7359.244, y2: 2085.61, xlinkHref: \"#c\" }), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"f\", x1: -7491.296, y1: 2065.799, x2: -7270.643, y2: 2065.799, xlinkHref: \"#b\" }), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"g\", x1: -7504.984, y1: 2066.905, x2: -7284.331, y2: 2066.905, xlinkHref: \"#b\" }), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"h\", x1: -7491.296, y1: 2058.959, x2: -7270.643, y2: 2058.959, xlinkHref: \"#b\" }), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"i\", x1: -7491.296, y1: 2059.762, x2: -7270.643, y2: 2059.762, xlinkHref: \"#b\" }), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"j\", x1: -8307.632, y1: 2040.008, x2: -8276.704, y2: 2003.844, gradientTransform: \"matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)\", xlinkHref: \"#a\" }), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"k\", x1: -8536.521, y1: 2044.096, x2: -8315.868, y2: 2044.096, gradientTransform: \"matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)\", xlinkHref: \"#b\" }), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"l\", x1: -8509.885, y1: 2021.921, x2: -8378.397, y2: 2021.921, gradientTransform: \"matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)\", xlinkHref: \"#c\" }), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"m\", x1: -8524.128, y1: 2046.134, x2: -8303.475, y2: 2046.134, gradientTransform: \"matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)\", xlinkHref: \"#b\" }), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"n\", x1: -8508.035, y1: 2043.111, x2: -8392.076, y2: 2043.111, gradientTransform: \"matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)\", xlinkHref: \"#c\" }), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"o\", x1: -8524.128, y1: 2023.3, x2: -8303.475, y2: 2023.3, gradientTransform: \"matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)\", xlinkHref: \"#b\" }), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"p\", x1: -8537.816, y1: 2024.407, x2: -8317.163, y2: 2024.407, gradientTransform: \"matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)\", xlinkHref: \"#b\" }), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"q\", x1: -8524.128, y1: 2016.46, x2: -8303.475, y2: 2016.46, gradientTransform: \"matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)\", xlinkHref: \"#b\" }), /* @__PURE__ */ React.createElement(\"linearGradient\", { id: \"r\", x1: -8524.128, y1: 2017.263, x2: -8303.475, y2: 2017.263, gradientTransform: \"matrix(0.074, -0.112, -0.112, -0.074, 864.083, -775.51)\", xlinkHref: \"#b\" })), title === void 0 ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, \"file_type_maven\") : title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M5.976,2.533a9.539,9.539,0,0,0-.4,2.655l1.427.691a17.928,17.928,0,0,1,.1-2.541c.005-.058.011-.092.011-.092,0,.031-.009.061-.011.092A15.939,15.939,0,0,0,7.1,5.845a27.79,27.79,0,0,0,2.114-2A3.041,3.041,0,0,0,7.621,2.144S6.357,1.634,5.976,2.533Z\", style: {\n fill: \"url(#a)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M9.688,9.722A.018.018,0,0,0,9.7,9.709l-.08.071c0,.007-.009.013-.01.019Z\", style: {\n fill: \"none\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M10.562,12.19c-.038.046-.083.091-.128.136C10.478,12.282,10.523,12.236,10.562,12.19Z\", style: {\n fill: \"none\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M9.741,19.776c0-.021-.014-.044-.018-.065-.122-.445-.24-.876-.355-1.3-.125-.474-.244-.939-.359-1.391-.118-.473-.231-.937-.336-1.384-.112-.472-.215-.925-.311-1.366-.077-.359-.152-.707-.221-1.047-.024-.115-.045-.225-.066-.336-.042-.222-.086-.436-.126-.647s-.073-.386-.109-.575c-.011-.064-.022-.128-.034-.186L7.8,11.444l-.069.062-.142-.07c0,.015.005.032.01.047.047.285.1.573.152.863.03.164.063.332.093.5.088.465.181.926.282,1.393s.2.94.308,1.4.214.914.324,1.368.222.9.338,1.346c.119.466.24.925.365,1.374.026.1.055.206.085.3.1.366.2.721.3,1.073l.229.115.076-.068a.069.069,0,0,0-.009-.029C9.993,20.668,9.865,20.215,9.741,19.776Z\", style: {\n fill: \"none\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M10.924,13.495c-.067.073-.136.142-.206.211h0c.036-.033.073-.072.107-.108A1.212,1.212,0,0,0,10.924,13.495Z\", style: {\n fill: \"#be202e\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M10.924,13.495c-.067.073-.136.142-.206.211h0c.036-.033.073-.072.107-.108A1.212,1.212,0,0,0,10.924,13.495Z\", style: {\n fill: \"#be202e\",\n opacity: 0.3499999940395355,\n isolation: \"isolate\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M10.4,12.356h0c.012-.009.021-.021.032-.03.045-.045.09-.09.128-.136-.05.055-.107.108-.161.166Z\", style: {\n fill: \"#be202e\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M10.4,12.356h0c.012-.009.021-.021.032-.03.045-.045.09-.09.128-.136-.05.055-.107.108-.161.166Z\", style: {\n fill: \"#be202e\",\n opacity: 0.3499999940395355,\n isolation: \"isolate\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M7.38,10.092q-.1-.712-.18-1.4c-.055-.477-.1-.945-.131-1.408,0-.028-.005-.056,0-.081C7.032,6.751,7.01,6.31,7,5.878L5.575,5.191c0,.086-.01.175-.013.269-.014.341-.025.7-.028,1.085,0,.43,0,.878.008,1.347.01.432.028.882.051,1.34.023.392.049.788.081,1.192,0,.017,0,.028,0,.046l1.906.965C7.517,10.984,7.447,10.536,7.38,10.092Z\", style: {\n fill: \"url(#b)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M10.2,21.362c.1.356.212.723.328,1.095,0,0,0,.011,0,.015.016.054.029.105.049.157.076.251.149.474.307.984a1.927,1.927,0,0,1,1.094.262,1.563,1.563,0,0,0-1.041-.566,3.349,3.349,0,0,0,1.827-2.977c-.012-.106-.026-.216-.047-.326a1.347,1.347,0,0,1-.766,1.152l0,0,0,0a3.766,3.766,0,0,0,.61-2.373c-.015-.193-.04-.4-.075-.619a3.056,3.056,0,0,1-1.772,2.462l-.578.532C10.157,21.227,10.175,21.293,10.2,21.362Z\", style: {\n fill: \"url(#c)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M9.453,19.735c-.121-.452-.242-.911-.365-1.374-.116-.444-.227-.892-.338-1.346s-.218-.911-.324-1.368-.21-.934-.308-1.4-.19-.931-.282-1.393c-.033-.168-.063-.332-.093-.5-.053-.286-.1-.574-.152-.863,0-.015-.005-.032-.01-.047l-1.895-.967a.679.679,0,0,1,.007.091c.038.429.075.865.126,1.3s.106.89.172,1.341c.056.38.116.757.179,1.138.013.075.028.154.041.228.087.471.181.926.282,1.351.113.482.235.934.357,1.356.082.276.163.542.246.794.072.212.15.425.225.635.181.493.382.971.6,1.438l1.915.97c-.1-.352-.2-.71-.3-1.073C9.508,19.941,9.482,19.84,9.453,19.735Z\", style: {\n fill: \"url(#d)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M7.947,20.208a14.86,14.86,0,0,0,.881,1.627c.011.016.022.038.033.054a3.864,3.864,0,0,0-1.46-.113,5.37,5.37,0,0,1,2.353,1.371,2.468,2.468,0,0,1-1.112.558,2.46,2.46,0,0,0,1.22-.108,3,3,0,0,0-.742,1.447,3.084,3.084,0,0,1,1.205-1.276c.575,1.906,1.267,3.972,2.034,6.14a.577.577,0,0,0,.09-.541c-.141-.389-1.054-2.968-2.095-6.468-.03-.1-.056-.2-.089-.3-.009-.029-.016-.054-.025-.084q-.16-.55-.326-1.132c-.024-.09-.05-.174-.074-.265l0,0-1.915-.97A.357.357,0,0,0,7.947,20.208Z\", style: {\n fill: \"url(#e)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M7.806,11.476c.011.064.023.121.034.186.037.19.07.382.109.575.04.211.084.426.126.647.021.111.042.222.066.336.069.34.144.688.221,1.047.1.441.2.894.311,1.366.1.446.218.911.336,1.384.115.451.231.913.359,1.391.112.423.233.858.355,1.3,0,.021.014.044.018.065.123.439.252.892.386,1.353a.069.069,0,0,0,.009.029l.578-.532c-.015,0-.026.013-.045.021a5.547,5.547,0,0,0,1.408-3.114,7.47,7.47,0,0,0-.018-1.737,11.925,11.925,0,0,0-.278-1.486c-.114-.458-.254-.944-.425-1.456a2.891,2.891,0,0,1-.441.637l-.1.11c-.033.037-.07.069-.107.108h0a3.377,3.377,0,0,0,.416-2.507,3.176,3.176,0,0,1-.572.991c-.038.046-.083.091-.128.136-.012.009-.021.021-.036.033h0a3.52,3.52,0,0,0,.371-.814,1.509,1.509,0,0,0,.043-.17c.02-.087.034-.175.047-.263.005-.058.014-.112.019-.171a2.461,2.461,0,0,0,0-.413c0-.046,0-.087-.011-.13-.011-.064-.019-.124-.031-.182-.046-.267-.1-.5-.149-.7-.026-.1-.05-.192-.076-.275-.012-.033-.018-.065-.03-.1-.031-.091-.056-.175-.084-.245a2.452,2.452,0,0,0-.105-.242h0a.532.532,0,0,1-.042.115,3.749,3.749,0,0,1-.65.934l.533-.487L9.687,9.7a.018.018,0,0,0-.009.013A1.082,1.082,0,0,0,9.6,9.8c0-.007.009-.013.01-.019L7.79,11.446C7.805,11.459,7.807,11.469,7.806,11.476Z\", style: {\n fill: \"url(#f)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M7.1,5.845c.022.4.057.848.1,1.344a.485.485,0,0,0,.009.078c.041.433.094.9.162,1.409.058.439.122.9.2,1.4.065.433.145.886.227,1.367l1.82-1.667a2.987,2.987,0,0,0,.457-1.647c0-.143-.011-.293-.022-.447A14.324,14.324,0,0,0,9.895,6.25a12.46,12.46,0,0,0-.271-1.287,6.825,6.825,0,0,0-.209-.653c-.065-.163-.133-.312-.2-.454A28.8,28.8,0,0,1,7.1,5.845Z\", style: {\n fill: \"url(#g)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M10.827,13.6c-.033.037-.07.069-.107.108h0A1.391,1.391,0,0,1,10.827,13.6Z\", style: {\n fill: \"#be202e\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M10.827,13.6c-.033.037-.07.069-.107.108h0A1.391,1.391,0,0,1,10.827,13.6Z\", style: {\n fill: \"#be202e\",\n opacity: 0.3499999940395355,\n isolation: \"isolate\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M10.827,13.6c-.033.037-.07.069-.107.108h0A1.391,1.391,0,0,1,10.827,13.6Z\", style: {\n fill: \"url(#h)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M10.4,12.359c.012-.009.021-.021.036-.033-.012.009-.021.021-.036.033Z\", style: {\n fill: \"#be202e\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M10.4,12.359c.012-.009.021-.021.036-.033-.012.009-.021.021-.036.033Z\", style: {\n fill: \"#be202e\",\n opacity: 0.3499999940395355,\n isolation: \"isolate\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M10.4,12.359c.012-.009.021-.021.036-.033-.012.009-.021.021-.036.033Z\", style: {\n fill: \"url(#i)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M24.627,2.891A10.789,10.789,0,0,0,22.2,4.713l.6,1.69a20.278,20.278,0,0,1,2.1-1.965c.051-.042.082-.066.082-.066-.026.024-.056.042-.082.066a18.028,18.028,0,0,0-2,2.013,31.432,31.432,0,0,0,3.288.072,3.44,3.44,0,0,0,.071-2.639S25.647,2.47,24.627,2.891Z\", style: {\n fill: \"url(#j)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M21.9,11.627a.02.02,0,0,0,.017,0l-.121-.007c-.006,0-.017,0-.023.008Z\", style: {\n fill: \"none\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M20.645,14.308c-.068.007-.14.007-.212.008C20.506,14.315,20.578,14.315,20.645,14.308Z\", style: {\n fill: \"none\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M13.958,19.763c.014-.02.023-.046.037-.067.255-.456.5-.9.75-1.331.276-.481.55-.95.816-1.4.28-.474.559-.938.829-1.381.285-.468.561-.915.835-1.346.223-.35.439-.689.654-1.018.072-.111.143-.217.214-.323.142-.212.278-.419.413-.621.127-.186.248-.368.369-.55.042-.06.084-.121.12-.176l.021-.03-.1,0-.058-.169c-.008.015-.021.03-.029.046-.189.266-.378.538-.563.815-.106.156-.213.318-.325.479-.3.444-.591.889-.879,1.346s-.584.918-.867,1.375-.554.905-.826,1.359-.537.9-.8,1.352c-.274.47-.542.935-.8,1.4-.059.1-.119.21-.173.313-.21.374-.413.738-.611,1.1l.093.274.116.006a.078.078,0,0,0,.016-.031C13.452,20.681,13.709,20.214,13.958,19.763Z\", style: {\n fill: \"none\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M19.9,15.646c-.112.006-.223.006-.334.006h0c.055,0,.116,0,.172,0A1.371,1.371,0,0,0,19.9,15.646Z\", style: {\n fill: \"#be202e\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M19.9,15.646c-.112.006-.223.006-.334.006h0c.055,0,.116,0,.172,0A1.371,1.371,0,0,0,19.9,15.646Z\", style: {\n fill: \"#be202e\",\n opacity: 0.3499999940395355,\n isolation: \"isolate\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M20.384,14.314h0c.016,0,.033,0,.05,0,.072,0,.144,0,.212-.008-.084,0-.172,0-.261.006Z\", style: {\n fill: \"#be202e\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M20.384,14.314h0c.016,0,.033,0,.05,0,.072,0,.144,0,.212-.008-.084,0-.172,0-.261.006Z\", style: {\n fill: \"#be202e\",\n opacity: 0.3499999940395355,\n isolation: \"isolate\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M19.751,10.091q.486-.652.968-1.272c.334-.428.672-.838,1.013-1.237.02-.025.041-.049.06-.069.334-.389.666-.761,1-1.117l-.6-1.685c-.071.067-.147.134-.224.205-.283.263-.579.547-.884.851-.344.343-.7.707-1.064,1.091-.335.356-.678.732-1.023,1.119-.293.334-.587.673-.882,1.024l-.034.039.767,2.291C19.153,10.918,19.452,10.5,19.751,10.091Z\", style: {\n fill: \"url(#k)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M13.063,21.4c-.2.37-.4.75-.605,1.142,0,.005-.007.01-.008.015-.03.057-.06.108-.085.165-.138.262-.256.5-.534,1.036a2.18,2.18,0,0,1,.673,1.08,1.768,1.768,0,0,0-.388-1.282c1.558.3,2.973.1,3.836-.945.075-.094.15-.194.221-.3a1.524,1.524,0,0,1-1.532.318h0A4.26,4.26,0,0,0,17.017,21.2c.141-.168.284-.352.431-.558a3.456,3.456,0,0,1-3.383.574l-.888-.031C13.139,21.261,13.1,21.328,13.063,21.4Z\", style: {\n fill: \"url(#l)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M13.758,19.5c.262-.461.529-.926.8-1.4.26-.45.525-.9.8-1.352s.549-.906.826-1.359.573-.919.867-1.375.587-.9.879-1.346c.107-.162.213-.318.325-.479.184-.272.374-.544.563-.815.008-.015.021-.03.029-.046l-.757-2.284a.768.768,0,0,1-.067.079c-.31.376-.626.756-.934,1.149s-.622.8-.927,1.217c-.257.35-.508.7-.76,1.058-.049.07-.1.146-.148.217-.3.449-.591.889-.847,1.312-.292.478-.554.939-.789,1.375-.153.288-.3.566-.433.835-.111.228-.217.461-.323.69-.246.54-.464,1.085-.661,1.633l.771,2.3c.2-.365.406-.728.611-1.1C13.638,19.71,13.7,19.608,13.758,19.5Z\", style: {\n fill: \"url(#m)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M12.17,18.686a16.808,16.808,0,0,0-.583,2.01c0,.022-.013.048-.016.07a4.37,4.37,0,0,0-1.086-1.251,6.074,6.074,0,0,1,.805,2.973,2.792,2.792,0,0,1-1.339-.435,2.782,2.782,0,0,0,1.068.883,3.4,3.4,0,0,0-1.747.575,3.488,3.488,0,0,1,1.984-.069C10.2,25.432,9.12,27.645,8.015,30a.652.652,0,0,0,.5-.364c.2-.426,1.51-3.226,3.453-6.872.054-.1.113-.205.168-.314.016-.031.03-.057.046-.087q.308-.57.637-1.17c.052-.092.1-.18.151-.272v-.005l-.771-2.3A.4.4,0,0,0,12.17,18.686Z\", style: {\n fill: \"url(#n)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M18.994,11.544c-.042.06-.078.116-.12.176-.121.182-.247.363-.369.55s-.271.409-.413.621c-.071.106-.142.212-.214.323-.215.329-.431.669-.654,1.018-.274.431-.55.878-.835,1.346-.27.443-.549.906-.829,1.381-.266.454-.539.919-.816,1.4-.246.43-.494.875-.75,1.331-.014.02-.023.046-.037.067-.249.451-.506.918-.765,1.4a.078.078,0,0,0-.016.031l.888.031c-.015-.008-.032-.01-.053-.019a6.274,6.274,0,0,0,3.607-1.389A8.449,8.449,0,0,0,18.986,18.4a13.487,13.487,0,0,0,.956-1.417c.272-.459.546-.962.815-1.51a3.269,3.269,0,0,1-.861.162l-.168.009c-.056,0-.111,0-.172,0h0a3.82,3.82,0,0,0,2.326-1.688,3.592,3.592,0,0,1-1.248.344c-.068.007-.14.007-.212.008-.016,0-.033,0-.055,0h0a3.981,3.981,0,0,0,.945-.36,1.707,1.707,0,0,0,.17-.1c.086-.054.166-.114.247-.174.051-.042.1-.08.151-.122a2.784,2.784,0,0,0,.326-.335c.034-.039.066-.073.094-.114.042-.06.083-.115.119-.171.175-.251.32-.48.439-.684.059-.1.112-.194.158-.282.016-.036.037-.067.054-.1.048-.1.094-.186.127-.264a2.773,2.773,0,0,0,.107-.278h0a.6.6,0,0,1-.125.059,4.24,4.24,0,0,1-1.265.236l.816.031-.816-.031a.02.02,0,0,0-.017,0,1.224,1.224,0,0,0-.128,0c.006,0,.017,0,.023-.008l-2.79-.1C19.007,11.529,19,11.539,18.994,11.544Z\", style: {\n fill: \"url(#o)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M22.9,6.452c-.3.339-.628.728-.986,1.164a.548.548,0,0,0-.055.07c-.311.381-.638.8-.989,1.263-.3.4-.62.824-.954,1.29-.292.4-.587.829-.9,1.281l2.79.1a3.379,3.379,0,0,0,1.677-.962c.111-.117.224-.244.338-.377A16.2,16.2,0,0,0,24.828,9a14.093,14.093,0,0,0,.8-1.251,7.72,7.72,0,0,0,.351-.691c.077-.183.141-.356.2-.525A32.58,32.58,0,0,1,22.9,6.452Z\", style: {\n fill: \"url(#p)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M19.738,15.655c-.056,0-.111,0-.172,0h0A1.573,1.573,0,0,1,19.738,15.655Z\", style: {\n fill: \"#be202e\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M19.738,15.655c-.056,0-.111,0-.172,0h0A1.573,1.573,0,0,1,19.738,15.655Z\", style: {\n fill: \"#be202e\",\n opacity: 0.3499999940395355,\n isolation: \"isolate\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M19.738,15.655c-.056,0-.111,0-.172,0h0A1.573,1.573,0,0,1,19.738,15.655Z\", style: {\n fill: \"url(#q)\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M20.378,14.313c.016,0,.033,0,.055,0-.016,0-.033,0-.055,0Z\", style: {\n fill: \"#be202e\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M20.378,14.313c.016,0,.033,0,.055,0-.016,0-.033,0-.055,0Z\", style: {\n fill: \"#be202e\",\n opacity: 0.3499999940395355,\n isolation: \"isolate\"\n} }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M20.378,14.313c.016,0,.033,0,.055,0-.016,0-.033,0-.055,0Z\", style: {\n fill: \"url(#r)\"\n} }));\nconst ForwardRef = forwardRef(SvgMaven);\nexport default ForwardRef;\n"],"names":["SvgMaven","title","titleId","props","ref","React","ForwardRef","forwardRef"],"mappings":"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"}
@@ -1,125 +0,0 @@
1
- import { b0 as e, b1 as s, b2 as n, an as r, E as t, A as p, ak as i, al as d, f as u, B as l, C as g, ax as m, aw as C, m as S, j as c, ay as M, aG as D, aB as T, az as w, aC as P, aA as h, aD as b, aE as I, aF as L, h as A, aW as v, D as k, ah as y, ar as G, as as H, at as x, aH as B, aI as E, aJ as R, aN as f, aK as K, aL as U, aP as z, aM as N, aT as O, aU as W, aV as _, aQ as q, aS as F, aR as V, aO as j, au as J, R as Q, af as X, z as Y, G as Z, H as $, aq as aa, I as oa, K as ea, ao as sa, ap as na, q as ra, V as ta, ag as pa, s as ia, L as da, aZ as ua, aX as la, M as ga, Q as ma, aa as Ca, ad as Sa, ab as ca, ae as Ma, ac as Da, P as Ta, u as wa, X as Pa, av as ha, g as ba, aj as Ia, Y as La, $ as Aa, Z as va, _ as ka, a2 as ya, a3 as Ga, a4 as Ha, a0 as xa, a1 as Ba, d as Ea, e as Ra, S as fa, l as Ka, ai as Ua, J as za, F as Na, k as Oa, T as Wa, a_ as _a, a$ as qa, a5 as Fa, a7 as Va, a9 as ja, a8 as Ja, a6 as Qa, U as Xa, v as Ya, W as Za, b as $a, c as ao, o as oo, n as eo, i as so, a as no, p as ro, O as to, r as po, N as io, am as uo, aY as lo, w as go, x as mo, y as Co, b3 as So } from "./index-C9bJtuJ5.mjs";
2
- export {
3
- e as AIChatContainer,
4
- s as AIChatMessage,
5
- n as AIChatMessageComposer,
6
- r as ActionBar,
7
- t as Alert,
8
- p as AnimatedLogo,
9
- i as AppLayout,
10
- d as AppLayoutProvider,
11
- u as Badge,
12
- l as Button,
13
- g as Card,
14
- m as CodeEditor,
15
- C as CodePlayground,
16
- S as CodeSnippet,
17
- c as Combobox,
18
- M as Command,
19
- D as CommandDialog,
20
- T as CommandEmpty,
21
- w as CommandGroup,
22
- P as CommandInput,
23
- h as CommandItem,
24
- b as CommandList,
25
- I as CommandSeparator,
26
- L as CommandShortcut,
27
- A as Container,
28
- v as ContextDropdown,
29
- k as DARK_THEME,
30
- y as Dialog,
31
- G as DragNDropArea,
32
- H as DragOverlay,
33
- x as Draggable,
34
- B as DropdownMenu,
35
- E as DropdownMenuCheckboxItem,
36
- R as DropdownMenuContent,
37
- f as DropdownMenuGroup,
38
- K as DropdownMenuItem,
39
- U as DropdownMenuLabel,
40
- z as DropdownMenuPortal,
41
- N as DropdownMenuRadioGroup,
42
- O as DropdownMenuRadioItem,
43
- W as DropdownMenuSeparator,
44
- _ as DropdownMenuShortcut,
45
- q as DropdownMenuSub,
46
- F as DropdownMenuSubContent,
47
- V as DropdownMenuSubTrigger,
48
- j as DropdownMenuTrigger,
49
- J as Droppable,
50
- Q as ExternalPill,
51
- X as Facepile,
52
- Y as GradientCircle,
53
- Z as Grid,
54
- $ as Heading,
55
- aa as HighlightedText,
56
- oa as Icon,
57
- ea as Input,
58
- sa as Key,
59
- na as KeyHint,
60
- ra as LIGHT_THEME,
61
- ta as LanguageIndicator,
62
- pa as Link,
63
- ia as LoggedInUserMenu,
64
- da as Logo,
65
- ua as Modal,
66
- la as ModalProvider,
67
- ga as MoonshineConfigProvider,
68
- ma as PageHeader,
69
- Ca as Popover,
70
- Sa as PopoverAnchor,
71
- ca as PopoverContent,
72
- Ma as PopoverPortal,
73
- Da as PopoverTrigger,
74
- Ta as Pre,
75
- wa as PromptInput,
76
- Pa as PullRequestLink,
77
- ha as ResizablePanel,
78
- ba as Score,
79
- Ia as SegmentedButton,
80
- La as Select,
81
- Aa as SelectContent,
82
- va as SelectGroup,
83
- ka as SelectItem,
84
- ya as SelectScrollDownButton,
85
- Ga as SelectScrollUpButton,
86
- Ha as SelectSeparator,
87
- xa as SelectTrigger,
88
- Ba as SelectValue,
89
- Ea as Separator,
90
- Ra as Skeleton,
91
- fa as Stack,
92
- Ka as Subnav,
93
- Ua as Switch,
94
- za as Table,
95
- Na as Tabs,
96
- Oa as TargetLanguageIcon,
97
- Wa as Text,
98
- _a as ThemeSwitcher,
99
- qa as Timeline,
100
- Fa as Tooltip,
101
- Va as TooltipContent,
102
- ja as TooltipPortal,
103
- Ja as TooltipProvider,
104
- Qa as TooltipTrigger,
105
- Xa as UserAvatar,
106
- Ya as Wizard,
107
- Za as WorkspaceSelector,
108
- $a as beta,
109
- ao as cn,
110
- oo as getMappedLanguage,
111
- eo as highlightCode,
112
- so as isGroupOf,
113
- no as isIconName,
114
- ro as isProgrammingLanguage,
115
- to as isSupportedLanguage,
116
- po as removeCodeHikeAnnotations,
117
- io as supportedLanguages,
118
- uo as useAppLayout,
119
- lo as useModal,
120
- go as useMoonshineConfig,
121
- mo as useMoonshineTheme,
122
- Co as useTailwindBreakpoint,
123
- So as useToolCallApproval
124
- };
125
- //# sourceMappingURL=moonshine.es.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"moonshine.es.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
@@ -1,11 +0,0 @@
1
- import * as e from "react";
2
- import { forwardRef as v } from "react";
3
- const m = ({
4
- title: h,
5
- titleId: r,
6
- ...t
7
- }, a) => /* @__PURE__ */ e.createElement("svg", { viewBox: "0 0 128 110", width: 16, height: 16, ref: a, "aria-labelledby": r, ...t }, h ? /* @__PURE__ */ e.createElement("title", { id: r }, h) : null, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M2 38.5h124v43.71H64v7.29H36.44v-7.29H2zm6.89 36.43h13.78V53.07h6.89v21.86h6.89V45.79H8.89zm34.44-29.14v36.42h13.78v-7.28h13.78V45.79zm13.78 7.29H64v14.56h-6.89zm20.67-7.29v29.14h13.78V53.07h6.89v21.86h6.89V53.07h6.89v21.86h6.89V45.79z" })), l = v(m);
8
- export {
9
- l as default
10
- };
11
- //# sourceMappingURL=npm-BWTcVvFH.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"npm-BWTcVvFH.mjs","sources":["../src/assets/icons/external/npm.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nconst SvgNpm = ({\n title,\n titleId,\n ...props\n}, ref) => /* @__PURE__ */ React.createElement(\"svg\", { viewBox: \"0 0 128 110\", width: 16, height: 16, ref, \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"path\", { fill: \"currentColor\", d: \"M2 38.5h124v43.71H64v7.29H36.44v-7.29H2zm6.89 36.43h13.78V53.07h6.89v21.86h6.89V45.79H8.89zm34.44-29.14v36.42h13.78v-7.28h13.78V45.79zm13.78 7.29H64v14.56h-6.89zm20.67-7.29v29.14h13.78V53.07h6.89v21.86h6.89V53.07h6.89v21.86h6.89V45.79z\" }));\nconst ForwardRef = forwardRef(SvgNpm);\nexport default ForwardRef;\n"],"names":["SvgNpm","title","titleId","props","ref","React","ForwardRef","forwardRef"],"mappings":";;AAEA,MAAMA,IAAS,CAAC;AAAA,EACd,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,GAAGC,MAAwB,gBAAAC,EAAM,cAAc,OAAO,EAAE,SAAS,eAAe,OAAO,IAAI,QAAQ,IAAI,KAAAD,GAAK,mBAAmBF,GAAS,GAAGC,KAASF,IAAwB,gBAAAI,EAAM,cAAc,SAAS,EAAE,IAAIH,EAAS,GAAED,CAAK,IAAI,MAAsB,gBAAAI,EAAM,cAAc,QAAQ,EAAE,MAAM,gBAAgB,GAAG,8OAA6O,CAAE,CAAC,GAC1hBC,IAAaC,EAAWP,CAAM;"}
@@ -1,17 +0,0 @@
1
- import { c as h } from "./createCustomLucideIcon-CatlpFc0.mjs";
2
- const o = [
3
- [
4
- "path",
5
- {
6
- d: "M2 38.5h124v43.71H64v7.29H36.44v-7.29H2zm6.89 36.43h13.78V53.07h6.89v21.86h6.89V45.79H8.89zm34.44-29.14v36.42h13.78v-7.28h13.78V45.79zm13.78 7.29H64v14.56h-6.89zm20.67-7.29v29.14h13.78V53.07h6.89v21.86h6.89V53.07h6.89v21.86h6.89V45.79z",
7
- key: "path"
8
- }
9
- ]
10
- ], t = h("npm", o, {
11
- viewBox: "0 0 128 128",
12
- fill: "currentColor"
13
- });
14
- export {
15
- t as default
16
- };
17
- //# sourceMappingURL=npm-BYcG5_q9.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"npm-BYcG5_q9.mjs","sources":["../src/components/Icon/customIcons/npm.ts"],"sourcesContent":["import { IconNode } from 'lucide-react'\nimport createCustomLucideIcon from './createCustomLucideIcon'\n\nconst iconNode: IconNode = [\n [\n 'path',\n {\n d: 'M2 38.5h124v43.71H64v7.29H36.44v-7.29H2zm6.89 36.43h13.78V53.07h6.89v21.86h6.89V45.79H8.89zm34.44-29.14v36.42h13.78v-7.28h13.78V45.79zm13.78 7.29H64v14.56h-6.89zm20.67-7.29v29.14h13.78V53.07h6.89v21.86h6.89V53.07h6.89v21.86h6.89V45.79z',\n key: 'path',\n },\n ],\n]\n\nconst icon = createCustomLucideIcon('npm', iconNode, {\n viewBox: '0 0 128 128',\n fill: 'currentColor',\n})\n\nexport { icon as default }\n"],"names":["iconNode","icon","createCustomLucideIcon"],"mappings":";AAGA,MAAMA,IAAqB;AAAA,EACzB;AAAA,IACE;AAAA,IACA;AAAA,MACE,GAAG;AAAA,MACH,KAAK;AAAA,IAAA;AAAA,EACP;AAEJ,GAEMC,IAAOC,EAAuB,OAAOF,GAAU;AAAA,EACnD,SAAS;AAAA,EACT,MAAM;AACR,CAAC;"}
@@ -1,11 +0,0 @@
1
- import * as e from "react";
2
- import { forwardRef as o } from "react";
3
- const l = ({
4
- title: r,
5
- titleId: t,
6
- ...a
7
- }, c) => /* @__PURE__ */ e.createElement("svg", { viewBox: "0 0 128 128", width: 16, height: 16, ref: c, "aria-labelledby": t, ...a }, r ? /* @__PURE__ */ e.createElement("title", { id: t }, r) : null, /* @__PURE__ */ e.createElement("path", { d: "M9.313 2.508c-3.356.43-6.32 2.418-7.958 5.344C.457 9.457.043 11.07.04 12.969c0 1.789.297 3.117 1.063 4.687 1.421 2.938 4.117 5.008 7.468 5.73.86.184 2.95.2 3.848.032 3.844-.723 6.926-3.375 8.168-7.02.422-1.222.508-1.824.508-3.398 0-1.531-.043-1.883-.418-3.094-1.063-3.492-3.887-6.21-7.406-7.125-1.176-.304-2.825-.418-3.957-.273zM56.5 25.531C42.586 26.72 30.95 36.625 27.602 50.125c-.422 1.688-.579 2.617-.864 5.031-.101.864-.152 38.29-.05 39.969.148 2.613.523 4.844 1.218 7.25 3.106 10.77 11.625 19.27 22.367 22.313 1.829.511 3.766.882 5.82 1.105 1.009.105 2.071.113 20.72.113 20.835 0 20.07.012 22.25-.289a32.469 32.469 0 0014.96-6.148c1.747-1.305 3.922-3.332 5.239-4.875 1.261-1.489 2.699-3.524 3.644-5.188 1.914-3.355 3.324-7.457 3.867-11.25.332-2.273.309-.824.332-21.781.02-13.656.008-19.71-.043-20.438-.468-7.023-3.007-13.374-7.55-18.874-.762-.926-3.082-3.243-4.012-4.012-4.656-3.856-9.867-6.25-15.688-7.2-2.48-.406-.769-.374-22.562-.39-15.938-.004-19.969.008-20.75.07zm-2.875 14.895c4.8.855 8.73 4.21 10.281 8.773.977 2.883.95 5.926-.07 8.77-.68 1.894-2 3.894-3.43 5.187-2.554 2.332-5.601 3.532-8.968 3.532-3.633 0-6.833-1.32-9.383-3.868-2.149-2.152-3.438-4.78-3.805-7.789-.102-.812-.086-2.5.031-3.343.824-6.008 5.57-10.633 11.657-11.376.792-.093 2.867-.03 3.687.114zM96.188 73.03c4.695.602 8.8 2.582 12.18 5.875 2.53 2.469 4.257 5.227 5.35 8.563.708 2.133.97 3.738 1.012 6.125.043 2.43-.16 4.125-.77 6.27-1.315 4.679-4.397 8.937-8.46 11.69-5.25 3.563-11.648 4.571-17.836 2.813-2.344-.66-5.14-2.097-7.102-3.64-5.164-4.079-8.132-10.172-8.124-16.715.007-7.282 3.773-14.051 10-17.942 2.8-1.757 5.968-2.808 9.437-3.132.855-.083 3.395-.024 4.313.093zm0 0", fill: "currentColor" })), f = o(l);
8
- export {
9
- f as default
10
- };
11
- //# sourceMappingURL=nuget-CV5HU1JR.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"nuget-CV5HU1JR.mjs","sources":["../src/assets/icons/external/nuget.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nconst SvgNuget = ({\n title,\n titleId,\n ...props\n}, ref) => /* @__PURE__ */ React.createElement(\"svg\", { viewBox: \"0 0 128 128\", width: 16, height: 16, ref, \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M9.313 2.508c-3.356.43-6.32 2.418-7.958 5.344C.457 9.457.043 11.07.04 12.969c0 1.789.297 3.117 1.063 4.687 1.421 2.938 4.117 5.008 7.468 5.73.86.184 2.95.2 3.848.032 3.844-.723 6.926-3.375 8.168-7.02.422-1.222.508-1.824.508-3.398 0-1.531-.043-1.883-.418-3.094-1.063-3.492-3.887-6.21-7.406-7.125-1.176-.304-2.825-.418-3.957-.273zM56.5 25.531C42.586 26.72 30.95 36.625 27.602 50.125c-.422 1.688-.579 2.617-.864 5.031-.101.864-.152 38.29-.05 39.969.148 2.613.523 4.844 1.218 7.25 3.106 10.77 11.625 19.27 22.367 22.313 1.829.511 3.766.882 5.82 1.105 1.009.105 2.071.113 20.72.113 20.835 0 20.07.012 22.25-.289a32.469 32.469 0 0014.96-6.148c1.747-1.305 3.922-3.332 5.239-4.875 1.261-1.489 2.699-3.524 3.644-5.188 1.914-3.355 3.324-7.457 3.867-11.25.332-2.273.309-.824.332-21.781.02-13.656.008-19.71-.043-20.438-.468-7.023-3.007-13.374-7.55-18.874-.762-.926-3.082-3.243-4.012-4.012-4.656-3.856-9.867-6.25-15.688-7.2-2.48-.406-.769-.374-22.562-.39-15.938-.004-19.969.008-20.75.07zm-2.875 14.895c4.8.855 8.73 4.21 10.281 8.773.977 2.883.95 5.926-.07 8.77-.68 1.894-2 3.894-3.43 5.187-2.554 2.332-5.601 3.532-8.968 3.532-3.633 0-6.833-1.32-9.383-3.868-2.149-2.152-3.438-4.78-3.805-7.789-.102-.812-.086-2.5.031-3.343.824-6.008 5.57-10.633 11.657-11.376.792-.093 2.867-.03 3.687.114zM96.188 73.03c4.695.602 8.8 2.582 12.18 5.875 2.53 2.469 4.257 5.227 5.35 8.563.708 2.133.97 3.738 1.012 6.125.043 2.43-.16 4.125-.77 6.27-1.315 4.679-4.397 8.937-8.46 11.69-5.25 3.563-11.648 4.571-17.836 2.813-2.344-.66-5.14-2.097-7.102-3.64-5.164-4.079-8.132-10.172-8.124-16.715.007-7.282 3.773-14.051 10-17.942 2.8-1.757 5.968-2.808 9.437-3.132.855-.083 3.395-.024 4.313.093zm0 0\", fill: \"currentColor\" }));\nconst ForwardRef = forwardRef(SvgNuget);\nexport default ForwardRef;\n"],"names":["SvgNuget","title","titleId","props","ref","React","ForwardRef","forwardRef"],"mappings":";;AAEA,MAAMA,IAAW,CAAC;AAAA,EAChB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,GAAGC,MAAwB,gBAAAC,EAAM,cAAc,OAAO,EAAE,SAAS,eAAe,OAAO,IAAI,QAAQ,IAAI,KAAAD,GAAK,mBAAmBF,GAAS,GAAGC,KAASF,IAAwB,gBAAAI,EAAM,cAAc,SAAS,EAAE,IAAIH,EAAS,GAAED,CAAK,IAAI,MAAsB,gBAAAI,EAAM,cAAc,QAAQ,EAAE,GAAG,2nDAA2nD,MAAM,eAAc,CAAE,CAAC,GACt6DC,IAAaC,EAAWP,CAAQ;"}