@speakeasy-api/moonshine 2.0.0-alpha.1 → 2.0.0-alpha.3

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/LICENSE +21 -0
  2. package/README.md +49 -23
  3. package/package.json +33 -50
  4. package/scripts/generate-utility-docs.js +324 -0
  5. package/src/assets/icons/external/github.svg +3 -0
  6. package/src/assets/icons/external/maven.svg +152 -0
  7. package/src/assets/icons/external/npm.svg +4 -0
  8. package/src/assets/icons/external/nuget.svg +5 -0
  9. package/src/assets/icons/external/packagist.svg +1 -0
  10. package/src/assets/icons/external/pypi.svg +182 -0
  11. package/src/assets/icons/external/rubygems.svg +14 -0
  12. package/src/assets/icons/external/terraform.svg +1 -0
  13. package/src/assets/icons/languages/csharp.svg +1 -0
  14. package/src/assets/icons/languages/go.svg +1 -0
  15. package/src/assets/icons/languages/java.svg +1 -0
  16. package/src/assets/icons/languages/json.svg +2 -0
  17. package/src/assets/icons/languages/php.svg +1 -0
  18. package/src/assets/icons/languages/postman.svg +3 -0
  19. package/src/assets/icons/languages/python.svg +1 -0
  20. package/src/assets/icons/languages/ruby.svg +1 -0
  21. package/src/assets/icons/languages/swift.svg +1 -0
  22. package/src/assets/icons/languages/terraform.svg +1 -0
  23. package/src/assets/icons/languages/typescript.svg +1 -0
  24. package/src/assets/icons/languages/unity.svg +1 -0
  25. package/src/base.css +12 -12
  26. package/src/components/AIChat/AIChatContainer.tsx +71 -0
  27. package/src/components/AIChat/AIChatMessage.tsx +135 -0
  28. package/src/components/AIChat/AIChatMessageComposer.tsx +175 -0
  29. package/src/components/AIChat/AIChatMessageList.tsx +34 -0
  30. package/src/components/AIChat/AIChatModelSelector.tsx +159 -0
  31. package/src/components/AIChat/componentsTypes.ts +36 -0
  32. package/src/components/AIChat/context.ts +15 -0
  33. package/src/components/AIChat/index.ts +12 -0
  34. package/src/components/AIChat/parts/AIChatMessageFilePart.tsx +129 -0
  35. package/src/components/AIChat/parts/AIChatMessageReasoningPart.tsx +23 -0
  36. package/src/components/AIChat/parts/AIChatMessageSourcePart.tsx +58 -0
  37. package/src/components/AIChat/parts/AIChatMessageTextPart.tsx +33 -0
  38. package/src/components/AIChat/parts/AIChatMessageToolInvocationPart.tsx +53 -0
  39. package/src/components/AIChat/parts/AIChatMessageToolPart.tsx +395 -0
  40. package/src/components/AIChat/parts/AIChatMessageToolResultPart.tsx +46 -0
  41. package/src/components/AIChat/toolCallApproval.ts +61 -0
  42. package/src/components/AIChat/types.ts +97 -0
  43. package/src/components/ActionBar/index.tsx +184 -0
  44. package/src/components/Alert/index.tsx +118 -0
  45. package/src/components/Alert/types.ts +12 -0
  46. package/src/components/AppLayout/context.tsx +31 -0
  47. package/src/components/AppLayout/index.tsx +550 -0
  48. package/src/components/AppLayout/provider.tsx +40 -0
  49. package/src/components/AppLayout/useAppLayoutKeys.ts +26 -0
  50. package/src/components/Badge/index.tsx +227 -0
  51. package/src/components/Button/index.tsx +531 -0
  52. package/src/components/Card/index.tsx +193 -0
  53. package/src/components/CodeEditorLayout/index.tsx +394 -0
  54. package/src/components/CodeEditorLayout/styles.module.css +8 -0
  55. package/src/components/CodeHighlight/Pre.tsx +63 -0
  56. package/src/components/CodePlayground/index.tsx +411 -0
  57. package/src/components/CodeSnippet/codeSnippet.css +97 -0
  58. package/src/components/CodeSnippet/index.tsx +224 -0
  59. package/src/components/Combobox/index.tsx +193 -0
  60. package/src/components/Command/index.tsx +152 -0
  61. package/src/components/Container/index.tsx +31 -0
  62. package/src/components/ContextDropdown/index.tsx +150 -0
  63. package/src/components/Dialog/index.tsx +123 -0
  64. package/src/components/DragNDrop/DragNDropArea.tsx +30 -0
  65. package/src/components/DragNDrop/DragOverlay.tsx +4 -0
  66. package/src/components/DragNDrop/Draggable.tsx +97 -0
  67. package/src/components/DragNDrop/Droppable.tsx +51 -0
  68. package/src/components/Dropdown/index.tsx +201 -0
  69. package/src/components/ExternalPill/index.tsx +58 -0
  70. package/src/components/Facepile/index.tsx +309 -0
  71. package/src/components/GradientCircle/gradientCircle.css +34 -0
  72. package/src/components/GradientCircle/index.tsx +143 -0
  73. package/src/components/Grid/index.tsx +150 -0
  74. package/src/components/Heading/index.tsx +54 -0
  75. package/src/components/HighlightedText/index.tsx +152 -0
  76. package/src/components/Icon/customIcons/createCustomLucideIcon.ts +25 -0
  77. package/src/components/Icon/customIcons/gems.ts +26 -0
  78. package/{dist/go-CiWl_aXI.mjs → src/components/Icon/customIcons/go.ts} +21 -19
  79. package/src/components/Icon/customIcons/index.ts +11 -0
  80. package/{dist/maven-DhmnGXoB.mjs → src/components/Icon/customIcons/maven.ts} +17 -15
  81. package/src/components/Icon/customIcons/npm.ts +19 -0
  82. package/{dist/nuget-5a2icRS2.mjs → src/components/Icon/customIcons/nuget.ts} +17 -15
  83. package/src/components/Icon/customIcons/packagist.ts +124 -0
  84. package/{dist/pypi-DsuRYjdK.mjs → src/components/Icon/customIcons/pypi.ts} +16 -14
  85. package/src/components/Icon/index.tsx +83 -0
  86. package/src/components/Icon/isIconName.ts +10 -0
  87. package/src/components/Icon/names.ts +14 -0
  88. package/src/components/IconButton/index.tsx +51 -0
  89. package/src/components/Input/index.tsx +98 -0
  90. package/src/components/KeyHint/index.tsx +118 -0
  91. package/src/components/LanguageIndicator/index.tsx +68 -0
  92. package/src/components/Link/index.tsx +153 -0
  93. package/src/components/LoggedInUserMenu/index.tsx +116 -0
  94. package/src/components/Logo/Animated.tsx +191 -0
  95. package/src/components/Logo/index.tsx +17 -0
  96. package/src/components/Logo/speakeasy-logo.riv +0 -0
  97. package/src/components/Logo/svgs/index.tsx +126 -0
  98. package/src/components/Modal/index.tsx +104 -0
  99. package/src/components/PageHeader/index.tsx +227 -0
  100. package/src/components/PageHeader/styles.module.css +27 -0
  101. package/src/components/Popover/index.tsx +35 -0
  102. package/src/components/PromptInput/index.tsx +372 -0
  103. package/src/components/PullRequestLink/index.tsx +64 -0
  104. package/src/components/ResizablePanel/index.tsx +119 -0
  105. package/src/components/Score/index.module.css +32 -0
  106. package/src/components/Score/index.tsx +268 -0
  107. package/src/components/ScrollArea/index.tsx +48 -0
  108. package/src/components/SegmentedButton/index.module.css +19 -0
  109. package/src/components/SegmentedButton/index.tsx +101 -0
  110. package/src/components/Select/index.tsx +159 -0
  111. package/src/components/Separator/index.tsx +23 -0
  112. package/src/components/Skeleton/index.tsx +61 -0
  113. package/src/components/Skeleton/skeleton.css +52 -0
  114. package/src/components/Stack/index.tsx +137 -0
  115. package/src/components/Subnav/index.tsx +315 -0
  116. package/src/components/Switch/index.tsx +29 -0
  117. package/src/components/Table/context/context.tsx +19 -0
  118. package/src/components/Table/context/tableProvider.tsx +39 -0
  119. package/src/components/Table/index.tsx +707 -0
  120. package/src/components/Table/styles.module.css +25 -0
  121. package/src/components/Tabs/index.tsx +87 -0
  122. package/src/components/TargetLanguageIcon/index.tsx +84 -0
  123. package/src/components/Text/index.tsx +59 -0
  124. package/src/components/ThemeSwitcher/index.tsx +118 -0
  125. package/src/components/Timeline/index.tsx +290 -0
  126. package/src/components/Tooltip/index.tsx +41 -0
  127. package/src/components/UserAvatar/index.tsx +87 -0
  128. package/src/components/UserAvatar/sizeMap.ts +12 -0
  129. package/src/components/Wizard/index.tsx +208 -0
  130. package/src/components/Wizard/types.ts +17 -0
  131. package/src/components/WorkspaceSelector/CreateOrg.tsx +95 -0
  132. package/src/components/WorkspaceSelector/CreateWorkspace.tsx +196 -0
  133. package/src/components/WorkspaceSelector/OrgList.tsx +115 -0
  134. package/src/components/WorkspaceSelector/OrgSelector.tsx +207 -0
  135. package/src/components/WorkspaceSelector/RecentWorkspaces.tsx +83 -0
  136. package/src/components/WorkspaceSelector/ScrollingList.tsx +84 -0
  137. package/src/components/WorkspaceSelector/SearchBox.tsx +40 -0
  138. package/src/components/WorkspaceSelector/WorkspaceItem.tsx +37 -0
  139. package/src/components/WorkspaceSelector/WorkspaceList.tsx +107 -0
  140. package/src/components/WorkspaceSelector/index.tsx +400 -0
  141. package/src/components/WorkspaceSelector/styles.css +74 -0
  142. package/src/components/__beta__/CLIWizard/index.tsx +357 -0
  143. package/src/components/__beta__/CLIWizard/terminal-command.tsx +108 -0
  144. package/src/components/__beta__/CLIWizard/terminal.tsx +83 -0
  145. package/src/components/__beta__/README.md +3 -0
  146. package/src/components/index.mdx +38 -0
  147. package/src/context/ConfigContext.tsx +43 -0
  148. package/src/context/ModalContext.tsx +118 -0
  149. package/src/context/theme.ts +1 -0
  150. package/src/hooks/useAppLayout.ts +10 -0
  151. package/src/hooks/useConfig.ts +10 -0
  152. package/src/hooks/useIsMounted.ts +13 -0
  153. package/src/hooks/useModal.tsx +10 -0
  154. package/src/hooks/useTailwindBreakpoint.ts +47 -0
  155. package/src/hooks/useTheme.ts +13 -0
  156. package/src/index.ts +234 -0
  157. package/src/lib/assert.ts +9 -0
  158. package/src/lib/codeUtils.ts +177 -0
  159. package/src/lib/debounce.ts +9 -0
  160. package/src/lib/responsiveMappers.ts +69 -0
  161. package/src/lib/responsiveUtils.ts +23 -0
  162. package/src/lib/storybookUtils.tsx +26 -0
  163. package/src/lib/typeUtils.ts +109 -0
  164. package/src/lib/utils.ts +85 -0
  165. package/src/styles/codeSyntax.css +59 -0
  166. package/src/styles/globals.css +51 -0
  167. package/src/types.ts +200 -0
  168. package/src/utilities.css +347 -6
  169. package/src/vite-env.d.ts +6 -0
  170. package/types/utilities.d.ts +43 -1
  171. package/dist/components/AIChat/AIChatContainer.d.ts +0 -25
  172. package/dist/components/AIChat/AIChatMessage.d.ts +0 -19
  173. package/dist/components/AIChat/AIChatMessageComposer.d.ts +0 -22
  174. package/dist/components/AIChat/AIChatMessageList.d.ts +0 -6
  175. package/dist/components/AIChat/AIChatModelSelector.d.ts +0 -14
  176. package/dist/components/AIChat/componentsTypes.d.ts +0 -11
  177. package/dist/components/AIChat/context.d.ts +0 -3
  178. package/dist/components/AIChat/index.d.ts +0 -12
  179. package/dist/components/AIChat/parts/AIChatMessageFilePart.d.ts +0 -7
  180. package/dist/components/AIChat/parts/AIChatMessageReasoningPart.d.ts +0 -5
  181. package/dist/components/AIChat/parts/AIChatMessageSourcePart.d.ts +0 -9
  182. package/dist/components/AIChat/parts/AIChatMessageTextPart.d.ts +0 -5
  183. package/dist/components/AIChat/parts/AIChatMessageToolInvocationPart.d.ts +0 -6
  184. package/dist/components/AIChat/parts/AIChatMessageToolPart.d.ts +0 -33
  185. package/dist/components/AIChat/parts/AIChatMessageToolResultPart.d.ts +0 -5
  186. package/dist/components/AIChat/toolCallApproval.d.ts +0 -15
  187. package/dist/components/AIChat/types.d.ts +0 -78
  188. package/dist/components/ActionBar/index.d.ts +0 -36
  189. package/dist/components/Alert/index.d.ts +0 -18
  190. package/dist/components/Alert/types.d.ts +0 -4
  191. package/dist/components/Badge/index.d.ts +0 -10
  192. package/dist/components/Button/index.d.ts +0 -11
  193. package/dist/components/Card/index.d.ts +0 -47
  194. package/dist/components/CodeEditorLayout/index.d.ts +0 -101
  195. package/dist/components/CodePlayground/index.d.ts +0 -108
  196. package/dist/components/CodePlayground/lineNumbers.d.ts +0 -2
  197. package/dist/components/CodePlayground/tokenTransitions.d.ts +0 -2
  198. package/dist/components/CodePlayground/wordWrap.d.ts +0 -2
  199. package/dist/components/CodeSnippet/index.d.ts +0 -50
  200. package/dist/components/Combobox/index.d.ts +0 -35
  201. package/dist/components/Command/index.d.ts +0 -80
  202. package/dist/components/Container/index.d.ts +0 -9
  203. package/dist/components/ContextDropdown/index.d.ts +0 -7
  204. package/dist/components/ContextDropdown/provider.d.ts +0 -22
  205. package/dist/components/ContextDropdown/useModal.d.ts +0 -11
  206. package/dist/components/Dialog/index.d.ts +0 -19
  207. package/dist/components/DragNDrop/DragNDropArea.d.ts +0 -8
  208. package/dist/components/DragNDrop/DragOverlay.d.ts +0 -1
  209. package/dist/components/DragNDrop/Draggable.d.ts +0 -29
  210. package/dist/components/DragNDrop/Droppable.d.ts +0 -28
  211. package/dist/components/Dropdown/index.d.ts +0 -27
  212. package/dist/components/ExternalPill/index.d.ts +0 -12
  213. package/dist/components/Facepile/index.d.ts +0 -16
  214. package/dist/components/GradientCircle/index.d.ts +0 -10
  215. package/dist/components/Grid/index.d.ts +0 -80
  216. package/dist/components/Heading/index.d.ts +0 -12
  217. package/dist/components/HighlightedText/index.d.ts +0 -19
  218. package/dist/components/Icon/customIcons/createCustomLucideIcon.d.ts +0 -3
  219. package/dist/components/Icon/customIcons/gems.d.ts +0 -2
  220. package/dist/components/Icon/customIcons/go.d.ts +0 -2
  221. package/dist/components/Icon/customIcons/index.d.ts +0 -10
  222. package/dist/components/Icon/customIcons/maven.d.ts +0 -2
  223. package/dist/components/Icon/customIcons/npm.d.ts +0 -2
  224. package/dist/components/Icon/customIcons/nuget.d.ts +0 -2
  225. package/dist/components/Icon/customIcons/packagist.d.ts +0 -2
  226. package/dist/components/Icon/customIcons/pypi.d.ts +0 -2
  227. package/dist/components/Icon/index.d.ts +0 -10
  228. package/dist/components/Icon/isIconName.d.ts +0 -2
  229. package/dist/components/Icon/names.d.ts +0 -6
  230. package/dist/components/Input/index.d.ts +0 -8
  231. package/dist/components/KeyHint/index.d.ts +0 -16
  232. package/dist/components/LanguageIndicator/index.d.ts +0 -7
  233. package/dist/components/Link/index.d.ts +0 -19
  234. package/dist/components/LoggedInUserMenu/index.d.ts +0 -17
  235. package/dist/components/Logo/Animated.d.ts +0 -7
  236. package/dist/components/Logo/index.d.ts +0 -7
  237. package/dist/components/Logo/svgs/index.d.ts +0 -6
  238. package/dist/components/Navbar/Slim.d.ts +0 -33
  239. package/dist/components/Navbar/index.d.ts +0 -15
  240. package/dist/components/PageHeader/index.d.ts +0 -45
  241. package/dist/components/Popover/index.d.ts +0 -8
  242. package/dist/components/PromptInput/index.d.ts +0 -55
  243. package/dist/components/PullRequestLink/index.d.ts +0 -10
  244. package/dist/components/ResizablePanel/index.d.ts +0 -26
  245. package/dist/components/Score/index.d.ts +0 -37
  246. package/dist/components/ScrollArea/index.d.ts +0 -5
  247. package/dist/components/Select/index.d.ts +0 -13
  248. package/dist/components/Separator/index.d.ts +0 -6
  249. package/dist/components/Skeleton/index.d.ts +0 -27
  250. package/dist/components/Stack/index.d.ts +0 -33
  251. package/dist/components/Subnav/index.d.ts +0 -12
  252. package/dist/components/Switch/index.d.ts +0 -4
  253. package/dist/components/Table/context/context.d.ts +0 -8
  254. package/dist/components/Table/context/tableProvider.d.ts +0 -6
  255. package/dist/components/Table/index.d.ts +0 -94
  256. package/dist/components/Tabs/index.d.ts +0 -21
  257. package/dist/components/TargetLanguageIcon/index.d.ts +0 -7
  258. package/dist/components/Text/index.d.ts +0 -19
  259. package/dist/components/ThemeSwitcher/index.d.ts +0 -5
  260. package/dist/components/Tooltip/index.d.ts +0 -8
  261. package/dist/components/UserAvatar/index.d.ts +0 -9
  262. package/dist/components/UserAvatar/sizeMap.d.ts +0 -3
  263. package/dist/components/Wizard/index.d.ts +0 -19
  264. package/dist/components/Wizard/types.d.ts +0 -15
  265. package/dist/components/WorkspaceSelector/CreateOrg.d.ts +0 -6
  266. package/dist/components/WorkspaceSelector/CreateWorkspace.d.ts +0 -17
  267. package/dist/components/WorkspaceSelector/OrgList.d.ts +0 -11
  268. package/dist/components/WorkspaceSelector/OrgSelector.d.ts +0 -13
  269. package/dist/components/WorkspaceSelector/RecentWorkspaces.d.ts +0 -11
  270. package/dist/components/WorkspaceSelector/ScrollingList.d.ts +0 -21
  271. package/dist/components/WorkspaceSelector/SearchBox.d.ts +0 -9
  272. package/dist/components/WorkspaceSelector/WorkspaceItem.d.ts +0 -9
  273. package/dist/components/WorkspaceSelector/WorkspaceList.d.ts +0 -10
  274. package/dist/components/WorkspaceSelector/index.d.ts +0 -34
  275. package/dist/components/__beta__/CLIWizard/index.d.ts +0 -21
  276. package/dist/components/__beta__/CLIWizard/terminal-command.d.ts +0 -19
  277. package/dist/components/__beta__/CLIWizard/terminal.d.ts +0 -26
  278. package/dist/context/ConfigContext.d.ts +0 -18
  279. package/dist/context/theme.d.ts +0 -1
  280. package/dist/createCustomLucideIcon-YlrRX5h9.mjs +0 -19
  281. package/dist/createCustomLucideIcon-YlrRX5h9.mjs.map +0 -1
  282. package/dist/gems-BcsO9cXq.mjs +0 -24
  283. package/dist/gems-BcsO9cXq.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-CiWl_aXI.mjs.map +0 -1
  287. package/dist/hooks/useConfig.d.ts +0 -2
  288. package/dist/hooks/useIsMounted.d.ts +0 -1
  289. package/dist/hooks/useTailwindBreakpoint.d.ts +0 -3
  290. package/dist/hooks/useTheme.d.ts +0 -6
  291. package/dist/index-COXZ9O-g.mjs +0 -50882
  292. package/dist/index-COXZ9O-g.mjs.map +0 -1
  293. package/dist/index.d.ts +0 -73
  294. package/dist/lib/assert.d.ts +0 -2
  295. package/dist/lib/codeUtils.d.ts +0 -35
  296. package/dist/lib/debounce.d.ts +0 -1
  297. package/dist/lib/responsiveMappers.d.ts +0 -10
  298. package/dist/lib/responsiveUtils.d.ts +0 -3
  299. package/dist/lib/storybookUtils.d.ts +0 -5
  300. package/dist/lib/typeUtils.d.ts +0 -24
  301. package/dist/lib/utils.d.ts +0 -23
  302. package/dist/lucide-icons-BDw0imyx.mjs +0 -28054
  303. package/dist/lucide-icons-BDw0imyx.mjs.map +0 -1
  304. package/dist/maven-DhmnGXoB.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 -114
  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-CvQ4GKW4.mjs +0 -17
  312. package/dist/npm-CvQ4GKW4.mjs.map +0 -1
  313. package/dist/nuget-5a2icRS2.mjs.map +0 -1
  314. package/dist/nuget-CV5HU1JR.mjs +0 -11
  315. package/dist/nuget-CV5HU1JR.mjs.map +0 -1
  316. package/dist/packagist-CET6q9hi.mjs +0 -118
  317. package/dist/packagist-CET6q9hi.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-DLh6kIJe.mjs +0 -11
  321. package/dist/pypi-DLh6kIJe.mjs.map +0 -1
  322. package/dist/pypi-DsuRYjdK.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 -80
