@scalar/api-reference 0.1.31 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (479) hide show
  1. package/dist/components/ApiClientModal.vue.d.ts.map +1 -1
  2. package/dist/components/ApiReference.vue.d.ts +12 -0
  3. package/dist/components/ApiReference.vue.d.ts.map +1 -1
  4. package/dist/components/Content/ReferenceEndpoint/Copy.vue.d.ts.map +1 -1
  5. package/dist/components/Content/ReferenceEndpoint/ExampleRequest.vue.d.ts.map +1 -1
  6. package/dist/components/Content/ReferenceEndpoint/ExampleResponses.vue.d.ts.map +1 -1
  7. package/dist/components/HelpfulLink.vue.d.ts +20 -0
  8. package/dist/components/HelpfulLink.vue.d.ts.map +1 -0
  9. package/dist/components/SearchModal.vue.d.ts.map +1 -1
  10. package/dist/components/SimpleTable/SimpleCell.vue.d.ts +40 -0
  11. package/dist/components/SimpleTable/SimpleCell.vue.d.ts.map +1 -0
  12. package/dist/components/SimpleTable/SimpleHeader.vue.d.ts +10 -0
  13. package/dist/components/SimpleTable/SimpleHeader.vue.d.ts.map +1 -0
  14. package/dist/components/SimpleTable/SimpleRow.vue.d.ts +10 -0
  15. package/dist/components/SimpleTable/SimpleRow.vue.d.ts.map +1 -0
  16. package/dist/components/SimpleTable/SimpleTable.vue.d.ts +10 -0
  17. package/dist/components/SimpleTable/SimpleTable.vue.d.ts.map +1 -0
  18. package/dist/components/SimpleTable/index.d.ts +5 -0
  19. package/dist/components/SimpleTable/index.d.ts.map +1 -0
  20. package/dist/index.d.ts +0 -1
  21. package/dist/index.d.ts.map +1 -1
  22. package/dist/index.js +34044 -55062
  23. package/dist/standalone.d.ts +0 -1
  24. package/dist/standalone.d.ts.map +1 -1
  25. package/dist/types.d.ts +2 -0
  26. package/dist/types.d.ts.map +1 -1
  27. package/package.json +11 -13
  28. package/src/components/ApiClientModal.vue +205 -0
  29. package/src/components/ApiReference.vue +754 -0
  30. package/src/components/Card/Card.vue +12 -0
  31. package/src/components/Card/CardContent.vue +45 -0
  32. package/src/components/Card/CardFooter.vue +13 -0
  33. package/src/components/Card/CardHeader.vue +37 -0
  34. package/src/components/Card/CardTab.vue +32 -0
  35. package/src/components/Card/CardTabHeader.vue +32 -0
  36. package/src/components/Card/index.ts +6 -0
  37. package/src/components/Content/Content.vue +145 -0
  38. package/src/components/Content/Introduction/BaseUrl.vue +32 -0
  39. package/src/components/Content/Introduction/Introduction.vue +141 -0
  40. package/src/components/Content/Introduction/LanguageSelector.vue +361 -0
  41. package/src/components/Content/Introduction/index.ts +1 -0
  42. package/src/components/Content/MarkdownRenderer.vue +174 -0
  43. package/src/components/Content/ReferenceEndpoint/Copy.vue +100 -0
  44. package/src/components/Content/ReferenceEndpoint/ExampleRequest.vue +317 -0
  45. package/src/components/Content/ReferenceEndpoint/ExampleResponseTab.vue +22 -0
  46. package/src/components/Content/ReferenceEndpoint/ExampleResponses.vue +168 -0
  47. package/src/components/Content/ReferenceEndpoint/ParameterItem.vue +26 -0
  48. package/src/components/Content/ReferenceEndpoint/Parameters.vue +23 -0
  49. package/src/components/Content/ReferenceEndpoint/ReferenceEndpoint.vue +29 -0
  50. package/src/components/Content/ReferenceEndpoint/RequestBody.vue +125 -0
  51. package/src/components/Content/ReferenceEndpoint/RequestBodyProperties.vue +54 -0
  52. package/src/components/Content/ReferenceEndpoint/RequestBodyPropertiesChild.vue +39 -0
  53. package/src/components/Content/ReferenceEndpoint/index.ts +1 -0
  54. package/src/components/Content/ReferenceTag.vue +99 -0
  55. package/src/components/Content/Spinner.vue +51 -0
  56. package/src/components/Content/index.ts +1 -0
  57. package/src/components/FindAnythingButton.vue +76 -0
  58. package/src/components/FlowButton.vue +184 -0
  59. package/src/components/FlowIconButton.vue +25 -0
  60. package/src/components/FlowLoader.vue +207 -0
  61. package/src/components/FlowModal.vue +133 -0
  62. package/src/components/HelpfulLink.vue +19 -0
  63. package/src/components/Icon/FlowIcon.vue +19 -0
  64. package/src/components/Icon/Icon.vue +23 -0
  65. package/src/components/Icon/SvgRenderer.ts +66 -0
  66. package/src/components/Icon/brand/brand-adobe.svg +1 -0
  67. package/src/components/Icon/brand/brand-amazon.svg +1 -0
  68. package/src/components/Icon/brand/brand-browser-firefox.svg +5 -0
  69. package/src/components/Icon/brand/brand-browser-googlechrome.svg +5 -0
  70. package/src/components/Icon/brand/brand-creative-commons.svg +1 -0
  71. package/src/components/Icon/brand/brand-ecommerce-etsy.svg +1 -0
  72. package/src/components/Icon/brand/brand-ecommerce-patreon.svg +1 -0
  73. package/src/components/Icon/brand/brand-ecommerce-shopify.svg +5 -0
  74. package/src/components/Icon/brand/brand-ecommerce-wordpress.svg +1 -0
  75. package/src/components/Icon/brand/brand-gaming-nintendo-switch.svg +5 -0
  76. package/src/components/Icon/brand/brand-gaming-playstation.svg +1 -0
  77. package/src/components/Icon/brand/brand-gaming-xbox-live.svg +5 -0
  78. package/src/components/Icon/brand/brand-google-drive.svg +5 -0
  79. package/src/components/Icon/brand/brand-google-gmail.svg +5 -0
  80. package/src/components/Icon/brand/brand-google.svg +1 -0
  81. package/src/components/Icon/brand/brand-music-itunes.svg +1 -0
  82. package/src/components/Icon/brand/brand-music-soundcloud.svg +1 -0
  83. package/src/components/Icon/brand/brand-music-spotify.svg +1 -0
  84. package/src/components/Icon/brand/brand-office-dropbox.svg +5 -0
  85. package/src/components/Icon/brand/brand-office-slack.svg +5 -0
  86. package/src/components/Icon/brand/brand-office-zoom.svg +1 -0
  87. package/src/components/Icon/brand/brand-payments-alipay.svg +1 -0
  88. package/src/components/Icon/brand/brand-payments-paypal.svg +1 -0
  89. package/src/components/Icon/brand/brand-payments-stripe.svg +1 -0
  90. package/src/components/Icon/brand/brand-platform-android.svg +1 -0
  91. package/src/components/Icon/brand/brand-platform-apple.svg +5 -0
  92. package/src/components/Icon/brand/brand-platform-linux.svg +5 -0
  93. package/src/components/Icon/brand/brand-platform-microsoft-windows.svg +4 -0
  94. package/src/components/Icon/brand/brand-social-chat-discord.svg +5 -0
  95. package/src/components/Icon/brand/brand-social-chat-kuaishou.svg +5 -0
  96. package/src/components/Icon/brand/brand-social-chat-line.svg +5 -0
  97. package/src/components/Icon/brand/brand-social-chat-messenger.svg +5 -0
  98. package/src/components/Icon/brand/brand-social-chat-signal.svg +5 -0
  99. package/src/components/Icon/brand/brand-social-chat-snapchat.svg +5 -0
  100. package/src/components/Icon/brand/brand-social-chat-telegram.svg +5 -0
  101. package/src/components/Icon/brand/brand-social-chat-wechat.svg +5 -0
  102. package/src/components/Icon/brand/brand-social-chat-whatsapp.svg +5 -0
  103. package/src/components/Icon/brand/brand-social-media-deviantart.svg +5 -0
  104. package/src/components/Icon/brand/brand-social-media-dribbble.svg +1 -0
  105. package/src/components/Icon/brand/brand-social-media-facebook.svg +1 -0
  106. package/src/components/Icon/brand/brand-social-media-instagram.svg +5 -0
  107. package/src/components/Icon/brand/brand-social-media-linkedin.svg +5 -0
  108. package/src/components/Icon/brand/brand-social-media-pinterest.svg +5 -0
  109. package/src/components/Icon/brand/brand-social-media-reddit.svg +1 -0
  110. package/src/components/Icon/brand/brand-social-media-sina-weibo.svg +5 -0
  111. package/src/components/Icon/brand/brand-social-media-threads.svg +1 -0
  112. package/src/components/Icon/brand/brand-social-media-tiktok.svg +5 -0
  113. package/src/components/Icon/brand/brand-social-media-tinder.svg +1 -0
  114. package/src/components/Icon/brand/brand-social-media-tumblr.svg +5 -0
  115. package/src/components/Icon/brand/brand-social-media-twitter.svg +5 -0
  116. package/src/components/Icon/brand/brand-software-design-figma.svg +1 -0
  117. package/src/components/Icon/brand/brand-software-development-authy.svg +1 -0
  118. package/src/components/Icon/brand/brand-software-development-digital-ocean.svg +1 -0
  119. package/src/components/Icon/brand/brand-software-development-docker.svg +5 -0
  120. package/src/components/Icon/brand/brand-software-development-github.svg +5 -0
  121. package/src/components/Icon/brand/brand-software-development-jira.svg +1 -0
  122. package/src/components/Icon/brand/brand-software-development-openai.svg +1 -0
  123. package/src/components/Icon/brand/brand-software-development-stackexchange.svg +5 -0
  124. package/src/components/Icon/brand/brand-software-development-stackoverflow.svg +1 -0
  125. package/src/components/Icon/brand/brand-video-netflix.svg +5 -0
  126. package/src/components/Icon/brand/brand-video-twitch.svg +1 -0
  127. package/src/components/Icon/brand/brand-video-vimeo.svg +5 -0
  128. package/src/components/Icon/brand/brand-video-youtube.svg +5 -0
  129. package/src/components/Icon/brand/programming-framework-angular.svg +5 -0
  130. package/src/components/Icon/brand/programming-framework-astro.svg +5 -0
  131. package/src/components/Icon/brand/programming-framework-laravel.svg +1 -0
  132. package/src/components/Icon/brand/programming-framework-nextdotjs.svg +5 -0
  133. package/src/components/Icon/brand/programming-framework-react.svg +5 -0
  134. package/src/components/Icon/brand/programming-framework-vuedotjs.svg +1 -0
  135. package/src/components/Icon/brand/programming-language-c.svg +5 -0
  136. package/src/components/Icon/brand/programming-language-clojure.svg +5 -0
  137. package/src/components/Icon/brand/programming-language-csharp.svg +4 -0
  138. package/src/components/Icon/brand/programming-language-css3.svg +4 -0
  139. package/src/components/Icon/brand/programming-language-go.svg +4 -0
  140. package/src/components/Icon/brand/programming-language-html5.svg +4 -0
  141. package/src/components/Icon/brand/programming-language-java.svg +21 -0
  142. package/src/components/Icon/brand/programming-language-javascript-js.svg +4 -0
  143. package/src/components/Icon/brand/programming-language-json.svg +8 -0
  144. package/src/components/Icon/brand/programming-language-kotlin.svg +3 -0
  145. package/src/components/Icon/brand/programming-language-node.svg +10 -0
  146. package/src/components/Icon/brand/programming-language-objc.svg +6 -0
  147. package/src/components/Icon/brand/programming-language-ocaml.svg +4 -0
  148. package/src/components/Icon/brand/programming-language-php.svg +4 -0
  149. package/src/components/Icon/brand/programming-language-powershell.svg +10 -0
  150. package/src/components/Icon/brand/programming-language-python.svg +4 -0
  151. package/src/components/Icon/brand/programming-language-r.svg +7 -0
  152. package/src/components/Icon/brand/programming-language-ruby.svg +5 -0
  153. package/src/components/Icon/brand/programming-language-scala.svg +5 -0
  154. package/src/components/Icon/brand/programming-language-shell.svg +5 -0
  155. package/src/components/Icon/brand/programming-language-swift.svg +4 -0
  156. package/src/components/Icon/brand/programming-language-typescript.svg +5 -0
  157. package/src/components/Icon/brand/programming-tool-git.svg +1 -0
  158. package/src/components/Icon/brand/programming-tool-tailwindcss.svg +5 -0
  159. package/src/components/Icon/icons/Add.svg +4 -0
  160. package/src/components/Icon/icons/ArrowDown.svg +3 -0
  161. package/src/components/Icon/icons/ArrowLeft.svg +3 -0
  162. package/src/components/Icon/icons/ArrowRight.svg +3 -0
  163. package/src/components/Icon/icons/ArrowUp.svg +3 -0
  164. package/src/components/Icon/icons/Background.svg +8 -0
  165. package/src/components/Icon/icons/CallToAction.svg +5 -0
  166. package/src/components/Icon/icons/CheckMark.svg +3 -0
  167. package/src/components/Icon/icons/ChevronDown.svg +3 -0
  168. package/src/components/Icon/icons/ChevronLeft.svg +3 -0
  169. package/src/components/Icon/icons/ChevronRight.svg +3 -0
  170. package/src/components/Icon/icons/ChevronUp.svg +3 -0
  171. package/src/components/Icon/icons/Close.svg +3 -0
  172. package/src/components/Icon/icons/DarkMode.svg +4 -0
  173. package/src/components/Icon/icons/Delete.svg +5 -0
  174. package/src/components/Icon/icons/Discord.svg +5 -0
  175. package/src/components/Icon/icons/Duplicate.svg +6 -0
  176. package/src/components/Icon/icons/Edit.svg +4 -0
  177. package/src/components/Icon/icons/EditorBold.svg +4 -0
  178. package/src/components/Icon/icons/EditorCode.svg +6 -0
  179. package/src/components/Icon/icons/EditorHighlight.svg +12 -0
  180. package/src/components/Icon/icons/EditorItalic.svg +4 -0
  181. package/src/components/Icon/icons/EditorLink.svg +8 -0
  182. package/src/components/Icon/icons/EditorStrike.svg +4 -0
  183. package/src/components/Icon/icons/EditorUnderline.svg +6 -0
  184. package/src/components/Icon/icons/Ellipses.svg +4 -0
  185. package/src/components/Icon/icons/Error.svg +4 -0
  186. package/src/components/Icon/icons/ExternalLink.svg +7 -0
  187. package/src/components/Icon/icons/Folder.svg +4 -0
  188. package/src/components/Icon/icons/GitHub.svg +4 -0
  189. package/src/components/Icon/icons/Google.svg +4 -0
  190. package/src/components/Icon/icons/Hide.svg +5 -0
  191. package/src/components/Icon/icons/Key.svg +5 -0
  192. package/src/components/Icon/icons/Leave.svg +5 -0
  193. package/src/components/Icon/icons/LightMode.svg +6 -0
  194. package/src/components/Icon/icons/Link.svg +5 -0
  195. package/src/components/Icon/icons/Lock.svg +4 -0
  196. package/src/components/Icon/icons/Logo.svg +4 -0
  197. package/src/components/Icon/icons/LogoAPI.svg +4 -0
  198. package/src/components/Icon/icons/LogoClient.svg +4 -0
  199. package/src/components/Icon/icons/LogoMarket.svg +4 -0
  200. package/src/components/Icon/icons/LogoSwagger.svg +4 -0
  201. package/src/components/Icon/icons/Magic.svg +5 -0
  202. package/src/components/Icon/icons/Menu.svg +3 -0
  203. package/src/components/Icon/icons/Page.svg +8 -0
  204. package/src/components/Icon/icons/Payment.svg +5 -0
  205. package/src/components/Icon/icons/Refresh.svg +4 -0
  206. package/src/components/Icon/icons/Search.svg +4 -0
  207. package/src/components/Icon/icons/Show.svg +5 -0
  208. package/src/components/Icon/icons/Sigma.svg +4 -0
  209. package/src/components/Icon/icons/Trash.svg +5 -0
  210. package/src/components/Icon/icons/index.ts +65 -0
  211. package/src/components/Icon/index.ts +2 -0
  212. package/src/components/Icon/line/arrow-chevron-down.svg +1 -0
  213. package/src/components/Icon/line/arrow-chevron-left.svg +1 -0
  214. package/src/components/Icon/line/arrow-chevron-right.svg +1 -0
  215. package/src/components/Icon/line/arrow-chevron-up.svg +1 -0
  216. package/src/components/Icon/line/arrow-down.svg +1 -0
  217. package/src/components/Icon/line/arrow-left.svg +1 -0
  218. package/src/components/Icon/line/arrow-right.svg +1 -0
  219. package/src/components/Icon/line/arrow-up.svg +1 -0
  220. package/src/components/Icon/line/basic-shape-diamond.svg +1 -0
  221. package/src/components/Icon/line/basic-shape-hexagon.svg +1 -0
  222. package/src/components/Icon/line/basic-shape-primary-circle-ellipse-round.svg +1 -0
  223. package/src/components/Icon/line/basic-shape-primary-square-rectangle.svg +1 -0
  224. package/src/components/Icon/line/basic-shape-shield.svg +1 -0
  225. package/src/components/Icon/line/computer-device-desktop-monitor.svg +1 -0
  226. package/src/components/Icon/line/computer-device-desktop.svg +1 -0
  227. package/src/components/Icon/line/computer-device-laptop.svg +1 -0
  228. package/src/components/Icon/line/computer-device-mobile-phone-android-samsung-back.svg +1 -0
  229. package/src/components/Icon/line/computer-device-mobile-phone-android-samsung.svg +1 -0
  230. package/src/components/Icon/line/computer-device-mobile-phone-iphone-x-back.svg +1 -0
  231. package/src/components/Icon/line/computer-device-mobile-phone-iphone-x.svg +1 -0
  232. package/src/components/Icon/line/computer-device-mobile-tablet-touch.svg +1 -0
  233. package/src/components/Icon/line/computer-device-mobile-tablet.svg +1 -0
  234. package/src/components/Icon/line/computer-device-network-ethernet-cat6.svg +1 -0
  235. package/src/components/Icon/line/computer-device-network-lan-www.svg +1 -0
  236. package/src/components/Icon/line/computer-device-network-wifi-connection.svg +1 -0
  237. package/src/components/Icon/line/computer-device-network-wifi-router.svg +1 -0
  238. package/src/components/Icon/line/computer-keyboard-alt.svg +1 -0
  239. package/src/components/Icon/line/computer-keyboard-command-cmd-control-ctrl.svg +1 -0
  240. package/src/components/Icon/line/computer-keyboard-option.svg +1 -0
  241. package/src/components/Icon/line/computer-keyboard-shift.svg +1 -0
  242. package/src/components/Icon/line/ecology-science-erlenmeyer-flask.svg +1 -0
  243. package/src/components/Icon/line/entertainment-control-button-circle-left-arrow-rewind.svg +1 -0
  244. package/src/components/Icon/line/entertainment-control-button-circle-pause.svg +1 -0
  245. package/src/components/Icon/line/entertainment-control-button-circle-right-arrow-fast-forward.svg +1 -0
  246. package/src/components/Icon/line/entertainment-control-button-circle-stop-square.svg +1 -0
  247. package/src/components/Icon/line/entertainment-control-button-play-circle.svg +1 -0
  248. package/src/components/Icon/line/entertainment-party-popper-confetti.svg +1 -0
  249. package/src/components/Icon/line/image-flash-lightning.svg +1 -0
  250. package/src/components/Icon/line/image-photo-frame.svg +1 -0
  251. package/src/components/Icon/line/image-picture-flower.svg +1 -0
  252. package/src/components/Icon/line/interface-add.svg +1 -0
  253. package/src/components/Icon/line/interface-alert-error-exclamation-block-square.svg +1 -0
  254. package/src/components/Icon/line/interface-alert-error-x-block-square.svg +1 -0
  255. package/src/components/Icon/line/interface-alert-exclamation-diamond.svg +1 -0
  256. package/src/components/Icon/line/interface-alert-exclamation-triangle-warning.svg +1 -0
  257. package/src/components/Icon/line/interface-alert-information-circle.svg +1 -0
  258. package/src/components/Icon/line/interface-award-crown.svg +1 -0
  259. package/src/components/Icon/line/interface-bookmark-tag.svg +1 -0
  260. package/src/components/Icon/line/interface-bookmark.svg +1 -0
  261. package/src/components/Icon/line/interface-calendar-date-one.svg +1 -0
  262. package/src/components/Icon/line/interface-close.svg +1 -0
  263. package/src/components/Icon/line/interface-content-book-open-pages.svg +1 -0
  264. package/src/components/Icon/line/interface-content-book-page.svg +1 -0
  265. package/src/components/Icon/line/interface-content-file.svg +8 -0
  266. package/src/components/Icon/line/interface-content-folder.svg +1 -0
  267. package/src/components/Icon/line/interface-copy-clipboard.svg +1 -0
  268. package/src/components/Icon/line/interface-delete-bin-trash.svg +1 -0
  269. package/src/components/Icon/line/interface-dots-horizontal.svg +1 -0
  270. package/src/components/Icon/line/interface-dots-vertical.svg +1 -0
  271. package/src/components/Icon/line/interface-edit-attachment.svg +1 -0
  272. package/src/components/Icon/line/interface-edit-binocular.svg +1 -0
  273. package/src/components/Icon/line/interface-edit-magic-wand.svg +1 -0
  274. package/src/components/Icon/line/interface-edit-tool-eraser.svg +1 -0
  275. package/src/components/Icon/line/interface-edit-tool-paint-brush.svg +1 -0
  276. package/src/components/Icon/line/interface-edit-tool-paint-roller.svg +1 -0
  277. package/src/components/Icon/line/interface-edit-tool-pen.svg +1 -0
  278. package/src/components/Icon/line/interface-edit-tool-pencil.svg +1 -0
  279. package/src/components/Icon/line/interface-edit-view-eye.svg +1 -0
  280. package/src/components/Icon/line/interface-favorite-award.svg +1 -0
  281. package/src/components/Icon/line/interface-favorite-flag.svg +1 -0
  282. package/src/components/Icon/line/interface-favorite-heart.svg +1 -0
  283. package/src/components/Icon/line/interface-favorite-star.svg +1 -0
  284. package/src/components/Icon/line/interface-favorite-stars-shining.svg +1 -0
  285. package/src/components/Icon/line/interface-favorite-stars-sparkles.svg +1 -0
  286. package/src/components/Icon/line/interface-hierarchy-flowchart.svg +1 -0
  287. package/src/components/Icon/line/interface-home-house.svg +1 -0
  288. package/src/components/Icon/line/interface-hyperlink.svg +1 -0
  289. package/src/components/Icon/line/interface-lighting-brightness.svg +1 -0
  290. package/src/components/Icon/line/interface-lock-closed.svg +1 -0
  291. package/src/components/Icon/line/interface-lock-open-unlock.svg +1 -0
  292. package/src/components/Icon/line/interface-login-key.svg +1 -0
  293. package/src/components/Icon/line/interface-search.svg +1 -0
  294. package/src/components/Icon/line/interface-setting-cog.svg +1 -0
  295. package/src/components/Icon/line/interface-share-megaphone-bullhorn.svg +1 -0
  296. package/src/components/Icon/line/interface-share-rocket.svg +1 -0
  297. package/src/components/Icon/line/interface-share-satellite.svg +1 -0
  298. package/src/components/Icon/line/interface-share-space-ship.svg +1 -0
  299. package/src/components/Icon/line/interface-share.svg +1 -0
  300. package/src/components/Icon/line/interface-signal-square.svg +1 -0
  301. package/src/components/Icon/line/interface-text-formatting-left-open-quote.svg +1 -0
  302. package/src/components/Icon/line/interface-text-formatting-right-close-quote.svg +1 -0
  303. package/src/components/Icon/line/interface-time-clock-circle.svg +1 -0
  304. package/src/components/Icon/line/interface-time-hour-glass.svg +1 -0
  305. package/src/components/Icon/line/interface-users-multiple.svg +1 -0
  306. package/src/components/Icon/line/interface-validation-checkbox-square.svg +1 -0
  307. package/src/components/Icon/line/interface-weather-moon.svg +1 -0
  308. package/src/components/Icon/line/legal-justice-hammer-gavel.svg +1 -0
  309. package/src/components/Icon/line/mail-chat-bubble-square.svg +1 -0
  310. package/src/components/Icon/line/mail-send-email-paper-airplane.svg +1 -0
  311. package/src/components/Icon/line/mail-send-envelope.svg +1 -0
  312. package/src/components/Icon/line/mail-sign-hashtag.svg +1 -0
  313. package/src/components/Icon/line/money-cashier-receipt.svg +1 -0
  314. package/src/components/Icon/line/money-currency-dollar-pay.svg +1 -0
  315. package/src/components/Icon/line/money-graph-arrow-increase.svg +1 -0
  316. package/src/components/Icon/line/money-graph-bar-chart-increase.svg +1 -0
  317. package/src/components/Icon/line/nature-ecology-leaf.svg +1 -0
  318. package/src/components/Icon/line/phone-telephone.svg +1 -0
  319. package/src/components/Icon/line/programming-bug.svg +1 -0
  320. package/src/components/Icon/line/programming-cloud.svg +1 -0
  321. package/src/components/Icon/line/programming-computer-database-server.svg +1 -0
  322. package/src/components/Icon/line/programming-computer-database.svg +1 -0
  323. package/src/components/Icon/line/programming-module-four-layout.svg +1 -0
  324. package/src/components/Icon/line/programming-module-three.svg +1 -0
  325. package/src/components/Icon/line/programming-module.svg +1 -0
  326. package/src/components/Icon/line/programming-script-code.svg +1 -0
  327. package/src/components/Icon/line/shopping-cart.svg +8 -0
  328. package/src/components/Icon/line/shopping-gift-present.svg +1 -0
  329. package/src/components/Icon/line/shopping-shipping-box-parcel-package.svg +1 -0
  330. package/src/components/Icon/line/tag-new-circle.svg +1 -0
  331. package/src/components/Icon/line/travel-map-earth-globe.svg +1 -0
  332. package/src/components/Icon/localIcons.ts +68 -0
  333. package/src/components/Icon/solid/arrow-chevron-down.svg +1 -0
  334. package/src/components/Icon/solid/arrow-chevron-left.svg +1 -0
  335. package/src/components/Icon/solid/arrow-chevron-right.svg +1 -0
  336. package/src/components/Icon/solid/arrow-chevron-up.svg +1 -0
  337. package/src/components/Icon/solid/arrow-down.svg +1 -0
  338. package/src/components/Icon/solid/arrow-left.svg +1 -0
  339. package/src/components/Icon/solid/arrow-right.svg +1 -0
  340. package/src/components/Icon/solid/arrow-up.svg +1 -0
  341. package/src/components/Icon/solid/basic-shape-diamond.svg +1 -0
  342. package/src/components/Icon/solid/basic-shape-hexagon.svg +1 -0
  343. package/src/components/Icon/solid/basic-shape-primary-circle-ellipse-round.svg +1 -0
  344. package/src/components/Icon/solid/basic-shape-primary-square-rectangle.svg +1 -0
  345. package/src/components/Icon/solid/basic-shape-shield.svg +1 -0
  346. package/src/components/Icon/solid/computer-device-desktop-monitor.svg +1 -0
  347. package/src/components/Icon/solid/computer-device-desktop.svg +1 -0
  348. package/src/components/Icon/solid/computer-device-laptop.svg +1 -0
  349. package/src/components/Icon/solid/computer-device-mobile-phone-android-samsung-back.svg +1 -0
  350. package/src/components/Icon/solid/computer-device-mobile-phone-android-samsung.svg +1 -0
  351. package/src/components/Icon/solid/computer-device-mobile-phone-iphone-x-back.svg +1 -0
  352. package/src/components/Icon/solid/computer-device-mobile-phone-iphone-x.svg +1 -0
  353. package/src/components/Icon/solid/computer-device-mobile-tablet-touch.svg +1 -0
  354. package/src/components/Icon/solid/computer-device-mobile-tablet.svg +1 -0
  355. package/src/components/Icon/solid/computer-device-network-ethernet-cat6.svg +1 -0
  356. package/src/components/Icon/solid/computer-device-network-lan-www.svg +1 -0
  357. package/src/components/Icon/solid/computer-device-network-wifi-connection.svg +5 -0
  358. package/src/components/Icon/solid/computer-device-network-wifi-router.svg +1 -0
  359. package/src/components/Icon/solid/computer-keyboard-alt.svg +1 -0
  360. package/src/components/Icon/solid/computer-keyboard-command-cmd-control-ctrl.svg +1 -0
  361. package/src/components/Icon/solid/computer-keyboard-option.svg +1 -0
  362. package/src/components/Icon/solid/computer-keyboard-shift.svg +1 -0
  363. package/src/components/Icon/solid/ecology-science-erlenmeyer-flask.svg +1 -0
  364. package/src/components/Icon/solid/entertainment-control-button-circle-left-arrow-rewind.svg +1 -0
  365. package/src/components/Icon/solid/entertainment-control-button-circle-pause.svg +1 -0
  366. package/src/components/Icon/solid/entertainment-control-button-circle-play.svg +5 -0
  367. package/src/components/Icon/solid/entertainment-control-button-circle-right-arrow-fast-forward.svg +1 -0
  368. package/src/components/Icon/solid/entertainment-control-button-circle-stop-square.svg +1 -0
  369. package/src/components/Icon/solid/entertainment-party-popper-confetti.svg +1 -0
  370. package/src/components/Icon/solid/image-flash-lightning.svg +5 -0
  371. package/src/components/Icon/solid/image-photo-frame.svg +11 -0
  372. package/src/components/Icon/solid/image-picture-flower.svg +5 -0
  373. package/src/components/Icon/solid/interface-add-square.svg +5 -0
  374. package/src/components/Icon/solid/interface-alert-error-exclamation-block-square.svg +1 -0
  375. package/src/components/Icon/solid/interface-alert-error-x-block-square.svg +1 -0
  376. package/src/components/Icon/solid/interface-alert-exclamation-diamond.svg +1 -0
  377. package/src/components/Icon/solid/interface-alert-exclamation-triangle-warning.svg +1 -0
  378. package/src/components/Icon/solid/interface-alert-information-circle.svg +5 -0
  379. package/src/components/Icon/solid/interface-award-crown.svg +5 -0
  380. package/src/components/Icon/solid/interface-bookmark-tag.svg +1 -0
  381. package/src/components/Icon/solid/interface-bookmark.svg +5 -0
  382. package/src/components/Icon/solid/interface-calendar-date-one.svg +5 -0
  383. package/src/components/Icon/solid/interface-close.svg +8 -0
  384. package/src/components/Icon/solid/interface-content-book-open-pages.svg +13 -0
  385. package/src/components/Icon/solid/interface-content-book-page.svg +5 -0
  386. package/src/components/Icon/solid/interface-content-file.svg +5 -0
  387. package/src/components/Icon/solid/interface-content-folder.svg +1 -0
  388. package/src/components/Icon/solid/interface-copy-clipboard.svg +5 -0
  389. package/src/components/Icon/solid/interface-delete-bin-trash.svg +1 -0
  390. package/src/components/Icon/solid/interface-dots-horizontal.svg +1 -0
  391. package/src/components/Icon/solid/interface-dots-vertical.svg +1 -0
  392. package/src/components/Icon/solid/interface-edit-attachment.svg +5 -0
  393. package/src/components/Icon/solid/interface-edit-binocular.svg +5 -0
  394. package/src/components/Icon/solid/interface-edit-magic-wand.svg +7 -0
  395. package/src/components/Icon/solid/interface-edit-tool-eraser.svg +1 -0
  396. package/src/components/Icon/solid/interface-edit-tool-paint-brush.svg +1 -0
  397. package/src/components/Icon/solid/interface-edit-tool-paint-roller.svg +5 -0
  398. package/src/components/Icon/solid/interface-edit-tool-pen.svg +5 -0
  399. package/src/components/Icon/solid/interface-edit-tool-pencil.svg +1 -0
  400. package/src/components/Icon/solid/interface-edit-view-eye.svg +7 -0
  401. package/src/components/Icon/solid/interface-favorite-award.svg +5 -0
  402. package/src/components/Icon/solid/interface-favorite-flag.svg +1 -0
  403. package/src/components/Icon/solid/interface-favorite-heart.svg +5 -0
  404. package/src/components/Icon/solid/interface-favorite-star.svg +5 -0
  405. package/src/components/Icon/solid/interface-favorite-stars-shining.svg +1 -0
  406. package/src/components/Icon/solid/interface-favorite-stars-sparkles.svg +1 -0
  407. package/src/components/Icon/solid/interface-hierarchy-flowchart.svg +5 -0
  408. package/src/components/Icon/solid/interface-home-house.svg +5 -0
  409. package/src/components/Icon/solid/interface-hyperlink.svg +5 -0
  410. package/src/components/Icon/solid/interface-lighting-brightness.svg +22 -0
  411. package/src/components/Icon/solid/interface-lock-closed.svg +5 -0
  412. package/src/components/Icon/solid/interface-lock-open-unlock.svg +1 -0
  413. package/src/components/Icon/solid/interface-login-key.svg +5 -0
  414. package/src/components/Icon/solid/interface-search.svg +5 -0
  415. package/src/components/Icon/solid/interface-setting-cog.svg +5 -0
  416. package/src/components/Icon/solid/interface-share-megaphone-bullhorn.svg +5 -0
  417. package/src/components/Icon/solid/interface-share-rocket.svg +1 -0
  418. package/src/components/Icon/solid/interface-share-satellite.svg +8 -0
  419. package/src/components/Icon/solid/interface-share-space-ship.svg +1 -0
  420. package/src/components/Icon/solid/interface-share.svg +5 -0
  421. package/src/components/Icon/solid/interface-signal-square.svg +5 -0
  422. package/src/components/Icon/solid/interface-text-formatting-left-open-quote.svg +1 -0
  423. package/src/components/Icon/solid/interface-text-formatting-right-close-quote.svg +1 -0
  424. package/src/components/Icon/solid/interface-time-clock-circle.svg +5 -0
  425. package/src/components/Icon/solid/interface-time-hour-glass.svg +1 -0
  426. package/src/components/Icon/solid/interface-users-multiple.svg +11 -0
  427. package/src/components/Icon/solid/interface-validation-checkbox-square.svg +5 -0
  428. package/src/components/Icon/solid/interface-weather-moon.svg +5 -0
  429. package/src/components/Icon/solid/legal-justice-hammer-gavel.svg +1 -0
  430. package/src/components/Icon/solid/mail-chat-bubble-square.svg +5 -0
  431. package/src/components/Icon/solid/mail-send-email-paper-airplane.svg +5 -0
  432. package/src/components/Icon/solid/mail-send-envelope.svg +1 -0
  433. package/src/components/Icon/solid/mail-sign-hashtag.svg +5 -0
  434. package/src/components/Icon/solid/money-cashier-receipt.svg +1 -0
  435. package/src/components/Icon/solid/money-currency-dollar-pay.svg +5 -0
  436. package/src/components/Icon/solid/money-graph-arrow-increase.svg +5 -0
  437. package/src/components/Icon/solid/money-graph-bar-chart-increase.svg +1 -0
  438. package/src/components/Icon/solid/nature-ecology-leaf.svg +5 -0
  439. package/src/components/Icon/solid/phone-telephone.svg +5 -0
  440. package/src/components/Icon/solid/programming-bug.svg +5 -0
  441. package/src/components/Icon/solid/programming-cloud.svg +4 -0
  442. package/src/components/Icon/solid/programming-computer-database-server.svg +5 -0
  443. package/src/components/Icon/solid/programming-computer-database.svg +5 -0
  444. package/src/components/Icon/solid/programming-module-four-layout.svg +1 -0
  445. package/src/components/Icon/solid/programming-module-three.svg +1 -0
  446. package/src/components/Icon/solid/programming-module.svg +1 -0
  447. package/src/components/Icon/solid/programming-script-code.svg +5 -0
  448. package/src/components/Icon/solid/shopping-cart.svg +1 -0
  449. package/src/components/Icon/solid/shopping-gift-present.svg +16 -0
  450. package/src/components/Icon/solid/shopping-shipping-box-parcel-package.svg +11 -0
  451. package/src/components/Icon/solid/tag-new-circle.svg +7 -0
  452. package/src/components/Icon/solid/travel-map-earth-globe.svg +5 -0
  453. package/src/components/SearchModal.vue +305 -0
  454. package/src/components/Sidebar.vue +289 -0
  455. package/src/components/SidebarElement.vue +133 -0
  456. package/src/components/SidebarGroup.vue +12 -0
  457. package/src/components/SimpleTable/SimpleCell.vue +46 -0
  458. package/src/components/SimpleTable/SimpleHeader.vue +17 -0
  459. package/src/components/SimpleTable/SimpleRow.vue +5 -0
  460. package/src/components/SimpleTable/SimpleTable.vue +13 -0
  461. package/src/components/SimpleTable/index.ts +4 -0
  462. package/src/declarations/typographic-base.d.ts +1 -0
  463. package/src/helpers/generateAxiosCodeFromRequest.ts +42 -0
  464. package/src/helpers/generateLaravelCodeFromRequest.ts +20 -0
  465. package/src/helpers/index.ts +4 -0
  466. package/src/helpers/objectMerge.ts +19 -0
  467. package/src/helpers/specHelpers.ts +62 -0
  468. package/src/helpers/transformToJson.test.ts +7 -0
  469. package/src/helpers/transformToJson.ts +22 -0
  470. package/src/hooks/useRefOnMount.ts +12 -0
  471. package/src/index.ts +11 -0
  472. package/src/standalone.ts +28 -0
  473. package/src/stores/template.ts +66 -0
  474. package/src/stores/utility.ts +23 -0
  475. package/src/types.ts +154 -0
  476. package/dist/components/StandaloneApiReference.vue.d.ts +0 -65
  477. package/dist/components/StandaloneApiReference.vue.d.ts.map +0 -1
  478. package/dist/index2.js +0 -4
  479. package/dist/style.css +0 -1
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" viewBox="0 0 24 24">
2
+ <path d="m8.25 4.5 7.5 7.5-7.5 7.5" />
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" viewBox="0 0 24 24">
2
+ <path d="m4.5 15.75 7.5-7.5 7.5 7.5" />
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path stroke="currentColor" d="m12.5 1.5-11 11m0-11 11 11" />
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
2
+ <path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.429"
3
+ d="M41.1 36a22.5 22.5 0 0 1-19-34.3 22.5 22.5 0 0 0 3.5 44.6 22.1 22.1 0 0 0 19-10.7 23.3 23.3 0 0 1-3.5.3Z" />
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M5.763 2.013a1.75 1.75 0 0 1 2.914.737H5.323a1.75 1.75 0 0 1 .44-.737Zm-1.974.737a3.25 3.25 0 0 1 6.422 0H13a.75.75 0 0 1 0 1.5h-1v8.25a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 2 12.5V4.25H1a.75.75 0 1 1 0-1.5h2.789ZM5 5.876c.345 0 .625.28.625.625v4.002a.625.625 0 0 1-1.25 0V6.501c0-.345.28-.625.625-.625Zm4.625.625a.625.625 0 0 0-1.25 0v4.002a.625.625 0 0 0 1.25 0V6.501Z"
4
+ clip-rule="evenodd" />
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg fill="currentColor" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <title>Discord</title>
3
+ <path
4
+ d="M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3933-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.1981.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286zM8.02 15.3312c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9555-2.4189 2.157-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.9555 2.4189-2.1569 2.4189zm7.9748 0c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9554-2.4189 2.1569-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.946 2.4189-2.1568 2.4189Z" />
5
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
2
+ <path fill="currentColor"
3
+ d="M.519 4.193 4.47 6.008a1.288 1.288 0 0 0 .53.117 1.273 1.273 0 0 0 .537-.119l3.947-1.837a.887.887 0 0 0 0-1.612L5.526.741a1.272 1.272 0 0 0-1.069 0L.516 2.58a.889.889 0 0 0 0 1.613Z" />
4
+ <path fill="currentColor"
5
+ d="M8.774 6.144 5.106 7.851a.243.243 0 0 1-.209 0L1.212 6.159a.75.75 0 1 0-.626 1.363L4.27 9.215a1.751 1.751 0 0 0 1.469 0L9.407 7.5a.75.75 0 1 0-.633-1.36Z" />
6
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor"
3
+ d="M10.715-.001a1.5 1.5 0 0 0-1.07.449L1.407 8.645a.5.5 0 0 0-.128.22l-1.26 4.5a.5.5 0 0 0 .616.616l4.5-1.26a.5.5 0 0 0 .22-.128l8.197-8.238.002-.001a1.5 1.5 0 0 0 0-2.128l-.002-.001L11.786.449a1.499 1.499 0 0 0-1.071-.45Z" />
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path fill="currentColor"
3
+ d="M17.19 11A6.27 6.27 0 0 0 12.84.25H4.3a1.25 1.25 0 0 0 0 2.5h1a.25.25 0 0 1 .26.25v18a.25.25 0 0 1-.25.25h-1a1.25 1.25 0 0 0 0 2.5h10A6.74 6.74 0 0 0 17.19 11Zm-4.35-8.25a3.76 3.76 0 0 1 0 7.52H8.31a.25.25 0 0 1-.25-.27V3a.25.25 0 0 1 .25-.25Zm1.42 18.5H8.31a.25.25 0 0 1-.25-.25v-8a.25.25 0 0 1 .25-.25h5.95a4.24 4.24 0 0 1 0 8.48Z" />
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <g fill="currentColor">
3
+ <path
4
+ d="M9.15 21.55a1.23 1.23 0 0 1-.9-.38L.84 13.56a2.25 2.25 0 0 1 0-3.12l7.41-7.62A1.25 1.25 0 1 1 10 4.57l-6.85 7.08a.5.5 0 0 0 0 .7L10 19.43a1.24 1.24 0 0 1-.89 2.12ZM14.85 21.55a1.24 1.24 0 0 1-.85-2.12l6.89-7.08a.5.5 0 0 0 0-.7L14 4.57a1.25 1.25 0 1 1 1.79-1.75l7.41 7.62a2.25 2.25 0 0 1 0 3.12l-7.41 7.61a1.23 1.23 0 0 1-.94.38Zm6.52-9.37Z" />
5
+ </g>
6
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
2
+ <g clip-path="url(#a)">
3
+ <path fill="currentColor" fill-rule="evenodd"
4
+ d="m11.85 19.975-6.4-6.4 10.8-10.8c1.8-1.8 4.6-1.8 6.4 0 1.8 1.8 1.8 4.6 0 6.4l-10.8 10.8Zm-4.9 2.6h-7l6-6.5 3.5 3.5-2.5 3Zm8 1h9v-2h-9v2Z"
5
+ clip-rule="evenodd" />
6
+ </g>
7
+ <defs>
8
+ <clipPath id="a">
9
+ <path fill="#fff" d="M0 0h24v24H0z" />
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path fill="currentColor"
3
+ d="M22.5.25h-7.64a1.25 1.25 0 0 0 0 2.5H16a.26.26 0 0 1 .22.13.25.25 0 0 1 0 .25L4.78 21a.5.5 0 0 1-.42.23H1.5a1.25 1.25 0 0 0 0 2.5h7.64a1.25 1.25 0 0 0 0-2.5H8.05a.26.26 0 0 1-.22-.13.27.27 0 0 1 0-.26L19.22 3a.5.5 0 0 1 .42-.23h2.86a1.25 1.25 0 0 0 0-2.5Z" />
4
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <g fill="currentColor">
3
+ <path
4
+ d="m10.46 18.37-2.74 2.74a2.86 2.86 0 0 1-3.94 0l-.89-.89a2.77 2.77 0 0 1-.82-2 2.74 2.74 0 0 1 .82-2l5.8-5.81a2.8 2.8 0 0 1 3.94 0l.89.9A1 1 0 1 0 14.94 10l-.89-.89a4.79 4.79 0 0 0-6.77 0l-5.81 5.8a4.79 4.79 0 0 0 0 6.77l.89.89a4.78 4.78 0 0 0 6.78 0l2.73-2.73a1 1 0 0 0 0-1.42 1 1 0 0 0-1.41-.05Z" />
5
+ <path
6
+ d="m22.53 2.36-.9-.89a4.8 4.8 0 0 0-6.77 0L12 4.38a1 1 0 1 0 1.41 1.41l2.91-2.9a2.79 2.79 0 0 1 3.94 0l.89.9a2.74 2.74 0 0 1 .82 2 2.77 2.77 0 0 1-.82 2l-5.8 5.8a2.77 2.77 0 0 1-2 .82 2.75 2.75 0 0 1-2-.82A1 1 0 0 0 10 14.93a4.76 4.76 0 0 0 3.39 1.41 4.75 4.75 0 0 0 3.38-1.4l5.81-5.81a4.79 4.79 0 0 0 0-6.77Z" />
7
+ </g>
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path fill="currentColor"
3
+ d="M23.75 13a1.25 1.25 0 0 0-1.25-1.3h-8.94a.49.49 0 0 1-.28-.09c-.72-.51-1.48-1-2.22-1.43-2.79-1.72-4.49-2.9-4.49-4.86 0-2.24 2.21-2.57 3.52-2.57a4.53 4.53 0 0 1 3.08.76 2.69 2.69 0 0 1 .45 2v.29a1.25 1.25 0 0 0 2.5 0v-.27A4.89 4.89 0 0 0 15 1.76C14 .74 12.36.25 10.09.25c-3.66 0-6 2-6 5.07 0 2.77 1.89 4.51 4 5.92a.26.26 0 0 1 .1.28.25.25 0 0 1-.24.18H1.5a1.25 1.25 0 0 0 0 2.5h11a.27.27 0 0 1 .16.06 4.36 4.36 0 0 1 1.93 3.47c0 3.26-3.43 3.52-4.48 3.52-1.81 0-3.14-.41-3.83-1.17a3.4 3.4 0 0 1-.65-2.71 1.25 1.25 0 1 0-2.49-.24 5.75 5.75 0 0 0 1.26 4.62c1.2 1.33 3.12 2 5.69 2 4.17 0 7-2.42 7-6a6 6 0 0 0-.85-3.15.23.23 0 0 1 0-.25.23.23 0 0 1 .21-.13h6.05A1.25 1.25 0 0 0 23.75 13Z" />
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <g fill="currentColor">
3
+ <path
4
+ d="M22.5 21.25h-21a1.25 1.25 0 0 0 0 2.5h21a1.25 1.25 0 0 0 0-2.5ZM2 2.75h1.34a.25.25 0 0 1 .25.25v8.52a8.41 8.41 0 0 0 16.82 0V3a.25.25 0 0 1 .25-.25H22a1.25 1.25 0 0 0 0-2.5h-5.7a1.25 1.25 0 0 0 0 2.5h1.36a.25.25 0 0 1 .25.25v8.52a5.91 5.91 0 0 1-11.82 0V3a.25.25 0 0 1 .25-.25H7.7a1.25 1.25 0 0 0 0-2.5H2a1.25 1.25 0 0 0 0 2.5Z" />
5
+ </g>
6
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
2
+ <path
3
+ d="M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" />
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path fill="currentColor"
3
+ d="M12 0a12.24 12.24 0 0 0-8.53 3.65A11.85 11.85 0 0 0 0 12.21 11.78 11.78 0 0 0 11.8 24h.2a12.11 12.11 0 0 0 12-12.21A11.77 11.77 0 0 0 12 0Zm-1.5 16.54A1.48 1.48 0 0 1 12 15a1.53 1.53 0 0 1 1.52 1.47A1.47 1.47 0 0 1 12.05 18a1.53 1.53 0 0 1-1.55-1.46Zm.5-4v-6a1 1 0 0 1 2 0v6a1 1 0 0 1-2 0Z" />
4
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 9">
2
+ <g fill="none" fill-rule="evenodd" transform="translate(.67 .67)">
3
+ <rect transform="rotate(180 4 4)" />
4
+ <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width=".5"
5
+ d="M2.85 1.73h3.4v3.4m0-3.4L1.74 6.24" />
6
+ </g>
7
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path fill="currentColor"
3
+ d="M22.5 4.5H11.74a.5.5 0 0 1-.45-.28l-.95-1.89A1.5 1.5 0 0 0 9 1.5H1.5A1.5 1.5 0 0 0 0 3v18a1.5 1.5 0 0 0 1.5 1.5h21A1.5 1.5 0 0 0 24 21V6a1.5 1.5 0 0 0-1.5-1.5Z" />
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 1024 1024">
2
+ <path
3
+ d="M512 0a512 512 0 0 0-162 998c26 4 35-11 35-25l-1-95c-128 23-161-32-172-60-6-15-31-61-52-73-18-10-44-33-1-33 40-1 69 37 78 52 46 78 120 56 149 43 5-33 18-56 33-69-114-13-234-56-234-253 0-56 20-101 53-137-5-13-23-65 5-136 0 0 43-13 141 53a487 487 0 0 1 256 0c98-66 141-53 141-53 28 71 10 123 5 136 33 36 53 81 53 137 0 197-120 240-234 253 18 16 35 47 35 95l-1 140c0 14 9 30 35 25A512 512 0 0 0 512 0z" />
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 488 512" fill="currentColor">
2
+ <path
3
+ d="M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z" />
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M.264 1.324a.75.75 0 0 1 1.06-1.06l2.629 2.628C4.86 2.393 5.893 2.04 7 2.04c1.532 0 2.92.676 4.035 1.48 1.118.805 2.003 1.769 2.539 2.416l.004.006c.24.298.366.675.366 1.058s-.126.76-.366 1.058l-.004.006a14.476 14.476 0 0 1-2.249 2.2l2.411 2.412a.75.75 0 1 1-1.06 1.06L.264 1.324Zm8.753 6.632a2.232 2.232 0 0 0-2.974-2.974l2.974 2.974Zm-8.59-2.02c.319-.386.762-.884 1.305-1.394l7.104 7.104A5.726 5.726 0 0 1 7 11.96c-1.532 0-2.92-.676-4.035-1.48C1.847 9.676.962 8.712.426 8.065l-.004-.006A1.692 1.692 0 0 1 .056 7c0-.383.126-.76.366-1.058l.004-.006Z"
4
+ clip-rule="evenodd" />
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M10.293 1.293a1 1 0 0 1 1.414 0l2 2a1 1 0 0 1-1.414 1.414L11 3.414 9.914 4.5l1.293 1.293a1 1 0 0 1-1.414 1.414L8.5 5.914 7.446 6.968a4 4 0 1 1-1.414-1.414l1.757-1.757.004-.004.004-.004 2.496-2.496ZM2 9a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z"
4
+ clip-rule="evenodd" />
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M1.625.258A.747.747 0 0 0 1.44.75v9.62a1.712 1.712 0 0 0 .942 1.523l.002.001 3.845 1.923.337-.67-.335.67H6.23a1.711 1.711 0 0 0 2.48-1.524v-.214h2.136a1.712 1.712 0 0 0 1.712-1.711V1.712A1.712 1.712 0 0 0 10.847 0H2.191a.747.747 0 0 0-.566.258ZM8.712 10.58h2.135a.212.212 0 0 0 .212-.211V1.712a.212.212 0 0 0-.212-.212H5.373l2.395 1.195.002.001a1.712 1.712 0 0 1 .942 1.538v.003l-.75-.005h.75v6.347Z"
4
+ clip-rule="evenodd" />
5
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
2
+ <g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" transform="scale(3.42857)">
3
+ <circle cx="7" cy="7" r="3.3" />
4
+ <path d="M7 .5v1m0 11v1M13.5 7h-1m-11 0h-1m11.1-4.6-.7.7m-7.8 7.8-.7.7m9.2 0-.7-.7M3.1 3.1l-.7-.7" />
5
+ </g>
6
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M8.635.154a2 2 0 0 1 2.19.438l2.588 2.618a2 2 0 0 1-.003 2.834l-2.299 2.299a1 1 0 1 1-1.414-1.414l2.3-2.3.003-.003-.007-.007L9.404 2l-.003.003-2.33 2.33a1 1 0 0 1-1.414-1.414L7.986.589a2 2 0 0 1 .65-.435ZM4.333 5.627a1 1 0 0 1 0 1.414l-2.33 2.33L2 9.374l.003.003 2.62 2.62.003.003.003-.003 2.33-2.33a1 1 0 0 1 1.414 1.414l-2.329 2.33a2 2 0 0 1-2.837-.001L.59 10.793a2 2 0 0 1 0-2.837l2.329-2.329a1 1 0 0 1 1.414 0Zm4.874.58a1 1 0 0 0-1.414-1.414l-3 3a1 1 0 0 0 1.414 1.414l3-3Z"
4
+ clip-rule="evenodd" />
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 42" fill="currentColor">
2
+ <path
3
+ d="M3 42c-.8 0-1.5-.3-2.1-.9-.6-.6-.9-1.3-.9-2.1V17.3c0-.8.3-1.5.9-2.1.6-.6 1.3-.9 2.1-.9h3.5V9.5c0-2.6 1-4.9 2.8-6.7A9.2 9.2 0 0 1 16 0c2.6 0 4.9 1 6.7 2.8 1.9 1.8 2.8 4 2.8 6.7v4.8H29c.8 0 1.5.3 2.1.9.6.6.9 1.3.9 2.1V39c0 .8-.3 1.5-.9 2.1-.6.6-1.3.9-2.1.9H3Zm6.5-27.7h13V9.5c0-1.8-.6-3.3-1.9-4.6A6.3 6.3 0 0 0 16 3c-1.8 0-3.3.6-4.6 1.9a6.3 6.3 0 0 0-1.9 4.6v4.8ZM3 39V17.3 39Z" />
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 593 593">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M347 0c6 0 12 5 12 12v134l94-95c5-5 13-5 17 0l72 72c4 4 5 12 0 16v1l-95 94h134c7 0 12 5 12 12v101c0 7-5 12-12 12H447l95 94c4 5 5 13 0 17l-72 72c-4 4-12 5-16 0h-1l-94-95v134c0 7-5 12-12 12H246c-7 0-12-5-12-12v-70c0-22 9-43 24-59l130-130c14-14 14-37 0-51L259 142a84 84 0 0 1-25-59V12c0-7 5-12 12-12h101ZM138 52h1l219 219c14 14 14 37 0 51L139 542c-4 5-12 5-17 0l-71-70c-4-5-5-12 0-17l95-96H12c-7 0-12-5-12-12V246c0-7 5-12 12-12h134l-95-94c-4-5-4-12 0-17l71-71c4-5 12-5 16 0Z" />
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 662 662">
2
+ <path fill-rule="evenodd" fill="currentColor"
3
+ d="M331 0a331 331 0 1 1 0 662 331 331 0 0 1 0-662Zm148.5 109 .6.9a187 187 0 1 1-297.6-.9 267 267 0 1 0 297 0Z" />
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 620 620">
2
+ <path fill="currentColor"
3
+ d="M-.653 309.29c-.078 82.272 31.848 159.735 89.739 218.178l.283.283c122.379 121.247 319.824 121.184 440.16-.283 119.967-121.1 119.409-316.933-.998-437.339l-.99-.99C468.681 30.845 390.716-1.017 307.893-.67c-82.83.354-160.443 32.994-218.814 91.79C31.209 149.555-.724 227.025-.653 309.29Zm469.271-160.789.778.778c87.9 87.9 88.325 231.005.707 319.33-77.753 78.46-199.786 87.412-288.959 26.862l198.513-198.513-.007 166.361 83.68-.07v-306.22H157.11l-.008 83.6h160.584L121.994 436.323c-59.347-87.689-50.536-208.59 26.51-286.343C236.34 61.294 379.94 60.67 468.61 148.494Z" />
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 642 642" fill="currentColor">
2
+ <path
3
+ d="M321 0a321 321 0 1 1 0 642 321 321 0 0 1 0-642Zm51.3 63L321 189.5 269.7 63l1 136.5-95.8-97.2L228 228l-125.7-53.1 97.2 95.8-136.5-1L189.5 321 63 372.3l136.5-1-97.2 95.8 125.7-53-53.1 125.6 95.8-97.2-1 136.5L321 452.5 372.3 579l-1-136.5 95.8 97.2-53-125.7 125.6 53.1-97.2-95.8 136.5 1L452.5 321 579 269.7l-136.5 1 97.2-95.8L414 228l53.1-125.7-95.8 97.2 1-136.5Z" />
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 620 620" fill="currentColor">
2
+ <path
3
+ d="M529.2 90.8A310 310 0 1 0 90.8 529.2 310 310 0 0 0 529.2 90.8M122.4 498.2c-54.9-55-15.4-183.5 88.2-287 103.6-103.7 232.1-143.2 287-88.3 54.9 54.8 15.4 183.4-88.3 287-103.5 103.6-232 143.1-286.9 88.3m261.8-262.7A104.7 104.7 0 1 1 236 383.7a104.7 104.7 0 0 1 148.2-148.2" />
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M8.75 0a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0V.75A.75.75 0 0 1 8.75 0Zm4.03 2.28a.75.75 0 0 0-1.06-1.06l-1 1a.75.75 0 0 0 1.06 1.06l1-1ZM9.707 5.707a1 1 0 0 0-1.414-1.414l-8 8a1 1 0 1 0 1.414 1.414l8-8ZM11.75 4.5a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5Zm-1.53 2.22a.75.75 0 0 1 1.06 0l1 1a.75.75 0 0 1-1.06 1.06l-1-1a.75.75 0 0 1 0-1.06Zm-3.94-5a.75.75 0 0 0-1.06 1.06l1 1a.75.75 0 0 0 1.06-1.06l-1-1Z"
4
+ clip-rule="evenodd" />
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 14 14">
2
+ <path fill="none" stroke="currentColor" d="M14 3.4H0m14 7.2H0" />
3
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <g fill="currentColor">
3
+ <path
4
+ d="M11.28 6.13a.24.24 0 0 0-.12-.24C9.9 5.1 7 3.86 1.51 3.79a.47.47 0 0 0-.36.14.48.48 0 0 0-.15.36v15.76a.49.49 0 0 0 .49.5c5.15.07 8 1.15 9.39 1.93a.23.23 0 0 0 .25 0 .26.26 0 0 0 .12-.21s-.01-15.84.03-16.14Zm7.97 11.32a.76.76 0 0 1-.62.74 8.34 8.34 0 0 0-4.3 2.25 8.28 8.28 0 0 0-1 1.43.26.26 0 0 0 0 .3.26.26 0 0 0 .29 0 21.05 21.05 0 0 1 8.88-1.67.49.49 0 0 0 .49-.5V4.29a.48.48 0 0 0-.15-.36.47.47 0 0 0-.36-.14c-1.11 0-2.11.08-3 .17a.26.26 0 0 0-.22.25Z" />
5
+ <path
6
+ d="M17.57 16.9a.25.25 0 0 0 .18-.24V1.73a.24.24 0 0 0-.11-.2.23.23 0 0 0-.23 0 7.74 7.74 0 0 0-3.08 1.94 5.49 5.49 0 0 0-1.58 3v12.84a.24.24 0 0 0 .16.23.26.26 0 0 0 .28-.06 9.31 9.31 0 0 1 4.38-2.58Z" />
7
+ </g>
8
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M8 1a1 1 0 0 0-2 0v1.4h-.5A2.7 2.7 0 0 0 2.8 5c0 .5.1 1.1.5 1.6a2.7 2.7 0 0 0 1.7 1L6 8v1.7H4.3a1 1 0 1 0 0 2H6V13a1 1 0 1 0 2 0v-1.3h.5c1.6 0 2.6-1.2 2.7-2.5a2.6 2.6 0 0 0-2.2-3H8V4.3h1.7a1 1 0 0 0 0-2H8V1ZM6 4.5h-.5c-.4 0-.7.3-.7.7 0 .4.2.6.5.7H6V4.5ZM8 8v1.5h.5c.2 0 .4 0 .5-.2l.2-.5-.1-.4-.4-.3H8Z"
4
+ clip-rule="evenodd" />
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="currentColor">
2
+ <path
3
+ d="M16 32c-4.4 0-8.2-1.6-11.3-4.7A15.4 15.4 0 0 1 0 16c0-4.4 1.6-8.2 4.7-11.3C7.7 1.6 11.6 0 16 0a15.5 15.5 0 0 1 13 6.4V0h3v12.7H19.3v-3h8.4c-1.3-2-2.9-3.6-4.8-4.8C20.9 3.5 18.6 3 16 3c-3.6 0-6.7 1.3-9.2 3.8A12.5 12.5 0 0 0 3 16c0 3.6 1.3 6.7 3.8 9.2a13.1 13.1 0 0 0 21.6-4.9h3.1A16 16 0 0 1 16 32Z" />
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor">
2
+ <path fill-rule="evenodd"
3
+ d="M12.6 11.2h.1l3 3a1 1 0 1 1-1.4 1.5l-3-3a1 1 0 0 1-.1-.1 7 7 0 1 1 1.4-1.4zM7 12A5 5 0 1 0 7 2a5 5 0 0 0 0 10z" />
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M2.933 3.491C4.056 2.681 5.456 2 7 2s2.944.682 4.067 1.491c1.128.812 2.02 1.784 2.56 2.437l.005.005c.241.3.368.681.368 1.067 0 .386-.127.766-.368 1.067l-.005.005c-.54.653-1.432 1.625-2.56 2.437C9.944 11.32 8.544 12 7 12s-2.944-.682-4.067-1.49C1.805 9.696.913 8.724.373 8.071l-.005-.005A1.7 1.7 0 0 1 0 7c0-.386.127-.766.368-1.067l.005-.005c.54-.653 1.432-1.625 2.56-2.437ZM7 9.25a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Z"
4
+ clip-rule="evenodd" />
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140 140">
2
+ <path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="14"
3
+ d="M135 135H10a5 5 0 0 1-4-9l53-52a5 5 0 0 0 0-8L6 14a5 5 0 0 1 4-9h125" />
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
2
+ <path fill="currentColor" fill-rule="evenodd"
3
+ d="M5.763 2.013a1.75 1.75 0 0 1 2.914.737H5.323a1.75 1.75 0 0 1 .44-.737Zm-1.974.737a3.25 3.25 0 0 1 6.422 0H13a.75.75 0 0 1 0 1.5h-1v8.25a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 2 12.5V4.25H1a.75.75 0 1 1 0-1.5h2.789ZM5 5.876c.345 0 .625.28.625.625v4.002a.625.625 0 0 1-1.25 0V6.501c0-.345.28-.625.625-.625Zm4.625.625a.625.625 0 0 0-1.25 0v4.002a.625.625 0 0 0 1.25 0V6.501Z"
4
+ clip-rule="evenodd" />
5
+ </svg>
@@ -0,0 +1,65 @@
1
+ const icons = import.meta.glob('./*.svg', { as: 'raw', eager: true })
2
+
3
+ export const getIcon = (name: string) => {
4
+ const filename = `./${name}.svg`
5
+
6
+ if (icons[filename] === undefined) {
7
+ console.warn(`Could not find icon: ${name}`)
8
+ return ''
9
+ }
10
+
11
+ return icons[filename]
12
+ }
13
+
14
+ export type Icon =
15
+ | 'Add'
16
+ | 'ArrowDown'
17
+ | 'ArrowLeft'
18
+ | 'ArrowRight'
19
+ | 'ArrowUp'
20
+ | 'Background'
21
+ | 'CallToAction'
22
+ | 'Checkmark'
23
+ | 'ChevronDown'
24
+ | 'ChevronLeft'
25
+ | 'ChevronRight'
26
+ | 'ChevronUp'
27
+ | 'Close'
28
+ | 'DarkMode'
29
+ | 'Discord'
30
+ | 'Delete'
31
+ | 'Duplicate'
32
+ | 'Edit'
33
+ | 'EditorBold'
34
+ | 'EditorCode'
35
+ | 'EditorHighlight'
36
+ | 'EditorItalic'
37
+ | 'EditorLink'
38
+ | 'EditorStrike'
39
+ | 'EditorUnderline'
40
+ | 'Ellipses'
41
+ | 'Error'
42
+ | 'ExternalLink'
43
+ | 'Folder'
44
+ | 'GitHub'
45
+ | 'Google'
46
+ | 'Hide'
47
+ | 'Key'
48
+ | 'Leave'
49
+ | 'LightMode'
50
+ | 'Link'
51
+ | 'Lock'
52
+ | 'Logo'
53
+ | 'LogoAPI'
54
+ | 'LogoClient'
55
+ | 'LogoMarket'
56
+ | 'LogoSwagger'
57
+ | 'Magic'
58
+ | 'Menu'
59
+ | 'Page'
60
+ | 'Payment'
61
+ | 'Refresh'
62
+ | 'Search'
63
+ | 'Show'
64
+ | 'Sigma'
65
+ | 'Trash'
@@ -0,0 +1,2 @@
1
+ export { default as Icon } from './Icon.vue'
2
+ export { default as FlowIcon } from './FlowIcon.vue'
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M23.25 7.311 12.53 18.03a.749.749 0 0 1-1.06 0L.75 7.311"></path></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="M16.25 23.25 5.53 12.53a.749.749 0 0 1 0-1.06L16.25.75" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="m5.5.75 10.72 10.72a.749.749 0 0 1 0 1.06L5.5 23.25" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="M.75 17.189 11.47 6.47a.749.749 0 0 1 1.06 0l10.72 10.719" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="M12 .75v22.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M1.5 12.75 12 23.25l10.5-10.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="M23.25 12H.75" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11.25 1.5.75 12l10.5 10.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="M.75 12h22.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12.75 22.5 23.25 12 12.75 1.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="M12 23.25V.75" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M22.5 11.25 12 .75 1.5 11.25" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"><path stroke="currentColor" stroke-linejoin="round" d="M12.707 22.88a1 1 0 0 1-1.414 0L1.119 12.708a1 1 0 0 1 0-1.414L11.293 1.119a1 1 0 0 1 1.414 0l10.174 10.174a1 1 0 0 1 0 1.414L12.707 22.881Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><defs></defs><title>hexagon-1</title><path d="M21.8 17.583V6.425a1.545 1.545 0 0 0-.854-1.383L12.691.913a1.546 1.546 0 0 0-1.381 0l-8.258 4.12A1.545 1.545 0 0 0 2.2 6.416v11.159a1.545 1.545 0 0 0 .854 1.383l8.258 4.129a1.548 1.548 0 0 0 1.382 0l8.257-4.121a1.545 1.545 0 0 0 .849-1.383Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="M.75 12a11.25 11.25 0 1 0 22.5 0 11.25 11.25 0 1 0-22.5 0Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><defs></defs><title>sign-badge-rectangular-round</title><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M2.25.75h19.5s1.5 0 1.5 1.5v19.5s0 1.5-1.5 1.5H2.25s-1.5 0-1.5-1.5V2.25s0-1.5 1.5-1.5"></path></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="M2.25 3.923v7.614A11.907 11.907 0 0 0 9.882 22.65l1.041.4a3 3 0 0 0 2.154 0l1.041-.4a11.907 11.907 0 0 0 7.632-11.113V3.923a1.487 1.487 0 0 0-.868-1.362A21.7 21.7 0 0 0 12 .75a21.7 21.7 0 0 0-8.882 1.811 1.487 1.487 0 0 0-.868 1.362Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M15.75 23.25h-7.5l.75-4.5h6l.75 4.5z"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M6 23.25h12"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M.75 14.75h22.5"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M3.75.75h16.5s3 0 3 3v12s0 3-3 3H3.75s-3 0-3-3v-12s0-3 3-3"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><defs></defs><title>desktop-computer-1</title><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M2.25 4.5h12s1.5 0 1.5 1.5v9s0 1.5-1.5 1.5h-12s-1.5 0-1.5-1.5V6s0-1.5 1.5-1.5"></path><path d="M18.75 7.5h1.5l1.5-1.5a1.5 1.5 0 0 1 1.5 1.5V18a1.5 1.5 0 0 1-1.5 1.5l-1.5-1.5h-1.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M8.25 16.5v3"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M5.25 19.5h6"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M20.25 10.5h-1.5"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M20.25 13.5h-1.5"></path></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="M21 14.25V4.5A1.5 1.5 0 0 0 19.5 3h-15A1.5 1.5 0 0 0 3 4.5v9.75Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M23.121 18.891A1.5 1.5 0 0 1 21.75 21H2.25a1.5 1.5 0 0 1-1.371-2.109L3 14.25h18Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M10.5 18h3" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><defs></defs><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M7.875.75h8.25s3 0 3 3v16.5s0 3-3 3h-8.25s-3 0-3-3V3.75s0-3 3-3"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M8.834 3.633h1.402s1 0 1 1v4.983s0 1-1 1H8.834s-1 0-1-1V4.633s0-1 1-1"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M16.125.75h-8.25a3 3 0 0 0-3 3v16.5a3 3 0 0 0 3 3h8.25a3 3 0 0 0 3-3V3.75a3 3 0 0 0-3-3Z"></path><path stroke="currentColor" d="M12 3.775a.25.25 0 1 1 0-.5"></path><path stroke="currentColor" d="M12 3.775a.25.25 0 1 0 0-.5"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M17.401.75H6.598c-1.08 0-1.957.876-1.957 1.957v18.586c0 1.08.876 1.957 1.957 1.957h10.803c1.08 0 1.957-.876 1.957-1.957V2.707c0-1.08-.876-1.957-1.957-1.957Z"></path><path stroke="currentColor" d="M8.459 8.695a.5.5 0 0 1 0-1"></path><path stroke="currentColor" d="M8.459 8.695a.5.5 0 0 0 0-1"></path><path stroke="currentColor" d="M8.459 4.945a.5.5 0 0 1 0-1"></path><path stroke="currentColor" d="M8.459 4.945a.5.5 0 0 0 0-1"></path><path stroke="currentColor" d="M11.959 6.945a.5.5 0 0 1 0-1"></path><path stroke="currentColor" d="M11.959 6.945a.5.5 0 0 0 0-1"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><defs></defs><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M6.598.75h10.803s1.957 0 1.957 1.957v18.586s0 1.957-1.957 1.957H6.598s-1.957 0-1.957-1.957V2.707S4.641.75 6.598.75"></path><path d="M15.02 4.052H8.98a1.06 1.06 0 0 1-1.049-.9L7.576.75h8.848l-.355 2.4a1.06 1.06 0 0 1-1.049.902Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="m13.5 22.5-2.929-2.344A1.637 1.637 0 0 1 10 18.48h0a1.637 1.637 0 0 1 2.321-1.067L13.5 18v-5.25a1.5 1.5 0 0 1 1.5-1.5h0a1.5 1.5 0 0 1 1.5 1.5v3l1.993.332A3 3 0 0 1 21 19.041V22.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M5.247 6h7.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M5.247 9h7.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M5.247 12h3.75" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M7.5 18H2.247a1.5 1.5 0 0 1-1.5-1.5V3a1.5 1.5 0 0 1 1.5-1.5h19.5a1.5 1.5 0 0 1 1.5 1.5v12" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M18.747 1.5v9" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><defs></defs><title>tablet-1</title><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M3.744 18.75h16.5"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M5.247.75h13.5s1.5 0 1.5 1.5v19.5s0 1.5-1.5 1.5h-13.5s-1.5 0-1.5-1.5V2.25s0-1.5 1.5-1.5"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><defs></defs><title>ethernet-port</title><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M3.75.75h16.5s3 0 3 3v16.5s0 3-3 3H3.75s-3 0-3-3V3.75s0-3 3-3"></path><path d="M18 6H6a1.5 1.5 0 0 0-1.5 1.5v6A1.5 1.5 0 0 0 6 15h3v1.5a1.5 1.5 0 0 0 1.5 1.5h3a1.5 1.5 0 0 0 1.5-1.5V15h3a1.5 1.5 0 0 0 1.5-1.5v-6A1.5 1.5 0 0 0 18 6Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M12 6v3.75"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M8.25 6v3.75"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M15.75 6v3.75"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M.75 12a11.25 11.25 0 1 0 22.5 0 11.25 11.25 0 1 0-22.5 0"></path><path d="M9.88 23.05c-1.57-2.2-2.63-6.33-2.63-11S8.31 3.15 9.88 1" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M14.12 23.05c1.57-2.2 2.63-6.33 2.63-11S15.69 3.15 14.12 1" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M.75 12h22.5"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M2.05 17.25h19.9"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M2.05 6.75h19.9"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="M9 18.75a3 3 0 1 0 6 0 3 3 0 1 0-6 0Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M17.3 13.447a7.5 7.5 0 0 0-10.606 0" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M20.485 10.265a12 12 0 0 0-16.97 0" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M23.25 6.681a16.5 16.5 0 0 0-22.5 0" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M4.125 21.751v1.5"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M19.875 21.751v1.5"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M9.75 15.001v6.75"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M17.25 15.001v-8.25"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M15.129 4.629a3 3 0 0 1 4.242 0"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M13.007 2.508a6 6 0 0 1 8.486 0"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M19.875 21.751a3.375 3.375 0 0 0 0-6.75H4.125a3.375 3.375 0 0 0 0 6.75h15.75Z"></path><path stroke="currentColor" d="M18.75 18.75a.375.375 0 0 1 0-.75"></path><path stroke="currentColor" d="M18.75 18.75a.375.375 0 0 0 0-.75"></path><g><path stroke="currentColor" d="M14.25 18.75a.375.375 0 0 1 0-.75"></path><path stroke="currentColor" d="M14.25 18.75a.375.375 0 0 0 0-.75"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><defs></defs><title>keyboard-alt</title><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M18 14.997v-6"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.997h3"></path><path d="M12 9v4.5a1.5 1.5 0 0 0 1.5 1.5H15" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M6 15v-4.5a1.5 1.5 0 0 1 3 0V15" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M6 11.997h3"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M4.5 1.497h15s3 0 3 3v15s0 3-3 3h-15s-3 0-3-3v-15s0-3 3-3"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M20.05.75H3.95c-1.8 0-3.2 1.4-3.2 3.2v16.1c0 1.8 1.4 3.2 3.2 3.2h16.1c1.8 0 3.2-1.4 3.2-3.2V3.95c0-1.7-1.4-3.2-3.2-3.2Z"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M16.55 14.25c1.2 0 2.2 1 2.2 2.2 0 1.2-1 2.2-2.2 2.2-1.2 0-2.2-1-2.2-2.2v-9c0-1.2 1-2.2 2.2-2.2 1.2 0 2.2 1 2.2 2.2 0 1.2-1 2.2-2.2 2.2h-9c-1.2 0-2.2-1-2.2-2.2 0-1.2 1-2.2 2.2-2.2 1.2 0 2.2 1 2.2 2.2v9c0 1.2-1 2.2-2.2 2.2-1.2 0-2.2-1-2.2-2.2 0-1.2 1-2.2 2.2-2.2h9Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><defs></defs><title>keyboard-option</title><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M4.5 1.497h15s3 0 3 3v15s0 3-3 3h-15s-3 0-3-3v-15s0-3 3-3"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M18 10.497h-4.5"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M6 10.497h3l3 4.5h6"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><defs></defs><title>keyboard-shift</title><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M4.5 1.497h15s3 0 3 3v15s0 3-3 3h-15s-3 0-3-3v-15s0-3 3-3"></path><path d="M16.5 12h2.248a.75.75 0 0 0 .531-1.28l-6.3-5.86a1.5 1.5 0 0 0-1.948 0L4.72 10.717A.75.75 0 0 0 5.25 12H7.5v6A1.5 1.5 0 0 0 9 19.5h6a1.5 1.5 0 0 0 1.5-1.5Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M6.726.75h10.5"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M15.726 8.25V.75h-7.5v7.5L1.489 18.615A3 3 0 0 0 4 23.25h15.948a3 3 0 0 0 2.515-4.635L15.726 8.25Z"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M5.301 12.75h13.35"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M14.226 17.25h3"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M15.726 15.75v3"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M15.726 3.75h-3"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M15.726 6.75h-3"></path><path stroke="currentColor" d="M6.726 19.875a.375.375 0 0 1 0-.75"></path><path stroke="currentColor" d="M6.726 19.875a.375.375 0 0 0 0-.75"></path><g><path stroke="currentColor" d="M9.726 16.875a.375.375 0 0 1 0-.75"></path><path stroke="currentColor" d="M9.726 16.875a.375.375 0 0 0 0-.75"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M.75 12a11.25 11.25 0 1 0 22.5 0 11.25 11.25 0 1 0-22.5 0"></path><path d="M9.28 8a1.64 1.64 0 0 1 1.13-.46A1.59 1.59 0 0 1 12 9.09v1.41L14.53 8a1.64 1.64 0 0 1 1.13-.46 1.59 1.59 0 0 1 1.59 1.59v5.82a1.59 1.59 0 0 1-1.59 1.59 1.61 1.61 0 0 1-1.13-.54L12 13.5v1.41a1.59 1.59 0 0 1-1.59 1.59 1.61 1.61 0 0 1-1.13-.5L6 12.71a1 1 0 0 1 0-1.42Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="M9.75 8.248v7.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M14.805 8.248v7.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M.75 11.998a11.25 11.25 0 1 0 22.5 0 11.25 11.25 0 1 0-22.5 0Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M.75 12a11.25 11.25 0 1 0 22.5 0 11.25 11.25 0 1 0-22.5 0"></path><path d="M14.72 8a1.64 1.64 0 0 0-1.13-.46A1.59 1.59 0 0 0 12 9.09v1.41L9.47 8a1.64 1.64 0 0 0-1.13-.5 1.59 1.59 0 0 0-1.59 1.59v5.82a1.59 1.59 0 0 0 1.59 1.59 1.61 1.61 0 0 0 1.13-.5L12 13.5v1.41a1.59 1.59 0 0 0 1.59 1.59 1.61 1.61 0 0 0 1.13-.5L18 12.71a1 1 0 0 0 0-1.42Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="M.75 11.998a11.25 11.25 0 1 0 22.5 0 11.25 11.25 0 1 0-22.5 0Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M8.25 8.248h7.5v7.5h-7.5Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="M.75 11.998a11.25 11.25 0 1 0 22.5 0 11.25 11.25 0 1 0-22.5 0Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M9 15.613a1.636 1.636 0 0 0 2.712 1.231L17.25 12l-5.538-4.847A1.635 1.635 0 0 0 9 8.384Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M15.243 16.182c1.025-1.026.194-3.519-1.856-5.569-2.05-2.05-4.544-2.881-5.569-1.856-1.025 1.025-.194 3.518 1.856 5.568 2.05 2.05 4.544 2.882 5.569 1.857Z"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M7.4 9.7.888 21.121a1.5 1.5 0 0 0 1.991 1.991L14.3 16.605"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M12.857.75c.211 1.89.03 3.803-.531 5.62"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m16.569 2.128-.53 2.651"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M23.25 11.143a13.837 13.837 0 0 0-5.62.531"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m21.872 7.431-2.651.53"></path><path stroke="currentColor" d="M8.083 5.154a.375.375 0 0 1 0-.75"></path><path stroke="currentColor" d="M8.083 5.154a.375.375 0 1 0 0-.75"></path><path stroke="currentColor" d="M15.508 8.337a.375.375 0 1 1 0-.75"></path><path stroke="currentColor" d="M15.508 8.337a.375.375 0 0 0 0-.75"></path><g><path stroke="currentColor" d="M19.75 4.094a.375.375 0 1 1 0-.75"></path><path stroke="currentColor" d="M19.75 4.094a.375.375 0 0 0 0-.75"></path></g><g><path stroke="currentColor" d="M19.75 14.7a.375.375 0 1 1 0-.75"></path><path stroke="currentColor" d="M19.75 14.7a.375.375 0 0 0 0-.75"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="m5.5 23.247 4.052-9.454a.751.751 0 0 0-.689-1.046H5.9a.749.749 0 0 1-.69-1.047L9.8 1.2a.75.75 0 0 1 .687-.45h7.7a.75.75 0 0 1 .585 1.219l-4.05 5.063a.75.75 0 0 0 .586 1.218h3.382a.75.75 0 0 1 .53 1.281Z" fill="none" stroke="currentColor" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M21.746 23.25H8.064a1.5 1.5 0 0 1-1.5-1.388l-2.96-19.5A1.5 1.5 0 0 1 5.095.75H18.78a1.5 1.5 0 0 1 1.5 1.388l2.965 19.5a1.5 1.5 0 0 1-1.5 1.612Z"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M5.15 12.512.75 23.25"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m7.235 3.75 2.44 16.5h9.941l-2.44-16.5h-9.94Z"></path><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m12.866 20.25 2.75-4.4a1.502 1.502 0 0 1 2.333-.266l1.15 1.151"></path><path stroke="currentColor" d="M11.175 11.625a.375.375 0 0 1 0-.75"></path><path stroke="currentColor" d="M11.175 11.625a.375.375 0 0 0 0-.75"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><g><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M2.25.75h19.5s1.5 0 1.5 1.5v19.5s0 1.5-1.5 1.5H2.25s-1.5 0-1.5-1.5V2.25s0-1.5 1.5-1.5"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M12 15.72v7.53"></path><path d="M13.69 13.82a.73.73 0 0 1 .35-.47.74.74 0 0 1 .58-.07 2.22 2.22 0 0 0 2.49-.51c.36-.61 0-1.64-.8-2.41a.78.78 0 0 1-.23-.54.76.76 0 0 1 .23-.54c.8-.77 1.16-1.81.8-2.42a2.22 2.22 0 0 0-2.49-.51.74.74 0 0 1-.62-.07.73.73 0 0 1-.35-.47c-.27-1.08-1-1.9-1.69-1.9s-1.42.82-1.69 1.9a.73.73 0 0 1-.35.47.74.74 0 0 1-.58.07 2.22 2.22 0 0 0-2.49.51c-.36.61 0 1.65.8 2.42a.76.76 0 0 1 .23.54.78.78 0 0 1-.23.54c-.8.77-1.16 1.8-.8 2.41a2.22 2.22 0 0 0 2.49.51.74.74 0 0 1 .58.07.73.73 0 0 1 .35.47c.27 1.08 1 1.9 1.69 1.9s1.46-.82 1.73-1.9Z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M10.5 9.75a1.5 1.5 0 1 0 3 0 1.5 1.5 0 1 0-3 0"></path><path d="M8.71 20.62A4.45 4.45 0 0 1 7 19.94c-1.76-1.08-3.17-4-3.17-4a9.21 9.21 0 0 1 5.19 1.2" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M15.35 20.62a4.33 4.33 0 0 0 1.65-.68c1.77-1.08 3.18-4 3.18-4a9.27 9.27 0 0 0-5.2 1.2" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></g></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" stroke-width="1.5"><path d="M.75 12h22.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12 .75v22.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke-width="1.5"><defs></defs><title>on-error-1</title><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M1.75 3h20.5s1 0 1 1v16s0 1-1 1H1.75s-1 0-1-1V4s0-1 1-1"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M12 6.75v6"></path><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M11.25 16.5a.75.75 0 1 0 1.5 0 .75.75 0 1 0-1.5 0"></path></svg>