@@ -1 +0,0 @@
1
- {"version":3,"file":"maven-DhmnGXoB.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":";;AAEA,MAAMA,IAAW,CAAC;AAAA,EAChB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,GAAGC,MAAwB,gBAAAC,EAAM,cAAc,OAAO,EAAE,OAAO,IAAI,QAAQ,IAAI,SAAS,aAAa,OAAO,8BAA8B,YAAY,gCAAgC,KAAAD,GAAK,mBAAmBF,GAAS,GAAGC,EAAK,GAAoB,gBAAAE,EAAM,cAAc,QAAQ,MAAsB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,SAAS,IAAI,UAAU,IAAI,WAAW,IAAI,UAAU,mBAAmB,0DAA0D,eAAe,iBAAkB,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,QAAQ,GAAG,WAAW,UAAS,CAAE,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,QAAQ,OAAO,WAAW,UAAW,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,QAAQ,OAAO,WAAW,WAAW,CAAC,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,UAAU,IAAI,WAAW,IAAI,UAAU,mBAAmB,0DAA0D,eAAe,iBAAgB,GAAoB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,QAAQ,OAAO,WAAW,UAAW,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,QAAQ,MAAM,WAAW,UAAW,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,QAAQ,OAAO,WAAW,UAAW,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,QAAQ,GAAG,WAAW,UAAW,CAAA,CAAC,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,SAAS,IAAI,WAAW,IAAI,SAAS,mBAAmB,0DAA0D,eAAe,iBAAkB,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,QAAQ,GAAG,WAAW,UAAS,CAAE,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,QAAQ,OAAO,WAAW,UAAS,CAAE,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,QAAQ,OAAO,WAAW,UAAW,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,QAAQ,OAAO,WAAW,UAAS,CAAE,CAAC,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,UAAU,IAAI,WAAW,IAAI,UAAU,WAAW,KAAI,CAAE,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,SAAS,IAAI,WAAW,IAAI,SAAS,WAAW,KAAM,CAAA,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,UAAU,IAAI,WAAW,IAAI,UAAU,WAAW,KAAM,CAAA,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,UAAU,IAAI,WAAW,IAAI,UAAU,WAAW,KAAM,CAAA,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,UAAU,IAAI,WAAW,IAAI,UAAU,WAAW,KAAI,CAAE,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,UAAU,IAAI,WAAW,IAAI,UAAU,WAAW,KAAI,CAAE,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,UAAU,IAAI,WAAW,IAAI,UAAU,mBAAmB,2DAA2D,WAAW,KAAI,CAAE,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,UAAU,IAAI,WAAW,IAAI,UAAU,mBAAmB,2DAA2D,WAAW,KAAI,CAAE,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,UAAU,IAAI,WAAW,IAAI,UAAU,mBAAmB,2DAA2D,WAAW,KAAM,CAAA,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,UAAU,IAAI,WAAW,IAAI,UAAU,mBAAmB,2DAA2D,WAAW,KAAI,CAAE,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,UAAU,IAAI,WAAW,IAAI,UAAU,mBAAmB,2DAA2D,WAAW,MAAM,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,QAAQ,IAAI,WAAW,IAAI,QAAQ,mBAAmB,2DAA2D,WAAW,KAAM,CAAA,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,UAAU,IAAI,WAAW,IAAI,UAAU,mBAAmB,2DAA2D,WAAW,KAAI,CAAE,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,SAAS,IAAI,WAAW,IAAI,SAAS,mBAAmB,2DAA2D,WAAW,KAAM,CAAA,GAAmB,gBAAAA,EAAM,cAAc,kBAAkB,EAAE,IAAI,KAAK,IAAI,WAAW,IAAI,UAAU,IAAI,WAAW,IAAI,UAAU,mBAAmB,2DAA2D,WAAW,KAAI,CAAE,CAAC,GAAGJ,MAAU,SAAyB,gBAAAI,EAAM,cAAc,SAAS,EAAE,IAAIH,EAAO,GAAI,iBAAiB,IAAID,IAAwB,gBAAAI,EAAM,cAAc,SAAS,EAAE,IAAIH,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAI,EAAM,cAAc,QAAQ,EAAE,GAAG,sPAAsP,OAAO;AAAA,EACznK,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,2EAA2E,OAAO;AAAA,EACvI,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,uFAAuF,OAAO;AAAA,EACnJ,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,knBAAknB,OAAO;AAAA,EAC9qB,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,6GAA6G,OAAO;AAAA,EACzK,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,6GAA6G,OAAO;AAAA,EACzK,MAAM;AAAA,EACN,SAAS;AAAA,EACT,WAAW;AACb,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,iGAAiG,OAAO;AAAA,EAC7J,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,iGAAiG,OAAO;AAAA,EAC7J,MAAM;AAAA,EACN,SAAS;AAAA,EACT,WAAW;AACb,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,mUAAmU,OAAO;AAAA,EAC/X,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,+YAA+Y,OAAO;AAAA,EAC3c,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,oiBAAoiB,OAAO;AAAA,EAChmB,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,sdAAsd,OAAO;AAAA,EAClhB,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,ooCAAooC,OAAO;AAAA,EAChsC,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,uVAAuV,OAAO;AAAA,EACnZ,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,4EAA4E,OAAO;AAAA,EACxI,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,4EAA4E,OAAO;AAAA,EACxI,MAAM;AAAA,EACN,SAAS;AAAA,EACT,WAAW;AACb,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,4EAA4E,OAAO;AAAA,EACxI,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,wEAAwE,OAAO;AAAA,EACpI,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,wEAAwE,OAAO;AAAA,EACpI,MAAM;AAAA,EACN,SAAS;AAAA,EACT,WAAW;AACb,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,wEAAwE,OAAO;AAAA,EACpI,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,4PAA4P,OAAO;AAAA,EACxT,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,wEAAwE,OAAO;AAAA,EACpI,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,wFAAwF,OAAO;AAAA,EACpJ,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,onBAAonB,OAAO;AAAA,EAChrB,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,kGAAkG,OAAO;AAAA,EAC9J,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,kGAAkG,OAAO;AAAA,EAC9J,MAAM;AAAA,EACN,SAAS;AAAA,EACT,WAAW;AACb,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,wFAAwF,OAAO;AAAA,EACpJ,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,wFAAwF,OAAO;AAAA,EACpJ,MAAM;AAAA,EACN,SAAS;AAAA,EACT,WAAW;AACb,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,6UAA6U,OAAO;AAAA,EACzY,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,kYAAkY,OAAO;AAAA,EAC9b,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,+hBAA+hB,OAAO;AAAA,EAC3lB,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,4cAA4c,OAAO;AAAA,EACxgB,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,ooCAAooC,OAAO;AAAA,EAChsC,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,sVAAsV,OAAO;AAAA,EAClZ,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,2EAA2E,OAAO;AAAA,EACvI,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,2EAA2E,OAAO;AAAA,EACvI,MAAM;AAAA,EACN,SAAS;AAAA,EACT,WAAW;AACb,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,2EAA2E,OAAO;AAAA,EACvI,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,6DAA6D,OAAO;AAAA,EACzH,MAAM;AACR,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,6DAA6D,OAAO;AAAA,EACzH,MAAM;AAAA,EACN,SAAS;AAAA,EACT,WAAW;AACb,EAAG,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,6DAA6D,OAAO;AAAA,EACzH,MAAM;AACR,EAAC,CAAE,CAAC,GACEC,IAAaC,EAAWP,CAAQ;"}
@@ -1,114 +0,0 @@
1
- import { aP as n, aQ as r, aR as t, ac as p, s as i, A as d, f as u, B as l, C as g, am as m, al as C, m as c, j as S, an as D, av as w, aq as M, ao as T, ar as h, ap as I, as as P, at as b, au as v, h as L, aL as A, aM as x, a9 as k, ag as G, ah as B, ai as y, aw as f, ax as H, ay as R, aC as E, az as N, aA as z, aE as K, aB as O, aI as U, aJ as q, aK as F, aF as W, aH as j, aG as J, aD as Q, aj as V, E as X, a7 as Y, r as Z, G as _, H as $, af as aa, I as oa, x as ea, ad as sa, ae as na, F as ra, a8 as ta, n as pa, L as ia, M as da, aa as ua, D as la, a2 as ga, a5 as ma, a3 as Ca, a6 as ca, a4 as Sa, P as Da, J as wa, ak as Ma, g as Ta, K as ha, Q as Ia, N as Pa, O as ba, X as va, Y as La, Z as Aa, R as xa, V as ka, d as Ga, e as Ba, S as ya, l as fa, ab as Ha, w as Ra, v as Ea, k as Na, T as za, aO as Ka, _ as Oa, a0 as Ua, a1 as qa, $ as Fa, U as Wa, o as ja, W as Ja, b as Qa, c as Va, i as Xa, a as Ya, z as Za, y as _a, aN as $a, u as ao, p as oo, q as eo, aS as so } from "./index-COXZ9O-g.mjs";
2
- import "react/jsx-runtime";
3
- import "react";
4
- export {
5
- n as AIChatContainer,
6
- r as AIChatMessage,
7
- t as AIChatMessageComposer,
8
- p as ActionBar,
9
- i as Alert,
10
- d as AnimatedLogo,
11
- u as Badge,
12
- l as Button,
13
- g as Card,
14
- m as CodeEditor,
15
- C as CodePlayground,
16
- c as CodeSnippet,
17
- S as Combobox,
18
- D as Command,
19
- w as CommandDialog,
20
- M as CommandEmpty,
21
- T as CommandGroup,
22
- h as CommandInput,
23
- I as CommandItem,
24
- P as CommandList,
25
- b as CommandSeparator,
26
- v as CommandShortcut,
27
- L as Container,
28
- A as ContextDropdown,
29
- x as ContextDropdownProvider,
30
- k as Dialog,
31
- G as DragNDropArea,
32
- B as DragOverlay,
33
- y as Draggable,
34
- f as DropdownMenu,
35
- H as DropdownMenuCheckboxItem,
36
- R as DropdownMenuContent,
37
- E as DropdownMenuGroup,
38
- N as DropdownMenuItem,
39
- z as DropdownMenuLabel,
40
- K as DropdownMenuPortal,
41
- O as DropdownMenuRadioGroup,
42
- U as DropdownMenuRadioItem,
43
- q as DropdownMenuSeparator,
44
- F as DropdownMenuShortcut,
45
- W as DropdownMenuSub,
46
- j as DropdownMenuSubContent,
47
- J as DropdownMenuSubTrigger,
48
- Q as DropdownMenuTrigger,
49
- V as Droppable,
50
- X as ExternalPill,
51
- Y as Facepile,
52
- Z as GradientCircle,
53
- _ 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 LanguageIndicator,
61
- ta as Link,
62
- pa as LoggedInUserMenu,
63
- ia as Logo,
64
- da as MoonshineConfigProvider,
65
- ua as Navbar,
66
- la as PageHeader,
67
- ga as Popover,
68
- ma as PopoverAnchor,
69
- Ca as PopoverContent,
70
- ca as PopoverPortal,
71
- Sa as PopoverTrigger,
72
- Da as PromptInput,
73
- wa as PullRequestLink,
74
- Ma as ResizablePanel,
75
- Ta as Score,
76
- ha as Select,
77
- Ia as SelectContent,
78
- Pa as SelectGroup,
79
- ba as SelectItem,
80
- va as SelectScrollDownButton,
81
- La as SelectScrollUpButton,
82
- Aa as SelectSeparator,
83
- xa as SelectTrigger,
84
- ka as SelectValue,
85
- Ga as Separator,
86
- Ba as Skeleton,
87
- ya as Stack,
88
- fa as Subnav,
89
- Ha as Switch,
90
- Ra as Table,
91
- Ea as Tabs,
92
- Na as TargetLanguageIcon,
93
- za as Text,
94
- Ka as ThemeSwitcher,
95
- Oa as Tooltip,
96
- Ua as TooltipContent,
97
- qa as TooltipProvider,
98
- Fa as TooltipTrigger,
99
- Wa as UserAvatar,
100
- ja as Wizard,
101
- Ja as WorkspaceSelector,
102
- Qa as beta,
103
- Va as cn,
104
- Xa as isGroupOf,
105
- Ya as isIconName,
106
- Za as isSupportedLanguage,
107
- _a as supportedLanguages,
108
- $a as useContextDropdown,
109
- ao as useMoonshineConfig,
110
- oo as useMoonshineTheme,
111
- eo as useTailwindBreakpoint,
112
- so as useToolCallApproval
113
- };
114
- //# 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-YlrRX5h9.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-CvQ4GKW4.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"npm-CvQ4GKW4.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 +0,0 @@
1
- {"version":3,"file":"nuget-5a2icRS2.mjs","sources":["../src/components/Icon/customIcons/nuget.ts"],"sourcesContent":["import { IconNode } from 'lucide-react'\nimport createCustomLucideIcon from './createCustomLucideIcon'\n\nconst iconNode: IconNode = [\n [\n 'path',\n {\n d: 'M15.3671 9.25328C12.352 9.63961 9.68902 11.4257 8.21738 14.0545C7.41059 15.4965 7.03863 16.9457 7.03594 18.6518C7.03594 20.2591 7.30277 21.4523 7.99098 22.8628C9.26766 25.5024 11.6898 27.3622 14.7005 28.0109C15.4732 28.1762 17.3509 28.1905 18.1577 28.0396C21.6113 27.39 24.3803 25.0074 25.4961 21.7326C25.8753 20.6347 25.9525 20.0938 25.9525 18.6797C25.9525 17.3042 25.9139 16.9879 25.577 15.8999C24.622 12.7626 22.0848 10.3206 18.9232 9.49855C17.8666 9.22543 16.3851 9.12301 15.368 9.25328H15.3671ZM57.7617 29.938C45.2609 31.0063 34.8066 39.9053 31.7987 52.0342C31.4195 53.5507 31.2785 54.3854 31.0224 56.5542C30.9317 57.3305 30.8859 90.9554 30.9775 92.4639C31.1105 94.8115 31.4474 96.8159 32.0718 98.9775C34.8623 108.654 42.5161 116.29 52.1671 119.024C53.8104 119.483 55.5507 119.817 57.3961 120.017C58.3026 120.111 59.2567 120.119 76.0117 120.119C94.7306 120.119 94.0433 120.129 96.0019 119.859C100.876 119.181 105.5 117.281 109.443 114.335C111.012 113.163 112.966 111.342 114.149 109.956C115.282 108.618 116.574 106.789 117.423 105.294C119.143 102.28 120.41 98.5948 120.898 95.187C121.196 93.1449 121.175 94.4467 121.196 75.6182C121.214 63.3491 121.203 57.91 121.157 57.2559C120.737 50.9462 118.456 45.2402 114.374 40.2988C113.689 39.4668 111.605 37.3852 110.77 36.6943C106.586 33.2299 101.905 31.079 96.6748 30.2255C94.4467 29.8607 95.9839 29.8895 76.4043 29.8751C62.085 29.8715 58.4634 29.8823 57.7617 29.938ZM55.1787 43.3202C59.4912 44.0884 63.0221 47.1027 64.4155 51.2022C65.2933 53.7924 65.2691 56.5264 64.3527 59.0815C63.7417 60.7832 62.5558 62.58 61.271 63.7417C58.9764 65.8369 56.2389 66.915 53.2138 66.915C49.9498 66.915 47.0748 65.7291 44.7838 63.4398C42.853 61.5064 41.695 59.1453 41.3652 56.4419C41.2736 55.7124 41.288 54.1958 41.3931 53.4384C42.1334 48.0406 46.3974 43.8854 51.8662 43.2178C52.5777 43.1343 54.442 43.1909 55.1787 43.3202ZM93.4189 72.6129C97.6371 73.1538 101.325 74.9327 104.362 77.8912C106.635 80.1095 108.187 82.5874 109.169 85.5845C109.805 87.5009 110.04 88.9429 110.078 91.0875C110.116 93.2707 109.934 94.7935 109.386 96.7207C108.204 100.924 105.436 104.75 101.785 107.223C97.0684 110.425 91.3202 111.33 85.7606 109.751C83.6547 109.158 81.1427 107.867 79.3799 106.48C74.7404 102.816 72.0738 97.3415 72.081 91.463C72.0873 84.9206 75.4708 78.8391 81.0654 75.3432C83.581 73.7647 86.4273 72.8204 89.5439 72.5293C90.3121 72.4548 92.5941 72.5078 93.4189 72.6129Z',\n key: 'path',\n },\n ],\n]\n\nconst icon = createCustomLucideIcon('nuget', 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,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;"}
@@ -1,118 +0,0 @@
1
- import { c as e } from "./createCustomLucideIcon-YlrRX5h9.mjs";
2
- const t = 0.8, o = 0.9, i = 1, r = [
3
- [
4
- "path",
5
- {
6
- d: "M47.3165 139.949V157.906C47.3145 158.112 47.2594 158.315 47.1564 158.493C47.0535 158.672 46.9062 158.822 46.7287 158.927C46.5512 159.033 46.3495 159.091 46.1431 159.096C45.9367 159.101 45.7325 159.052 45.5502 158.955L28.6382 149.99C28.4455 149.888 28.2843 149.735 28.1718 149.548C28.0594 149.361 28 149.147 28 148.929C28 148.71 28.0594 148.496 28.1718 148.309C28.2843 148.122 28.4455 147.969 28.6382 147.867L45.5502 138.889C45.7325 138.792 45.9367 138.743 46.1431 138.748C46.3495 138.753 46.5512 138.811 46.7287 138.917C46.9062 139.022 47.0535 139.172 47.1564 139.351C47.2594 139.53 47.3145 139.732 47.3165 139.939V139.949Z",
7
- key: "path-1",
8
- strokeLinejoin: "round",
9
- strokeLinecap: "round",
10
- strokeWidth: "0.127451",
11
- fillOpacity: `${o}`,
12
- strokeOpacity: `${o}`
13
- }
14
- ],
15
- [
16
- "path",
17
- {
18
- d: "M155.281 202.7V139.38L153.885 139.044L142.422 144.353V204.715H153.261C153.525 204.716 153.787 204.665 154.032 204.565C154.276 204.465 154.499 204.318 154.686 204.131C154.874 203.945 155.023 203.724 155.125 203.48C155.227 203.236 155.28 202.975 155.281 202.71V202.7Z",
19
- key: "path-2",
20
- strokeLinejoin: "round",
21
- strokeLinecap: "round",
22
- strokeWidth: "0.127451",
23
- fillOpacity: `${t}`,
24
- strokeOpacity: `${t}`
25
- }
26
- ],
27
- [
28
- "path",
29
- {
30
- d: "M226.929 133.251C227 133.461 218.337 117.303 218.337 117.303L206.458 130.861L226.929 133.251Z",
31
- key: "path-3",
32
- strokeLinejoin: "round",
33
- strokeLinecap: "round",
34
- strokeWidth: "0.127451",
35
- fillOpacity: `${o}`,
36
- strokeOpacity: `${o}`
37
- }
38
- ],
39
- [
40
- "path",
41
- {
42
- d: "M93.2366 73.6552H83.2637C82.6641 73.6551 82.0775 73.8303 81.5762 74.1591L47.1197 96.7715C46.6935 97.0511 46.3435 97.4324 46.1011 97.8809C45.8588 98.3293 45.7317 98.831 45.7313 99.3408V207.505C45.7313 208.321 46.0554 209.103 46.6322 209.68C47.2091 210.257 47.9914 210.581 48.8072 210.581H69.3305C70.1455 210.581 70.927 210.257 71.5035 209.681L92.8194 188.365L50.0827 123.924C49.6325 123.244 49.4708 122.413 49.6332 121.614C49.7956 120.814 50.2688 120.112 50.9488 119.662C51.0135 119.62 51.0791 119.58 51.1456 119.541L77.692 104.713C78.1695 104.446 78.5672 104.056 78.844 103.585C79.1208 103.113 79.2667 102.575 79.2667 102.028V90.2103C79.2635 89.4472 79.5441 88.7101 80.054 88.1422L93.2366 73.6552Z",
43
- key: "path-4",
44
- strokeLinejoin: "round",
45
- strokeLinecap: "round",
46
- strokeWidth: "0.127451",
47
- fillOpacity: `${t}`,
48
- strokeOpacity: `${t}`
49
- }
50
- ],
51
- [
52
- "path",
53
- {
54
- d: "M140.545 210.581H110.75C110.423 210.581 110.101 210.501 109.812 210.349C109.523 210.197 109.276 209.976 109.091 209.707L49.5001 122.979C49.1987 122.539 49.0847 121.996 49.1832 121.472C49.2816 120.947 49.5844 120.483 50.0249 120.182C50.0722 120.15 50.1203 120.12 50.1693 120.092L79.2588 103.844V142.07C79.2588 142.602 79.4698 143.113 79.8456 143.49C80.2214 143.867 80.7314 144.08 81.2639 144.083L142.414 144.345V208.707C142.414 209.204 142.216 209.681 141.865 210.032C141.513 210.384 141.037 210.581 140.54 210.581H140.545Z",
55
- key: "path-5",
56
- strokeLinejoin: "round",
57
- strokeLinecap: "round",
58
- strokeWidth: "0.127451",
59
- fillOpacity: `${o}`,
60
- strokeOpacity: `${o}`
61
- }
62
- ],
63
- [
64
- "path",
65
- {
66
- d: "M115.482 66.9393C115.273 66.9393 115.072 66.8563 114.925 66.7086C114.777 66.561 114.694 66.3607 114.694 66.1519V47.6941C114.693 47.5564 114.727 47.4207 114.795 47.3006C114.862 47.1805 114.959 47.0801 115.078 47.0094C115.196 46.9388 115.33 46.9004 115.468 46.898C115.606 46.8957 115.742 46.9294 115.862 46.996L150.242 65.4381C150.403 65.5184 150.531 65.651 150.605 65.8139C150.68 65.9768 150.697 66.1602 150.653 66.3339C150.609 66.5077 150.507 66.6613 150.365 66.7694C150.222 66.8776 150.046 66.9338 149.867 66.9288L115.482 66.9393Z",
67
- key: "path-6",
68
- strokeLinejoin: "round",
69
- strokeLinecap: "round",
70
- strokeWidth: "0.127451",
71
- fillOpacity: `${t}`,
72
- strokeOpacity: `${t}`
73
- }
74
- ],
75
- [
76
- "path",
77
- {
78
- d: "M218.358 117.271L192.858 114.103L179.846 126.483L180.424 129.821L191.809 147.618L218.358 117.271Z",
79
- key: "path-8",
80
- strokeLinejoin: "round",
81
- strokeLinecap: "round",
82
- strokeWidth: "0.127451",
83
- fillOpacity: `${t}`,
84
- strokeOpacity: `${t}`
85
- }
86
- ],
87
- [
88
- "path",
89
- {
90
- d: "M191.601 147.707L180.424 129.821L172.55 84.2659C172.396 83.3702 171.916 82.5629 171.204 81.9984L150.804 65.8291H111.561C111.087 65.8289 110.618 65.9282 110.185 66.1204L93.2366 73.6526L142.422 144.353L153.88 139.044L191.601 147.707Z",
91
- key: "path-9",
92
- strokeLinejoin: "round",
93
- strokeLinecap: "round",
94
- strokeWidth: "0.127451",
95
- fillOpacity: `${o}`,
96
- strokeOpacity: `${o}`
97
- }
98
- ],
99
- [
100
- "path",
101
- {
102
- d: "M79.2667 142.07V90.3415C79.2669 89.4933 79.5832 88.6755 80.1537 88.0478L93.2393 73.6526L142.422 144.353L81.2717 144.09C81.0074 144.089 80.7458 144.036 80.502 143.934C80.2582 143.832 80.0369 143.683 79.8507 143.495C79.6645 143.308 79.5171 143.085 79.4169 142.841C79.3167 142.596 79.2656 142.334 79.2667 142.07Z",
103
- key: "path-10",
104
- strokeLinejoin: "round",
105
- strokeLinecap: "round",
106
- strokeWidth: "0.127451",
107
- fillOpacity: `${i}`,
108
- strokeOpacity: `${i}`
109
- }
110
- ]
111
- ], n = e("packagist", r, {
112
- viewBox: "0 0 256 256",
113
- fill: "currentColor"
114
- });
115
- export {
116
- n as default
117
- };
118
- //# sourceMappingURL=packagist-CET6q9hi.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"packagist-CET6q9hi.mjs","sources":["../src/components/Icon/customIcons/packagist.ts"],"sourcesContent":["import { IconNode } from 'lucide-react'\nimport createCustomLucideIcon from './createCustomLucideIcon'\n\nconst dark = 0.8\nconst mid = 0.9\nconst light = 1\n\nconst iconNode: IconNode = [\n [\n 'path',\n {\n d: 'M47.3165 139.949V157.906C47.3145 158.112 47.2594 158.315 47.1564 158.493C47.0535 158.672 46.9062 158.822 46.7287 158.927C46.5512 159.033 46.3495 159.091 46.1431 159.096C45.9367 159.101 45.7325 159.052 45.5502 158.955L28.6382 149.99C28.4455 149.888 28.2843 149.735 28.1718 149.548C28.0594 149.361 28 149.147 28 148.929C28 148.71 28.0594 148.496 28.1718 148.309C28.2843 148.122 28.4455 147.969 28.6382 147.867L45.5502 138.889C45.7325 138.792 45.9367 138.743 46.1431 138.748C46.3495 138.753 46.5512 138.811 46.7287 138.917C46.9062 139.022 47.0535 139.172 47.1564 139.351C47.2594 139.53 47.3145 139.732 47.3165 139.939V139.949Z',\n key: 'path-1',\n strokeLinejoin: 'round',\n strokeLinecap: 'round',\n strokeWidth: '0.127451',\n fillOpacity: `${mid}`,\n strokeOpacity: `${mid}`,\n },\n ],\n [\n 'path',\n {\n d: 'M155.281 202.7V139.38L153.885 139.044L142.422 144.353V204.715H153.261C153.525 204.716 153.787 204.665 154.032 204.565C154.276 204.465 154.499 204.318 154.686 204.131C154.874 203.945 155.023 203.724 155.125 203.48C155.227 203.236 155.28 202.975 155.281 202.71V202.7Z',\n key: 'path-2',\n strokeLinejoin: 'round',\n strokeLinecap: 'round',\n strokeWidth: '0.127451',\n fillOpacity: `${dark}`,\n strokeOpacity: `${dark}`,\n },\n ],\n [\n 'path',\n {\n d: 'M226.929 133.251C227 133.461 218.337 117.303 218.337 117.303L206.458 130.861L226.929 133.251Z',\n key: 'path-3',\n strokeLinejoin: 'round',\n strokeLinecap: 'round',\n strokeWidth: '0.127451',\n fillOpacity: `${mid}`,\n strokeOpacity: `${mid}`,\n },\n ],\n [\n 'path',\n {\n d: 'M93.2366 73.6552H83.2637C82.6641 73.6551 82.0775 73.8303 81.5762 74.1591L47.1197 96.7715C46.6935 97.0511 46.3435 97.4324 46.1011 97.8809C45.8588 98.3293 45.7317 98.831 45.7313 99.3408V207.505C45.7313 208.321 46.0554 209.103 46.6322 209.68C47.2091 210.257 47.9914 210.581 48.8072 210.581H69.3305C70.1455 210.581 70.927 210.257 71.5035 209.681L92.8194 188.365L50.0827 123.924C49.6325 123.244 49.4708 122.413 49.6332 121.614C49.7956 120.814 50.2688 120.112 50.9488 119.662C51.0135 119.62 51.0791 119.58 51.1456 119.541L77.692 104.713C78.1695 104.446 78.5672 104.056 78.844 103.585C79.1208 103.113 79.2667 102.575 79.2667 102.028V90.2103C79.2635 89.4472 79.5441 88.7101 80.054 88.1422L93.2366 73.6552Z',\n key: 'path-4',\n strokeLinejoin: 'round',\n strokeLinecap: 'round',\n strokeWidth: '0.127451',\n fillOpacity: `${dark}`,\n strokeOpacity: `${dark}`,\n },\n ],\n [\n 'path',\n {\n d: 'M140.545 210.581H110.75C110.423 210.581 110.101 210.501 109.812 210.349C109.523 210.197 109.276 209.976 109.091 209.707L49.5001 122.979C49.1987 122.539 49.0847 121.996 49.1832 121.472C49.2816 120.947 49.5844 120.483 50.0249 120.182C50.0722 120.15 50.1203 120.12 50.1693 120.092L79.2588 103.844V142.07C79.2588 142.602 79.4698 143.113 79.8456 143.49C80.2214 143.867 80.7314 144.08 81.2639 144.083L142.414 144.345V208.707C142.414 209.204 142.216 209.681 141.865 210.032C141.513 210.384 141.037 210.581 140.54 210.581H140.545Z',\n key: 'path-5',\n strokeLinejoin: 'round',\n strokeLinecap: 'round',\n strokeWidth: '0.127451',\n fillOpacity: `${mid}`,\n strokeOpacity: `${mid}`,\n },\n ],\n [\n 'path',\n {\n d: 'M115.482 66.9393C115.273 66.9393 115.072 66.8563 114.925 66.7086C114.777 66.561 114.694 66.3607 114.694 66.1519V47.6941C114.693 47.5564 114.727 47.4207 114.795 47.3006C114.862 47.1805 114.959 47.0801 115.078 47.0094C115.196 46.9388 115.33 46.9004 115.468 46.898C115.606 46.8957 115.742 46.9294 115.862 46.996L150.242 65.4381C150.403 65.5184 150.531 65.651 150.605 65.8139C150.68 65.9768 150.697 66.1602 150.653 66.3339C150.609 66.5077 150.507 66.6613 150.365 66.7694C150.222 66.8776 150.046 66.9338 149.867 66.9288L115.482 66.9393Z',\n key: 'path-6',\n strokeLinejoin: 'round',\n strokeLinecap: 'round',\n strokeWidth: '0.127451',\n fillOpacity: `${dark}`,\n strokeOpacity: `${dark}`,\n },\n ],\n [\n 'path',\n {\n d: 'M218.358 117.271L192.858 114.103L179.846 126.483L180.424 129.821L191.809 147.618L218.358 117.271Z',\n key: 'path-8',\n strokeLinejoin: 'round',\n strokeLinecap: 'round',\n strokeWidth: '0.127451',\n fillOpacity: `${dark}`,\n strokeOpacity: `${dark}`,\n },\n ],\n [\n 'path',\n {\n d: 'M191.601 147.707L180.424 129.821L172.55 84.2659C172.396 83.3702 171.916 82.5629 171.204 81.9984L150.804 65.8291H111.561C111.087 65.8289 110.618 65.9282 110.185 66.1204L93.2366 73.6526L142.422 144.353L153.88 139.044L191.601 147.707Z',\n key: 'path-9',\n strokeLinejoin: 'round',\n strokeLinecap: 'round',\n strokeWidth: '0.127451',\n fillOpacity: `${mid}`,\n strokeOpacity: `${mid}`,\n },\n ],\n [\n 'path',\n {\n d: 'M79.2667 142.07V90.3415C79.2669 89.4933 79.5832 88.6755 80.1537 88.0478L93.2393 73.6526L142.422 144.353L81.2717 144.09C81.0074 144.089 80.7458 144.036 80.502 143.934C80.2582 143.832 80.0369 143.683 79.8507 143.495C79.6645 143.308 79.5171 143.085 79.4169 142.841C79.3167 142.596 79.2656 142.334 79.2667 142.07Z',\n key: 'path-10',\n strokeLinejoin: 'round',\n strokeLinecap: 'round',\n strokeWidth: '0.127451',\n fillOpacity: `${light}`,\n strokeOpacity: `${light}`,\n },\n ],\n]\n\nconst icon = createCustomLucideIcon('packagist', iconNode, {\n viewBox: '0 0 256 256',\n fill: 'currentColor',\n})\n\nexport { icon as default }\n"],"names":["dark","mid","light","iconNode","icon","createCustomLucideIcon"],"mappings":";AAGA,MAAMA,IAAO,KACPC,IAAM,KACNC,IAAQ,GAERC,IAAqB;AAAA,EACzB;AAAA,IACE;AAAA,IACA;AAAA,MACE,GAAG;AAAA,MACH,KAAK;AAAA,MACL,gBAAgB;AAAA,MAChB,eAAe;AAAA,MACf,aAAa;AAAA,MACb,aAAa,GAAGF,CAAG;AAAA,MACnB,eAAe,GAAGA,CAAG;AAAA,IAAA;AAAA,EAEzB;AAAA,EACA;AAAA,IACE;AAAA,IACA;AAAA,MACE,GAAG;AAAA,MACH,KAAK;AAAA,MACL,gBAAgB;AAAA,MAChB,eAAe;AAAA,MACf,aAAa;AAAA,MACb,aAAa,GAAGD,CAAI;AAAA,MACpB,eAAe,GAAGA,CAAI;AAAA,IAAA;AAAA,EAE1B;AAAA,EACA;AAAA,IACE;AAAA,IACA;AAAA,MACE,GAAG;AAAA,MACH,KAAK;AAAA,MACL,gBAAgB;AAAA,MAChB,eAAe;AAAA,MACf,aAAa;AAAA,MACb,aAAa,GAAGC,CAAG;AAAA,MACnB,eAAe,GAAGA,CAAG;AAAA,IAAA;AAAA,EAEzB;AAAA,EACA;AAAA,IACE;AAAA,IACA;AAAA,MACE,GAAG;AAAA,MACH,KAAK;AAAA,MACL,gBAAgB;AAAA,MAChB,eAAe;AAAA,MACf,aAAa;AAAA,MACb,aAAa,GAAGD,CAAI;AAAA,MACpB,eAAe,GAAGA,CAAI;AAAA,IAAA;AAAA,EAE1B;AAAA,EACA;AAAA,IACE;AAAA,IACA;AAAA,MACE,GAAG;AAAA,MACH,KAAK;AAAA,MACL,gBAAgB;AAAA,MAChB,eAAe;AAAA,MACf,aAAa;AAAA,MACb,aAAa,GAAGC,CAAG;AAAA,MACnB,eAAe,GAAGA,CAAG;AAAA,IAAA;AAAA,EAEzB;AAAA,EACA;AAAA,IACE;AAAA,IACA;AAAA,MACE,GAAG;AAAA,MACH,KAAK;AAAA,MACL,gBAAgB;AAAA,MAChB,eAAe;AAAA,MACf,aAAa;AAAA,MACb,aAAa,GAAGD,CAAI;AAAA,MACpB,eAAe,GAAGA,CAAI;AAAA,IAAA;AAAA,EAE1B;AAAA,EACA;AAAA,IACE;AAAA,IACA;AAAA,MACE,GAAG;AAAA,MACH,KAAK;AAAA,MACL,gBAAgB;AAAA,MAChB,eAAe;AAAA,MACf,aAAa;AAAA,MACb,aAAa,GAAGA,CAAI;AAAA,MACpB,eAAe,GAAGA,CAAI;AAAA,IAAA;AAAA,EAE1B;AAAA,EACA;AAAA,IACE;AAAA,IACA;AAAA,MACE,GAAG;AAAA,MACH,KAAK;AAAA,MACL,gBAAgB;AAAA,MAChB,eAAe;AAAA,MACf,aAAa;AAAA,MACb,aAAa,GAAGC,CAAG;AAAA,MACnB,eAAe,GAAGA,CAAG;AAAA,IAAA;AAAA,EAEzB;AAAA,EACA;AAAA,IACE;AAAA,IACA;AAAA,MACE,GAAG;AAAA,MACH,KAAK;AAAA,MACL,gBAAgB;AAAA,MAChB,eAAe;AAAA,MACf,aAAa;AAAA,MACb,aAAa,GAAGC,CAAK;AAAA,MACrB,eAAe,GAAGA,CAAK;AAAA,IAAA;AAAA,EACzB;AAEJ,GAEME,IAAOC,EAAuB,aAAaF,GAAU;AAAA,EACzD,SAAS;AAAA,EACT,MAAM;AACR,CAAC;"}
@@ -1,11 +0,0 @@
1
- import * as e from "react";
2
- import { forwardRef as c } from "react";
3
- const o = ({
4
- title: t,
5
- titleId: a,
6
- ...l
7
- }, r) => /* @__PURE__ */ e.createElement("svg", { height: 16, viewBox: "3.01810963 0 758.25189037 627.7911721", width: 16, xmlns: "http://www.w3.org/2000/svg", ref: r, "aria-labelledby": a, ...l }, t ? /* @__PURE__ */ e.createElement("title", { id: a }, t) : null, /* @__PURE__ */ e.createElement("g", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 6.04 }, /* @__PURE__ */ e.createElement("path", { d: "m76.62 357.52v68.42a4.58 4.58 0 0 1 -6.73 4l-64.44-34.16a4.58 4.58 0 0 1 0-8.09l64.44-34.21a4.58 4.58 0 0 1 6.73 4z", fill: "#e1743f", stroke: "#e1743f" }), /* @__PURE__ */ e.createElement("path", { d: "m488 596.62v-241.27l-5.32-1.28-43.68 20.23v230h41.3a7.67 7.67 0 0 0 7.7-7.64z", fill: "#c25934", stroke: "#c25934" }), /* @__PURE__ */ e.createElement("path", { d: "m761 332c.27.8-32.74-60.77-32.74-60.77l-45.26 51.66z", fill: "#e1743f", stroke: "#e1743f" }), /* @__PURE__ */ e.createElement("path", { d: "m251.59 104.92h-38a11.72 11.72 0 0 0 -6.43 1.92l-131.29 86.16a11.72 11.72 0 0 0 -5.29 9.79v412.14a11.72 11.72 0 0 0 11.72 11.72h78.2a11.72 11.72 0 0 0 8.28-3.43l81.22-81.22-162.84-245.54a11.72 11.72 0 0 1 3.3-16.24q.37-.24.75-.46l101.15-56.5a11.72 11.72 0 0 0 6-10.23v-45.03a11.72 11.72 0 0 1 3-7.88z", fill: "#c25934", stroke: "#c25934" }), /* @__PURE__ */ e.createElement("path", { d: "m431.85 626.65h-113.53a7.67 7.67 0 0 1 -6.32-3.33l-227.06-330.46a7.67 7.67 0 0 1 2-10.66q.27-.18.55-.34l110.84-61.91v145.65a7.67 7.67 0 0 0 7.64 7.67l233 1v245.24a7.14 7.14 0 0 1 -7.14 7.14z", fill: "#e1743f", stroke: "#e1743f" })), /* @__PURE__ */ e.createElement("path", { d: "m336.35 79.33a3 3 0 0 1 -3-3v-70.33a3 3 0 0 1 4.45-2.66l131 70.27a3 3 0 0 1 -1.43 5.68z", fill: "#c25934" }), /* @__PURE__ */ e.createElement("path", { d: "m336.35 6 131 70.27h-131zm0-6a6 6 0 0 0 -6 6v70.31a6 6 0 0 0 6 6h131a6 6 0 0 0 2.82-11.31l-130.97-70.28a6 6 0 0 0 -2.85-.72z", fill: "#c25934" }), /* @__PURE__ */ e.createElement("g", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 6.04 }, /* @__PURE__ */ e.createElement("path", { d: "m728.34 271.11-97.16-12.07-49.58 47.17 2.2 12.72 43.38 67.81z", fill: "#c25934", stroke: "#c25934" }), /* @__PURE__ */ e.createElement("path", { d: "m626.39 387.08-42.59-68.15-30-173.58a14.08 14.08 0 0 0 -5.13-8.64l-77.73-61.61h-149.53a12.9 12.9 0 0 0 -5.24 1.11l-64.58 28.7 187.41 269.39 43.66-20.23z", fill: "#e1743f", stroke: "#e1743f" }), /* @__PURE__ */ e.createElement("path", { d: "m198.36 365.6v-197.1a13 13 0 0 1 3.38-8.74l49.86-54.85 187.4 269.39-233-1a7.67 7.67 0 0 1 -7.64-7.7z", fill: "#e68c59", stroke: "#e68c59" }))), n = c(o);
8
- export {
9
- n as default
10
- };
11
- //# sourceMappingURL=packagist-D01fn9N_.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"packagist-D01fn9N_.mjs","sources":["../src/assets/icons/external/packagist.svg?react"],"sourcesContent":["import * as React from \"react\";\nimport { forwardRef } from \"react\";\nconst SvgPackagist = ({\n title,\n titleId,\n ...props\n}, ref) => /* @__PURE__ */ React.createElement(\"svg\", { height: 16, viewBox: \"3.01810963 0 758.25189037 627.7911721\", width: 16, xmlns: \"http://www.w3.org/2000/svg\", ref, \"aria-labelledby\": titleId, ...props }, title ? /* @__PURE__ */ React.createElement(\"title\", { id: titleId }, title) : null, /* @__PURE__ */ React.createElement(\"g\", { strokeLinecap: \"round\", strokeLinejoin: \"round\", strokeWidth: 6.04 }, /* @__PURE__ */ React.createElement(\"path\", { d: \"m76.62 357.52v68.42a4.58 4.58 0 0 1 -6.73 4l-64.44-34.16a4.58 4.58 0 0 1 0-8.09l64.44-34.21a4.58 4.58 0 0 1 6.73 4z\", fill: \"#e1743f\", stroke: \"#e1743f\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"m488 596.62v-241.27l-5.32-1.28-43.68 20.23v230h41.3a7.67 7.67 0 0 0 7.7-7.64z\", fill: \"#c25934\", stroke: \"#c25934\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"m761 332c.27.8-32.74-60.77-32.74-60.77l-45.26 51.66z\", fill: \"#e1743f\", stroke: \"#e1743f\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"m251.59 104.92h-38a11.72 11.72 0 0 0 -6.43 1.92l-131.29 86.16a11.72 11.72 0 0 0 -5.29 9.79v412.14a11.72 11.72 0 0 0 11.72 11.72h78.2a11.72 11.72 0 0 0 8.28-3.43l81.22-81.22-162.84-245.54a11.72 11.72 0 0 1 3.3-16.24q.37-.24.75-.46l101.15-56.5a11.72 11.72 0 0 0 6-10.23v-45.03a11.72 11.72 0 0 1 3-7.88z\", fill: \"#c25934\", stroke: \"#c25934\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"m431.85 626.65h-113.53a7.67 7.67 0 0 1 -6.32-3.33l-227.06-330.46a7.67 7.67 0 0 1 2-10.66q.27-.18.55-.34l110.84-61.91v145.65a7.67 7.67 0 0 0 7.64 7.67l233 1v245.24a7.14 7.14 0 0 1 -7.14 7.14z\", fill: \"#e1743f\", stroke: \"#e1743f\" })), /* @__PURE__ */ React.createElement(\"path\", { d: \"m336.35 79.33a3 3 0 0 1 -3-3v-70.33a3 3 0 0 1 4.45-2.66l131 70.27a3 3 0 0 1 -1.43 5.68z\", fill: \"#c25934\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"m336.35 6 131 70.27h-131zm0-6a6 6 0 0 0 -6 6v70.31a6 6 0 0 0 6 6h131a6 6 0 0 0 2.82-11.31l-130.97-70.28a6 6 0 0 0 -2.85-.72z\", fill: \"#c25934\" }), /* @__PURE__ */ React.createElement(\"g\", { strokeLinecap: \"round\", strokeLinejoin: \"round\", strokeWidth: 6.04 }, /* @__PURE__ */ React.createElement(\"path\", { d: \"m728.34 271.11-97.16-12.07-49.58 47.17 2.2 12.72 43.38 67.81z\", fill: \"#c25934\", stroke: \"#c25934\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"m626.39 387.08-42.59-68.15-30-173.58a14.08 14.08 0 0 0 -5.13-8.64l-77.73-61.61h-149.53a12.9 12.9 0 0 0 -5.24 1.11l-64.58 28.7 187.41 269.39 43.66-20.23z\", fill: \"#e1743f\", stroke: \"#e1743f\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"m198.36 365.6v-197.1a13 13 0 0 1 3.38-8.74l49.86-54.85 187.4 269.39-233-1a7.67 7.67 0 0 1 -7.64-7.7z\", fill: \"#e68c59\", stroke: \"#e68c59\" })));\nconst ForwardRef = forwardRef(SvgPackagist);\nexport default ForwardRef;\n"],"names":["SvgPackagist","title","titleId","props","ref","React","ForwardRef","forwardRef"],"mappings":";;AAEA,MAAMA,IAAe,CAAC;AAAA,EACpB,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,GAAGC,MAAwB,gBAAAC,EAAM,cAAc,OAAO,EAAE,QAAQ,IAAI,SAAS,yCAAyC,OAAO,IAAI,OAAO,8BAA8B,KAAAD,GAAK,mBAAmBF,GAAS,GAAGC,EAAK,GAAIF,IAAwB,gBAAAI,EAAM,cAAc,SAAS,EAAE,IAAIH,EAAO,GAAID,CAAK,IAAI,MAAsB,gBAAAI,EAAM,cAAc,KAAK,EAAE,eAAe,SAAS,gBAAgB,SAAS,aAAa,KAAM,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,uHAAuH,MAAM,WAAW,QAAQ,UAAS,CAAE,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,iFAAiF,MAAM,WAAW,QAAQ,UAAS,CAAE,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,wDAAwD,MAAM,WAAW,QAAQ,UAAS,CAAE,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,gTAAgT,MAAM,WAAW,QAAQ,UAAW,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,kMAAkM,MAAM,WAAW,QAAQ,UAAS,CAAE,CAAC,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,2FAA2F,MAAM,UAAW,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,gIAAgI,MAAM,UAAW,CAAA,GAAmB,gBAAAA,EAAM,cAAc,KAAK,EAAE,eAAe,SAAS,gBAAgB,SAAS,aAAa,KAAM,GAAkB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,iEAAiE,MAAM,WAAW,QAAQ,UAAS,CAAE,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,4JAA4J,MAAM,WAAW,QAAQ,UAAW,CAAA,GAAmB,gBAAAA,EAAM,cAAc,QAAQ,EAAE,GAAG,wGAAwG,MAAM,WAAW,QAAQ,UAAW,CAAA,CAAC,CAAC,GAChmFC,IAAaC,EAAWP,CAAY;"}