adata-ui 3.0.2 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (316) hide show
  1. package/dist/module.d.mts +2 -0
  2. package/dist/module.json +5 -1
  3. package/dist/module.mjs +39 -6
  4. package/dist/runtime/components/Alert.vue +62 -0
  5. package/dist/runtime/components/Alert.vue.d.ts +29 -0
  6. package/dist/runtime/components/Chip.vue +24 -0
  7. package/dist/runtime/components/Chip.vue.d.ts +19 -0
  8. package/dist/runtime/components/ColorMode.vue +46 -0
  9. package/dist/runtime/components/ColorMode.vue.d.ts +2 -0
  10. package/dist/runtime/components/DigitBadge.vue +58 -0
  11. package/dist/runtime/components/DigitBadge.vue.d.ts +21 -0
  12. package/dist/runtime/components/Footer.vue +283 -0
  13. package/dist/runtime/components/Footer.vue.d.ts +2 -0
  14. package/dist/runtime/components/FooterAccordion.vue +78 -0
  15. package/dist/runtime/components/FooterAccordion.vue.d.ts +11 -0
  16. package/dist/runtime/components/Header.vue +139 -0
  17. package/dist/runtime/components/Header.vue.d.ts +41 -0
  18. package/dist/runtime/components/NewFooter.vue +267 -0
  19. package/dist/runtime/components/NewFooter.vue.d.ts +2 -0
  20. package/dist/runtime/components/NewFooterAccordion.vue +85 -0
  21. package/dist/runtime/components/NewFooterAccordion.vue.d.ts +11 -0
  22. package/dist/runtime/components/OtherServiceFeatures.vue +104 -0
  23. package/dist/runtime/components/OtherServiceFeatures.vue.d.ts +2 -0
  24. package/dist/runtime/components/Tag.vue +46 -0
  25. package/dist/runtime/components/Tag.vue.d.ts +25 -0
  26. package/dist/runtime/components/Toggle.vue +139 -0
  27. package/dist/runtime/components/Toggle.vue.d.ts +39 -0
  28. package/dist/runtime/components/accordion/Accordion.vue +149 -0
  29. package/dist/runtime/components/accordion/Accordion.vue.d.ts +41 -0
  30. package/dist/runtime/components/accordion/types.d.ts +15 -0
  31. package/dist/runtime/components/accordion/types.js +0 -0
  32. package/dist/runtime/components/accordion/ui.config.d.ts +22 -0
  33. package/dist/runtime/components/accordion/ui.config.js +21 -0
  34. package/dist/runtime/components/button/Button.vue +133 -0
  35. package/dist/runtime/components/button/Button.vue.d.ts +37 -0
  36. package/dist/runtime/components/button/types.d.ts +21 -0
  37. package/dist/runtime/components/button/types.js +0 -0
  38. package/dist/runtime/components/checkbox/Checkbox.vue +124 -0
  39. package/dist/runtime/components/checkbox/Checkbox.vue.d.ts +45 -0
  40. package/dist/runtime/components/date-picker/DatePicker.vue +102 -0
  41. package/dist/runtime/components/date-picker/DatePicker.vue.d.ts +16 -0
  42. package/dist/runtime/components/floating-label/FloatingLabel.vue +22 -0
  43. package/dist/runtime/components/floating-label/FloatingLabel.vue.d.ts +16 -0
  44. package/dist/runtime/components/forms/input/standard/InputStandard.vue +301 -0
  45. package/dist/runtime/components/forms/input/standard/InputStandard.vue.d.ts +0 -0
  46. package/dist/runtime/components/forms/input/textarea/ATextarea.vue +158 -0
  47. package/dist/runtime/components/forms/input/textarea/ATextarea.vue.d.ts +43 -0
  48. package/dist/runtime/components/forms/need-more-data/NeedMoreData.vue +114 -0
  49. package/dist/runtime/components/forms/need-more-data/NeedMoreData.vue.d.ts +5 -0
  50. package/dist/runtime/components/forms/request-demo/RequestDemo.vue +67 -0
  51. package/dist/runtime/components/forms/request-demo/RequestDemo.vue.d.ts +23 -0
  52. package/dist/runtime/components/header/AlmatyContacts.vue +120 -0
  53. package/dist/runtime/components/header/AlmatyContacts.vue.d.ts +2 -0
  54. package/dist/runtime/components/header/AstanaContacts.vue +65 -0
  55. package/dist/runtime/components/header/AstanaContacts.vue.d.ts +2 -0
  56. package/dist/runtime/components/header/CardGallery.vue +156 -0
  57. package/dist/runtime/components/header/CardGallery.vue.d.ts +2 -0
  58. package/dist/runtime/components/header/ContactMenu.vue +105 -0
  59. package/dist/runtime/components/header/ContactMenu.vue.d.ts +11 -0
  60. package/dist/runtime/components/header/HeaderLink.vue +169 -0
  61. package/dist/runtime/components/header/HeaderLink.vue.d.ts +2 -0
  62. package/dist/runtime/components/header/LangSwitcher.vue +48 -0
  63. package/dist/runtime/components/header/LangSwitcher.vue.d.ts +2 -0
  64. package/dist/runtime/components/header/ListItem.vue +26 -0
  65. package/dist/runtime/components/header/ListItem.vue.d.ts +7 -0
  66. package/dist/runtime/components/header/NavCard.vue +40 -0
  67. package/dist/runtime/components/header/NavCard.vue.d.ts +8 -0
  68. package/dist/runtime/components/header/NavList.vue +101 -0
  69. package/dist/runtime/components/header/NavList.vue.d.ts +17 -0
  70. package/dist/runtime/components/header/ProductMenu.vue +369 -0
  71. package/dist/runtime/components/header/ProductMenu.vue.d.ts +11 -0
  72. package/dist/runtime/components/header/ProfileMenu.vue +56 -0
  73. package/dist/runtime/components/header/ProfileMenu.vue.d.ts +16 -0
  74. package/dist/runtime/components/header/ProfileMenuContent.vue +228 -0
  75. package/dist/runtime/components/header/ProfileMenuContent.vue.d.ts +16 -0
  76. package/dist/runtime/components/header/TopHeader.vue +152 -0
  77. package/dist/runtime/components/header/TopHeader.vue.d.ts +10 -0
  78. package/dist/runtime/components/header/types.d.ts +19 -0
  79. package/dist/runtime/components/header/types.js +0 -0
  80. package/dist/runtime/components/header-mobile/HeaderMobile.vue +53 -0
  81. package/dist/runtime/components/header-mobile/HeaderMobile.vue.d.ts +17 -0
  82. package/dist/runtime/components/mobile-navigation/BottomNavigation.vue +68 -0
  83. package/dist/runtime/components/mobile-navigation/BottomNavigation.vue.d.ts +29 -0
  84. package/dist/runtime/components/mobile-navigation/MainButton.vue +16 -0
  85. package/dist/runtime/components/mobile-navigation/MainButton.vue.d.ts +2 -0
  86. package/dist/runtime/components/mobile-navigation/MobileProductMenu.vue +261 -0
  87. package/dist/runtime/components/mobile-navigation/MobileProductMenu.vue.d.ts +2 -0
  88. package/dist/runtime/components/modals/NoAccessContent.vue +58 -0
  89. package/dist/runtime/components/modals/NoAccessContent.vue.d.ts +5 -0
  90. package/dist/runtime/components/pill-tabs/PillTabs.vue +137 -0
  91. package/dist/runtime/components/pill-tabs/PillTabs.vue.d.ts +38 -0
  92. package/dist/runtime/components/pill-tabs/types.d.ts +18 -0
  93. package/dist/runtime/components/pill-tabs/types.js +0 -0
  94. package/dist/runtime/components/radio-button/RadioButton.vue +69 -0
  95. package/dist/runtime/components/radio-button/RadioButton.vue.d.ts +40 -0
  96. package/dist/runtime/components/row-card/RowCard.vue +44 -0
  97. package/dist/runtime/components/row-card/RowCard.vue.d.ts +26 -0
  98. package/dist/runtime/components/select-row/index.vue +117 -0
  99. package/dist/runtime/components/select-row/index.vue.d.ts +31 -0
  100. package/dist/runtime/components/tree-select/TreeSelect.vue +132 -0
  101. package/dist/runtime/components/tree-select/TreeSelect.vue.d.ts +22 -0
  102. package/dist/runtime/components/tree-select/TreeService.d.ts +54 -0
  103. package/dist/runtime/components/tree-select/TreeService.js +209 -0
  104. package/dist/runtime/components/tree-select/components/tree-select-nodes.vue +100 -0
  105. package/dist/runtime/components/tree-select/components/tree-select-nodes.vue.d.ts +9 -0
  106. package/dist/runtime/components/tree-select/types.d.ts +29 -0
  107. package/dist/runtime/components/tree-select/types.js +0 -0
  108. package/dist/runtime/composables/highlight.d.ts +1 -0
  109. package/dist/runtime/composables/highlight.js +15 -0
  110. package/dist/runtime/composables/projectState.d.ts +2 -0
  111. package/dist/runtime/composables/projectState.js +3 -0
  112. package/dist/runtime/i18n/i18n.config.d.ts +1731 -0
  113. package/dist/runtime/i18n/i18n.config.js +20 -0
  114. package/dist/runtime/i18n.d.ts +2 -0
  115. package/dist/runtime/i18n.js +15 -0
  116. package/dist/runtime/icons/arrow/arrow-circle-down.vue +30 -0
  117. package/dist/runtime/icons/arrow/arrow-circle-down.vue.d.ts +2 -0
  118. package/dist/runtime/icons/arrow/arrow-graph-up.vue +24 -0
  119. package/dist/runtime/icons/arrow/arrow-graph-up.vue.d.ts +2 -0
  120. package/dist/runtime/icons/arrow/arrow-right.vue +24 -0
  121. package/dist/runtime/icons/arrow/arrow-right.vue.d.ts +2 -0
  122. package/dist/runtime/icons/arrow/arrow-side-up.vue +19 -0
  123. package/dist/runtime/icons/arrow/arrow-side-up.vue.d.ts +2 -0
  124. package/dist/runtime/icons/arrow/arrow-top-right-on-square.vue +19 -0
  125. package/dist/runtime/icons/arrow/arrow-top-right-on-square.vue.d.ts +2 -0
  126. package/dist/runtime/icons/arrow/chevron-down.vue +19 -0
  127. package/dist/runtime/icons/arrow/chevron-down.vue.d.ts +2 -0
  128. package/dist/runtime/icons/avatar.vue +41 -0
  129. package/dist/runtime/icons/avatar.vue.d.ts +2 -0
  130. package/dist/runtime/icons/avto/car.vue +17 -0
  131. package/dist/runtime/icons/avto/car.vue.d.ts +2 -0
  132. package/dist/runtime/icons/avto/truck.vue +17 -0
  133. package/dist/runtime/icons/avto/truck.vue.d.ts +2 -0
  134. package/dist/runtime/icons/block.vue +19 -0
  135. package/dist/runtime/icons/block.vue.d.ts +2 -0
  136. package/dist/runtime/icons/bookmark.vue +19 -0
  137. package/dist/runtime/icons/bookmark.vue.d.ts +2 -0
  138. package/dist/runtime/icons/calculator.vue +19 -0
  139. package/dist/runtime/icons/calculator.vue.d.ts +2 -0
  140. package/dist/runtime/icons/calendar.vue +24 -0
  141. package/dist/runtime/icons/calendar.vue.d.ts +2 -0
  142. package/dist/runtime/icons/check-circle.vue +25 -0
  143. package/dist/runtime/icons/check-circle.vue.d.ts +2 -0
  144. package/dist/runtime/icons/checkbox/checkbox-active.vue +19 -0
  145. package/dist/runtime/icons/checkbox/checkbox-active.vue.d.ts +2 -0
  146. package/dist/runtime/icons/checkbox/checkbox-empty.vue +20 -0
  147. package/dist/runtime/icons/checkbox/checkbox-empty.vue.d.ts +2 -0
  148. package/dist/runtime/icons/checkbox/checkbox-intermediate.vue +19 -0
  149. package/dist/runtime/icons/checkbox/checkbox-intermediate.vue.d.ts +2 -0
  150. package/dist/runtime/icons/clipboard-text.vue +17 -0
  151. package/dist/runtime/icons/clipboard-text.vue.d.ts +2 -0
  152. package/dist/runtime/icons/clock.vue +25 -0
  153. package/dist/runtime/icons/clock.vue.d.ts +2 -0
  154. package/dist/runtime/icons/color-mode/moon.vue +20 -0
  155. package/dist/runtime/icons/color-mode/moon.vue.d.ts +2 -0
  156. package/dist/runtime/icons/color-mode/sun.vue +27 -0
  157. package/dist/runtime/icons/color-mode/sun.vue.d.ts +2 -0
  158. package/dist/runtime/icons/communication/mail.vue +19 -0
  159. package/dist/runtime/icons/communication/mail.vue.d.ts +2 -0
  160. package/dist/runtime/icons/communication/phone.vue +19 -0
  161. package/dist/runtime/icons/communication/phone.vue.d.ts +2 -0
  162. package/dist/runtime/icons/company.vue +19 -0
  163. package/dist/runtime/icons/company.vue.d.ts +2 -0
  164. package/dist/runtime/icons/currency/dollar.vue +19 -0
  165. package/dist/runtime/icons/currency/dollar.vue.d.ts +2 -0
  166. package/dist/runtime/icons/currency/down.vue +22 -0
  167. package/dist/runtime/icons/currency/down.vue.d.ts +2 -0
  168. package/dist/runtime/icons/currency/eur.vue +69 -0
  169. package/dist/runtime/icons/currency/eur.vue.d.ts +2 -0
  170. package/dist/runtime/icons/currency/rub.vue +25 -0
  171. package/dist/runtime/icons/currency/rub.vue.d.ts +2 -0
  172. package/dist/runtime/icons/currency/usd.vue +269 -0
  173. package/dist/runtime/icons/currency/usd.vue.d.ts +2 -0
  174. package/dist/runtime/icons/currency/yuan.vue +37 -0
  175. package/dist/runtime/icons/currency/yuan.vue.d.ts +2 -0
  176. package/dist/runtime/icons/document/hdocument.vue +17 -0
  177. package/dist/runtime/icons/document/hdocument.vue.d.ts +2 -0
  178. package/dist/runtime/icons/document/id.vue +19 -0
  179. package/dist/runtime/icons/document/id.vue.d.ts +2 -0
  180. package/dist/runtime/icons/document/profile.vue +19 -0
  181. package/dist/runtime/icons/document/profile.vue.d.ts +2 -0
  182. package/dist/runtime/icons/download.vue +26 -0
  183. package/dist/runtime/icons/download.vue.d.ts +2 -0
  184. package/dist/runtime/icons/edit.vue +24 -0
  185. package/dist/runtime/icons/edit.vue.d.ts +2 -0
  186. package/dist/runtime/icons/file/excel.vue +88 -0
  187. package/dist/runtime/icons/file/excel.vue.d.ts +2 -0
  188. package/dist/runtime/icons/file/file.vue +19 -0
  189. package/dist/runtime/icons/file/file.vue.d.ts +2 -0
  190. package/dist/runtime/icons/file/files.vue +17 -0
  191. package/dist/runtime/icons/file/files.vue.d.ts +2 -0
  192. package/dist/runtime/icons/globe.vue +19 -0
  193. package/dist/runtime/icons/globe.vue.d.ts +2 -0
  194. package/dist/runtime/icons/handshake.vue +19 -0
  195. package/dist/runtime/icons/handshake.vue.d.ts +2 -0
  196. package/dist/runtime/icons/history.vue +19 -0
  197. package/dist/runtime/icons/history.vue.d.ts +2 -0
  198. package/dist/runtime/icons/info/info-circle.vue +29 -0
  199. package/dist/runtime/icons/info/info-circle.vue.d.ts +2 -0
  200. package/dist/runtime/icons/invoice.vue +35 -0
  201. package/dist/runtime/icons/invoice.vue.d.ts +2 -0
  202. package/dist/runtime/icons/link-chain.vue +31 -0
  203. package/dist/runtime/icons/link-chain.vue.d.ts +2 -0
  204. package/dist/runtime/icons/loader-circle.vue +41 -0
  205. package/dist/runtime/icons/loader-circle.vue.d.ts +2 -0
  206. package/dist/runtime/icons/lock.vue +19 -0
  207. package/dist/runtime/icons/lock.vue.d.ts +2 -0
  208. package/dist/runtime/icons/logo/adata.vue +48 -0
  209. package/dist/runtime/icons/logo/adata.vue.d.ts +2 -0
  210. package/dist/runtime/icons/logo/logo.vue +27 -0
  211. package/dist/runtime/icons/logo/logo.vue.d.ts +2 -0
  212. package/dist/runtime/icons/medal.vue +17 -0
  213. package/dist/runtime/icons/medal.vue.d.ts +2 -0
  214. package/dist/runtime/icons/menu/menu-filled.vue +61 -0
  215. package/dist/runtime/icons/menu/menu-filled.vue.d.ts +2 -0
  216. package/dist/runtime/icons/menu/menu.vue +41 -0
  217. package/dist/runtime/icons/menu/menu.vue.d.ts +2 -0
  218. package/dist/runtime/icons/message.vue +24 -0
  219. package/dist/runtime/icons/message.vue.d.ts +2 -0
  220. package/dist/runtime/icons/modals/door.vue +170 -0
  221. package/dist/runtime/icons/modals/door.vue.d.ts +2 -0
  222. package/dist/runtime/icons/moon.vue +10 -0
  223. package/dist/runtime/icons/moon.vue.d.ts +2 -0
  224. package/dist/runtime/icons/more.vue +36 -0
  225. package/dist/runtime/icons/more.vue.d.ts +2 -0
  226. package/dist/runtime/icons/navigation/expand-window.vue +19 -0
  227. package/dist/runtime/icons/navigation/expand-window.vue.d.ts +2 -0
  228. package/dist/runtime/icons/navigation/location.vue +25 -0
  229. package/dist/runtime/icons/navigation/location.vue.d.ts +2 -0
  230. package/dist/runtime/icons/navigation/logout.vue +19 -0
  231. package/dist/runtime/icons/navigation/logout.vue.d.ts +2 -0
  232. package/dist/runtime/icons/notifications.vue +25 -0
  233. package/dist/runtime/icons/notifications.vue.d.ts +2 -0
  234. package/dist/runtime/icons/other-service/arrow-square-down.vue +15 -0
  235. package/dist/runtime/icons/other-service/arrow-square-down.vue.d.ts +2 -0
  236. package/dist/runtime/icons/other-service/arrow-top-right-on-square.vue +6 -0
  237. package/dist/runtime/icons/other-service/arrow-top-right-on-square.vue.d.ts +2 -0
  238. package/dist/runtime/icons/other-service/block.vue +16 -0
  239. package/dist/runtime/icons/other-service/block.vue.d.ts +2 -0
  240. package/dist/runtime/icons/other-service/currency-dollar.vue +16 -0
  241. package/dist/runtime/icons/other-service/currency-dollar.vue.d.ts +2 -0
  242. package/dist/runtime/icons/other-service/globe.vue +16 -0
  243. package/dist/runtime/icons/other-service/globe.vue.d.ts +2 -0
  244. package/dist/runtime/icons/other-service/link.vue +7 -0
  245. package/dist/runtime/icons/other-service/link.vue.d.ts +2 -0
  246. package/dist/runtime/icons/other-service/magnifying-glass.vue +9 -0
  247. package/dist/runtime/icons/other-service/magnifying-glass.vue.d.ts +2 -0
  248. package/dist/runtime/icons/other-service/standing-scales.vue +15 -0
  249. package/dist/runtime/icons/other-service/standing-scales.vue.d.ts +2 -0
  250. package/dist/runtime/icons/other-service/users-three.vue +7 -0
  251. package/dist/runtime/icons/other-service/users-three.vue.d.ts +2 -0
  252. package/dist/runtime/icons/plus-circle.vue +24 -0
  253. package/dist/runtime/icons/plus-circle.vue.d.ts +2 -0
  254. package/dist/runtime/icons/plus.vue +24 -0
  255. package/dist/runtime/icons/plus.vue.d.ts +2 -0
  256. package/dist/runtime/icons/radio/radio-check.vue +24 -0
  257. package/dist/runtime/icons/radio/radio-check.vue.d.ts +2 -0
  258. package/dist/runtime/icons/radio/radio-empty.vue +20 -0
  259. package/dist/runtime/icons/radio/radio-empty.vue.d.ts +2 -0
  260. package/dist/runtime/icons/receipt/hcheck.vue +27 -0
  261. package/dist/runtime/icons/receipt/hcheck.vue.d.ts +2 -0
  262. package/dist/runtime/icons/receipt/receipt.vue +27 -0
  263. package/dist/runtime/icons/receipt/receipt.vue.d.ts +2 -0
  264. package/dist/runtime/icons/scale.vue +19 -0
  265. package/dist/runtime/icons/scale.vue.d.ts +2 -0
  266. package/dist/runtime/icons/search.vue +27 -0
  267. package/dist/runtime/icons/search.vue.d.ts +2 -0
  268. package/dist/runtime/icons/socials/facebook.vue +15 -0
  269. package/dist/runtime/icons/socials/facebook.vue.d.ts +2 -0
  270. package/dist/runtime/icons/socials/instagram.vue +19 -0
  271. package/dist/runtime/icons/socials/instagram.vue.d.ts +2 -0
  272. package/dist/runtime/icons/socials/linkedin.vue +24 -0
  273. package/dist/runtime/icons/socials/linkedin.vue.d.ts +2 -0
  274. package/dist/runtime/icons/socials/telegram.vue +15 -0
  275. package/dist/runtime/icons/socials/telegram.vue.d.ts +2 -0
  276. package/dist/runtime/icons/socials/tik-tok.vue +15 -0
  277. package/dist/runtime/icons/socials/tik-tok.vue.d.ts +2 -0
  278. package/dist/runtime/icons/socials/whatsapp.vue +21 -0
  279. package/dist/runtime/icons/socials/whatsapp.vue.d.ts +2 -0
  280. package/dist/runtime/icons/socials/youtube.vue +16 -0
  281. package/dist/runtime/icons/socials/youtube.vue.d.ts +2 -0
  282. package/dist/runtime/icons/sun.vue +14 -0
  283. package/dist/runtime/icons/sun.vue.d.ts +2 -0
  284. package/dist/runtime/icons/sviazi.vue +19 -0
  285. package/dist/runtime/icons/sviazi.vue.d.ts +2 -0
  286. package/dist/runtime/icons/tenge.vue +22 -0
  287. package/dist/runtime/icons/tenge.vue.d.ts +2 -0
  288. package/dist/runtime/icons/trash.vue +24 -0
  289. package/dist/runtime/icons/trash.vue.d.ts +2 -0
  290. package/dist/runtime/icons/upload.vue +26 -0
  291. package/dist/runtime/icons/upload.vue.d.ts +2 -0
  292. package/dist/runtime/icons/user.vue +30 -0
  293. package/dist/runtime/icons/user.vue.d.ts +2 -0
  294. package/dist/runtime/icons/users/users-three.vue +17 -0
  295. package/dist/runtime/icons/users/users-three.vue.d.ts +2 -0
  296. package/dist/runtime/icons/users/users.vue +31 -0
  297. package/dist/runtime/icons/users/users.vue.d.ts +2 -0
  298. package/dist/runtime/icons/warning-triangle.vue +29 -0
  299. package/dist/runtime/icons/warning-triangle.vue.d.ts +2 -0
  300. package/dist/runtime/icons/work-bag.vue +20 -0
  301. package/dist/runtime/icons/work-bag.vue.d.ts +2 -0
  302. package/dist/runtime/icons/x-mark.vue +18 -0
  303. package/dist/runtime/icons/x-mark.vue.d.ts +2 -0
  304. package/dist/runtime/lang/en.d.ts +4 -0
  305. package/dist/runtime/lang/en.js +545 -0
  306. package/dist/runtime/lang/kk.d.ts +4 -0
  307. package/dist/runtime/lang/kk.js +545 -0
  308. package/dist/runtime/lang/ru.d.ts +575 -0
  309. package/dist/runtime/lang/ru.js +607 -0
  310. package/dist/runtime/shared/constants/pages.d.ts +71 -0
  311. package/dist/runtime/shared/constants/pages.js +71 -0
  312. package/package.json +66 -58
  313. package/dist/runtime/components/header/TheHeader.vue +0 -15
  314. package/dist/runtime/components/header/TheHeader.vue.d.ts +0 -2
  315. package/dist/runtime/plugin.d.ts +0 -2
  316. package/dist/runtime/plugin.js +0 -4
@@ -0,0 +1,17 @@
1
+ <template>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 22 21"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M21.4258 8.12075C21.335 7.8408 21.1638 7.59375 20.9336 7.41038C20.7034 7.22701 20.4243 7.11542 20.1311 7.0895L14.5633 6.6095L12.3808 1.4195C12.2672 1.14717 12.0755 0.914551 11.8299 0.750929C11.5844 0.587308 11.2959 0.5 11.0008 0.5C10.7057 0.5 10.4172 0.587308 10.1717 0.750929C9.9261 0.914551 9.73443 1.14717 9.6208 1.4195L7.44487 6.6095L1.87049 7.09231C1.57615 7.11705 1.29566 7.22813 1.0642 7.41164C0.832741 7.59515 0.660612 7.84291 0.569401 8.12385C0.478189 8.4048 0.471955 8.70642 0.55148 8.99089C0.631004 9.27536 0.792748 9.53002 1.01643 9.72294L5.24549 13.4186L3.97799 18.9067C3.91097 19.1939 3.93009 19.4945 4.03297 19.7709C4.13585 20.0472 4.31792 20.2872 4.55642 20.4606C4.79492 20.6341 5.07926 20.7334 5.3739 20.7462C5.66854 20.7589 5.9604 20.6845 6.21299 20.5323L10.9942 17.6261L15.7858 20.5323C16.0384 20.6845 16.3303 20.7589 16.6249 20.7462C16.9195 20.7334 17.2039 20.6341 17.4424 20.4606C17.6809 20.2872 17.8629 20.0472 17.9658 19.7709C18.0687 19.4945 18.0878 19.1939 18.0208 18.9067L16.7542 13.4129L20.9824 9.72294C21.206 9.52936 21.3674 9.27397 21.4463 8.98889C21.5252 8.70382 21.5181 8.40178 21.4258 8.12075ZM19.9989 8.5895L15.7708 12.2795C15.565 12.4585 15.4119 12.6902 15.328 12.9497C15.2441 13.2092 15.2325 13.4867 15.2946 13.7523L16.5649 19.2498L11.7771 16.3436C11.5435 16.2013 11.2752 16.1261 11.0017 16.1261C10.7282 16.1261 10.46 16.2013 10.2264 16.3436L5.44518 19.2498L6.70705 13.7561C6.76907 13.4905 6.7575 13.213 6.67358 12.9535C6.58967 12.694 6.43658 12.4623 6.2308 12.2833L2.0008 8.59513C2.00046 8.59232 2.00046 8.58949 2.0008 8.58669L7.5733 8.10481C7.84537 8.08083 8.10572 7.98303 8.32628 7.82194C8.54684 7.66086 8.71923 7.44262 8.82487 7.19075L11.0008 2.00731L13.1758 7.19075C13.2814 7.44262 13.4538 7.66086 13.6744 7.82194C13.8949 7.98303 14.1553 8.08083 14.4274 8.10481L20.0008 8.58669C20.0008 8.58669 20.0008 8.59231 20.0008 8.59325L19.9989 8.5895Z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ </template>
15
+
16
+ <script setup lang="ts">
17
+ </script>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,61 @@
1
+ <script setup lang="ts">
2
+ </script>
3
+
4
+ <template>
5
+ <svg
6
+ width="24"
7
+ height="24"
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ xmlns="https://www.w3.org/2000/svg"
11
+ >
12
+ <path
13
+ d="M21.2513 14.25H14.2513V21.25H21.2513V14.25Z"
14
+ fill="currentColor"
15
+ fill-opacity="0.8"
16
+ />
17
+ <path
18
+ d="M21.7513 14.25C21.7513 13.9738 21.5275 13.75 21.2513 13.75H14.2513C13.9752 13.75 13.7513 13.9738 13.7513 14.25V21.25C13.7513 21.5261 13.9752 21.75 14.2513 21.75H21.2513C21.5275 21.75 21.7513 21.5261 21.7513 21.25V14.25Z"
19
+ stroke="currentColor"
20
+ stroke-opacity="0.8"
21
+ stroke-linecap="round"
22
+ stroke-linejoin="round"
23
+ />
24
+ <path
25
+ d="M9.75 14.25H2.75V21.25H9.75V14.25Z"
26
+ fill="currentColor"
27
+ fill-opacity="0.8"
28
+ />
29
+ <path
30
+ d="M10.25 14.25C10.25 13.9738 10.0261 13.75 9.75 13.75H2.75C2.47386 13.75 2.25 13.9738 2.25 14.25V21.25C2.25 21.5261 2.47386 21.75 2.75 21.75H9.75C10.0261 21.75 10.25 21.5261 10.25 21.25V14.25Z"
31
+ stroke="currentColor"
32
+ stroke-opacity="0.8"
33
+ stroke-linecap="round"
34
+ stroke-linejoin="round"
35
+ />
36
+ <path
37
+ d="M21.2513 2.74979H14.2513V9.74979H21.2513V2.74979Z"
38
+ fill="currentColor"
39
+ fill-opacity="0.8"
40
+ />
41
+ <path
42
+ d="M21.7513 2.74979C21.7513 2.47364 21.5275 2.24979 21.2513 2.24979H14.2513C13.9752 2.24979 13.7513 2.47364 13.7513 2.74979V9.74979C13.7513 10.0259 13.9752 10.2498 14.2513 10.2498H21.2513C21.5275 10.2498 21.7513 10.0259 21.7513 9.74979V2.74979Z"
43
+ stroke="currentColor"
44
+ stroke-opacity="0.8"
45
+ stroke-linecap="round"
46
+ stroke-linejoin="round"
47
+ />
48
+ <path
49
+ d="M9.75 2.74979H2.75V9.74979H9.75V2.74979Z"
50
+ fill="currentColor"
51
+ fill-opacity="0.8"
52
+ />
53
+ <path
54
+ d="M10.25 2.74979C10.25 2.47364 10.0261 2.24979 9.75 2.24979H2.75C2.47386 2.24979 2.25 2.47364 2.25 2.74979V9.74979C2.25 10.0259 2.47386 10.2498 2.75 10.2498H9.75C10.0261 10.2498 10.25 10.0259 10.25 9.74979V2.74979Z"
55
+ stroke="currentColor"
56
+ stroke-opacity="0.8"
57
+ stroke-linecap="round"
58
+ stroke-linejoin="round"
59
+ />
60
+ </svg>
61
+ </template>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,41 @@
1
+ <template>
2
+ <svg
3
+ width="24"
4
+ height="24"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M13 13.7502C13 13.336 13.3358 13.0002 13.75 13.0002H21.2513C21.6656 13.0002 22.0013 13.336 22.0013 13.7502V21.2502C22.0013 21.6644 21.6656 22.0002 21.2513 22.0002H13.75C13.3358 22.0002 13 21.6644 13 21.2502V13.7502ZM14.5 14.5002V20.5002H20.5013V14.5002H14.5Z"
13
+ fill="currentColor"
14
+ class="dark:fill-white"
15
+ />
16
+ <path
17
+ fill-rule="evenodd"
18
+ clip-rule="evenodd"
19
+ d="M2 13.7502C2 13.336 2.33579 13.0002 2.75 13.0002H10.25C10.6642 13.0002 11 13.336 11 13.7502V21.2502C11 21.6644 10.6642 22.0002 10.25 22.0002H2.75C2.33579 22.0002 2 21.6644 2 21.2502V13.7502ZM3.5 14.5002V20.5002H9.5V14.5002H3.5Z"
20
+ fill="currentColor"
21
+ class="dark:fill-white"
22
+ />
23
+ <path
24
+ fill-rule="evenodd"
25
+ clip-rule="evenodd"
26
+ d="M13 2.75C13 2.33579 13.3358 2 13.75 2H21.2513C21.6656 2 22.0013 2.33579 22.0013 2.75V10.2502C22.0013 10.6644 21.6656 11.0002 21.2513 11.0002H13.75C13.3358 11.0002 13 10.6644 13 10.2502V2.75ZM14.5 3.5V9.50018H20.5013V3.5H14.5Z"
27
+ fill="currentColor"
28
+ class="dark:fill-white"
29
+ />
30
+ <path
31
+ fill-rule="evenodd"
32
+ clip-rule="evenodd"
33
+ d="M2 2.75C2 2.33579 2.33579 2 2.75 2H10.25C10.6642 2 11 2.33579 11 2.75V10.2502C11 10.6644 10.6642 11.0002 10.25 11.0002H2.75C2.33579 11.0002 2 10.6644 2 10.2502L2 2.75ZM3.5 3.5V9.50018H9.5V3.5H3.5Z"
34
+ fill="currentColor"
35
+ class="dark:fill-white"
36
+ />
37
+ </svg>
38
+ </template>
39
+
40
+ <script setup lang="ts">
41
+ </script>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,24 @@
1
+ <script setup lang="ts">
2
+ </script>
3
+
4
+ <template>
5
+ <svg
6
+ width="17"
7
+ height="16"
8
+ viewBox="0 0 17 16"
9
+ fill="none"
10
+ xmlns="https://www.w3.org/2000/svg"
11
+ class="fill-deepblue-900 dark:fill-gray-200"
12
+ >
13
+ <path
14
+ fill="currentColor"
15
+ fill-rule="evenodd"
16
+ clip-rule="evenodd"
17
+ d="M8.85849 2.05002C7.99161 2.04776 7.13645 2.2503 6.36267 2.64114L6.36068 2.64214C5.4322 3.10618 4.65126 3.81955 4.10531 4.70235C3.55937 5.58515 3.26999 6.60252 3.26959 7.6405V7.64166C3.26733 8.50855 3.46986 9.3637 3.8607 10.1375C3.92381 10.2624 3.93441 10.4074 3.89015 10.5402L2.85524 13.6449L5.95995 12.61C6.09275 12.5657 6.23773 12.5763 6.36267 12.6395C6.45939 12.6883 6.55739 12.7342 6.65652 12.7772C7.35043 13.0777 8.09997 13.2325 8.85849 13.2306L8.85986 13.7532L8.85966 13.2306C9.89763 13.2302 10.915 12.9408 11.7978 12.3948C12.6806 11.8489 13.394 11.068 13.858 10.1395L13.859 10.1375C14.2499 9.3637 14.4524 8.50854 14.4501 7.64166L14.4501 7.6403V7.29537C14.3713 5.93008 13.7935 4.64114 12.8263 3.6739C11.859 2.70665 10.5701 2.12881 9.20478 2.05002H8.85986L8.85849 2.05002ZM8.86123 14.2806C10.0938 14.2799 11.3018 13.9362 12.3501 13.2879C13.3984 12.6396 14.2455 11.7123 14.7967 10.6099C15.2617 9.68909 15.5027 8.67125 15.5001 7.63971V7.28057C15.5001 7.26936 15.4998 7.25823 15.4991 7.24719C15.4082 5.62023 14.721 4.08374 13.5687 2.93143C12.4154 1.77808 10.8771 1.09067 9.2485 1.00082C9.23887 1.00029 9.22923 1.00002 9.21958 1.00002H8.86053C7.82888 0.997441 6.81119 1.23844 5.89027 1.7034C4.78784 2.25461 3.86057 3.10178 3.21228 4.15008C2.56379 5.1987 2.22006 6.40716 2.21958 7.64009L2.21959 7.64094C2.21738 8.59827 2.42493 9.54355 2.82655 10.4106L1.52876 14.304C1.49322 14.4069 1.48928 14.5215 1.52446 14.633C1.52694 14.6408 1.52961 14.6486 1.53247 14.6564C1.62994 14.9216 1.92126 15.063 2.19116 14.9731L6.08955 13.6736C6.95722 14.0755 7.90321 14.2831 8.86123 14.2806Z"
18
+ />
19
+ </svg>
20
+ </template>
21
+
22
+ <style scoped>
23
+
24
+ </style>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,170 @@
1
+ <script setup>
2
+ import { useColorMode, computed } from "#imports";
3
+ const colorMode = useColorMode();
4
+ const isDark = computed(() => colorMode.value === "dark");
5
+ </script>
6
+
7
+ <template>
8
+ <svg
9
+ v-if="!isDark"
10
+ width="120"
11
+ height="120"
12
+ viewBox="0 0 120 120"
13
+ fill="none"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ >
16
+ <circle
17
+ cx="50"
18
+ cy="50"
19
+ r="50"
20
+ transform="matrix(-1 0 0 1 110 10)"
21
+ fill="#BDC7CE"
22
+ fill-opacity="0.15"
23
+ />
24
+ <g clip-path="url(#clip0_12333_18200)">
25
+ <path
26
+ d="M56.7411 109.514L92.5039 101.607V20.426L56.7411 10.4863V109.514Z"
27
+ fill="white"
28
+ stroke="#9DA3AC"
29
+ stroke-linecap="round"
30
+ stroke-linejoin="round"
31
+ />
32
+ <path
33
+ opacity="0.2"
34
+ d="M86.267 96.0144V18.6948L92.5039 20.426V101.607L56.7411 109.514V102.54L86.267 96.0144Z"
35
+ fill="#BDC7CE"
36
+ />
37
+ <path
38
+ d="M64.1992 60.5737H74.1306"
39
+ stroke="#9DA3AC"
40
+ stroke-linecap="round"
41
+ stroke-linejoin="round"
42
+ />
43
+ <path
44
+ d="M50.4941 19.3174H35.1204V102.044H50.4941"
45
+ fill="white"
46
+ />
47
+ <path
48
+ d="M50.4941 19.3174H35.1204V102.044H50.4941"
49
+ stroke="#9DA3AC"
50
+ stroke-linecap="round"
51
+ stroke-linejoin="round"
52
+ />
53
+ <ellipse
54
+ cx="1.98627"
55
+ cy="1.94514"
56
+ rx="1.98627"
57
+ ry="1.94514"
58
+ transform="matrix(-1 0 0 1 66.1855 58.6289)"
59
+ fill="#9DA3AC"
60
+ />
61
+ </g>
62
+ <path
63
+ d="M35.121 69.8328C40.7102 69.8328 45.2411 65.3957 45.2411 59.9222C45.2411 54.4488 40.7102 50.0117 35.121 50.0117C29.5319 50.0117 25.001 54.4488 25.001 59.9222C25.001 65.3957 29.5319 69.8328 35.121 69.8328Z"
64
+ fill="#BDC7CE"
65
+ />
66
+ <path
67
+ d="M29.8877 59.7085H40.3553"
68
+ stroke="white"
69
+ stroke-linecap="round"
70
+ stroke-linejoin="round"
71
+ />
72
+ <path
73
+ d="M35.9951 55.3706L40.355 59.7083L35.9951 64.4739"
74
+ stroke="white"
75
+ stroke-linecap="round"
76
+ stroke-linejoin="round"
77
+ />
78
+ <defs>
79
+ <clipPath id="clip0_12333_18200">
80
+ <rect
81
+ width="68"
82
+ height="100"
83
+ fill="white"
84
+ transform="matrix(-1 0 0 1 93 10)"
85
+ />
86
+ </clipPath>
87
+ </defs>
88
+ </svg>
89
+ <svg
90
+ v-else
91
+ width="120"
92
+ height="120"
93
+ viewBox="0 0 120 120"
94
+ fill="none"
95
+ xmlns="http://www.w3.org/2000/svg"
96
+ >
97
+ <circle
98
+ cx="50"
99
+ cy="50"
100
+ r="50"
101
+ transform="matrix(-1 0 0 1 110 10)"
102
+ fill="#BDC7CE"
103
+ fill-opacity="0.15"
104
+ />
105
+ <g clip-path="url(#clip0_12333_9271)">
106
+ <path
107
+ d="M56.7411 109.514L92.5039 101.607V20.426L56.7411 10.4863V109.514Z"
108
+ fill="#26282B"
109
+ stroke="#9DA3AC"
110
+ stroke-linecap="round"
111
+ stroke-linejoin="round"
112
+ />
113
+ <path
114
+ opacity="0.2"
115
+ d="M86.267 96.0144V18.6948L92.5039 20.426V101.607L56.7411 109.514V102.54L86.267 96.0144Z"
116
+ fill="#BDC7CE"
117
+ />
118
+ <path
119
+ d="M64.1992 60.5737H74.1306"
120
+ stroke="#9DA3AC"
121
+ stroke-linecap="round"
122
+ stroke-linejoin="round"
123
+ />
124
+ <path
125
+ d="M50.4941 19.3174H35.1204V102.044H50.4941"
126
+ fill="#26282B"
127
+ />
128
+ <path
129
+ d="M50.4941 19.3174H35.1204V102.044H50.4941"
130
+ stroke="#9DA3AC"
131
+ stroke-linecap="round"
132
+ stroke-linejoin="round"
133
+ />
134
+ <ellipse
135
+ cx="1.98627"
136
+ cy="1.94514"
137
+ rx="1.98627"
138
+ ry="1.94514"
139
+ transform="matrix(-1 0 0 1 66.1855 58.6289)"
140
+ fill="#9DA3AC"
141
+ />
142
+ </g>
143
+ <path
144
+ d="M35.1205 69.8328C40.7097 69.8328 45.2406 65.3957 45.2406 59.9222C45.2406 54.4488 40.7097 50.0117 35.1205 50.0117C29.5314 50.0117 25.0005 54.4488 25.0005 59.9222C25.0005 65.3957 29.5314 69.8328 35.1205 69.8328Z"
145
+ fill="#BDC7CE"
146
+ />
147
+ <path
148
+ d="M29.8872 59.7085H40.3549"
149
+ stroke="#26282B"
150
+ stroke-linecap="round"
151
+ stroke-linejoin="round"
152
+ />
153
+ <path
154
+ d="M35.9946 55.3706L40.3545 59.7083L35.9946 64.4739"
155
+ stroke="#26282B"
156
+ stroke-linecap="round"
157
+ stroke-linejoin="round"
158
+ />
159
+ <defs>
160
+ <clipPath id="clip0_12333_9271">
161
+ <rect
162
+ width="68"
163
+ height="100"
164
+ fill="white"
165
+ transform="matrix(-1 0 0 1 93 10)"
166
+ />
167
+ </clipPath>
168
+ </defs>
169
+ </svg>
170
+ </template>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,10 @@
1
+ <template>
2
+ <svg fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="https://www.w3.org/2000/svg">
3
+ <path
4
+ d="M5.99987 12.6668C5.99987 13.2268 6.08654 13.7735 6.24654 14.2802C3.6865 13.3935 1.75314 11.0401 1.55314 8.28677C1.35314 5.36006 3.03983 2.62668 5.76654 1.48C6.47321 1.18666 6.83322 1.4 6.98655 1.55333C7.13322 1.7 7.33989 2.05334 7.04656 2.72668C6.74655 3.42003 6.59988 4.15337 6.59988 4.91338C6.60655 6.2734 7.13989 7.53342 8.00657 8.5001C6.78655 9.47345 5.99987 10.9801 5.99987 12.6668Z"/>
5
+ <path d="M14.1402 11.8136C12.8202 13.607 10.7268 14.6603 8.49343 14.6603C8.38676 14.6603 8.2801 14.6537 8.17343 14.647C7.50675 14.6203 6.86007 14.4937 6.24673 14.2803C6.08673 13.7737 6.00006 13.227 6.00006 12.667C6.00006 10.9803 6.78674 9.47359 8.00676 8.50024C8.98677 9.60026 10.3935 10.3136 11.9468 10.3803C12.3668 10.4003 12.7868 10.3669 13.2002 10.2936C13.9468 10.1603 14.2469 10.4403 14.3535 10.6203C14.4669 10.8003 14.5869 11.1936 14.1402 11.8136Z"
6
+ opacity="0.4"/>
7
+ </svg>
8
+ </template>
9
+ <script setup lang="ts">
10
+ </script>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,36 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="17"
8
+ height="16"
9
+ viewBox="0 0 17 16"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ fill-rule="evenodd"
15
+ clip-rule="evenodd"
16
+ d="M8.50012 3.52181C7.80377 3.52181 7.23926 2.9573 7.23926 2.26095C7.23926 1.56459 7.80377 1.00008 8.50012 1.00008C9.19648 1.00008 9.76099 1.56459 9.76099 2.26095C9.76099 2.9573 9.19648 3.52181 8.50012 3.52181Z"
17
+ fill="currentColor"
18
+ />
19
+ <path
20
+ fill-rule="evenodd"
21
+ clip-rule="evenodd"
22
+ d="M8.50012 9.26091C7.80377 9.26091 7.23926 8.6964 7.23926 8.00004C7.23926 7.30369 7.80377 6.73918 8.50012 6.73918C9.19648 6.73918 9.76099 7.30369 9.76099 8.00004C9.76099 8.6964 9.19648 9.26091 8.50012 9.26091Z"
23
+ fill="currentColor"
24
+ />
25
+ <path
26
+ fill-rule="evenodd"
27
+ clip-rule="evenodd"
28
+ d="M8.50012 15C7.80377 15 7.23926 14.4355 7.23926 13.7391C7.23926 13.0428 7.80377 12.4783 8.50012 12.4783C9.19648 12.4783 9.76099 13.0428 9.76099 13.7391C9.76099 14.4355 9.19648 15 8.50012 15Z"
29
+ fill="currentColor"
30
+ />
31
+ </svg>
32
+ </template>
33
+
34
+ <style scoped>
35
+
36
+ </style>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,19 @@
1
+ <template>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M2.7827 2.33301C2.66369 2.33301 2.54956 2.38028 2.46541 2.46443C2.38126 2.54858 2.33398 2.66272 2.33398 2.78172V13.2176C2.33398 13.3366 2.38126 13.4507 2.46541 13.5349C2.54956 13.619 2.66369 13.6663 2.7827 13.6663H13.2186C13.3376 13.6663 13.4517 13.619 13.5359 13.5349C13.62 13.4507 13.6673 13.3366 13.6673 13.2176V8.94838C13.6673 8.67223 13.8911 8.44838 14.1673 8.44838C14.4434 8.44838 14.6673 8.67223 14.6673 8.94838V13.2176C14.6673 13.6018 14.5147 13.9703 14.243 14.242C13.9713 14.5137 13.6028 14.6663 13.2186 14.6663H2.7827C2.39848 14.6663 2.02999 14.5137 1.7583 14.242C1.48662 13.9703 1.33398 13.6018 1.33398 13.2176V2.78172C1.33398 2.3975 1.48662 2.02901 1.7583 1.75733C2.02999 1.48564 2.39848 1.33301 2.7827 1.33301H7.05192C7.32806 1.33301 7.55192 1.55687 7.55192 1.83301C7.55192 2.10915 7.32806 2.33301 7.05192 2.33301H2.7827ZM10.3468 1.83301C10.3468 1.55687 10.5707 1.33301 10.8468 1.33301H14.1673C14.2998 1.33301 14.4202 1.38453 14.5097 1.46864C14.5174 1.47585 14.5248 1.48331 14.532 1.49099C14.5733 1.53491 14.6051 1.58445 14.6275 1.63706C14.6531 1.69723 14.6673 1.76346 14.6673 1.83301V5.15351C14.6673 5.42966 14.4434 5.65351 14.1673 5.65351C13.8912 5.65351 13.6673 5.42966 13.6673 5.15351V3.04011L8.3542 8.35321C8.15894 8.54848 7.84236 8.54848 7.6471 8.35321C7.45184 8.15795 7.45184 7.84137 7.6471 7.64611L12.9602 2.33301H10.8468C10.5707 2.33301 10.3468 2.10915 10.3468 1.83301Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
17
+
18
+ <script setup lang="ts">
19
+ </script>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,25 @@
1
+ <template>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M8 2.05001C6.69566 2.05001 5.44474 2.55285 4.52243 3.44792C3.60012 4.34298 3.08197 5.55695 3.08197 6.82277C3.08197 8.67199 4.31999 10.4571 5.66322 11.833C6.32377 12.5097 6.98616 13.0634 7.48402 13.4482C7.68839 13.6061 7.86429 13.735 8 13.8316C8.13571 13.735 8.31161 13.6061 8.51598 13.4482C9.01384 13.0634 9.67623 12.5097 10.3368 11.833C11.68 10.4571 12.918 8.67199 12.918 6.82277C12.918 5.55695 12.3999 4.34298 11.4776 3.44792C10.5553 2.55285 9.30434 2.05001 8 2.05001ZM8 14.4751C7.69992 14.9119 7.69962 14.9117 7.69962 14.9117C7.68797 14.9041 7.65205 14.8804 7.63067 14.866C7.58793 14.8373 7.52637 14.7953 7.44869 14.7409C7.29339 14.632 7.07332 14.473 6.81004 14.2696C6.28433 13.8633 5.58196 13.2765 4.87776 12.5552C3.49149 11.1351 2 9.09403 2 6.82277C2 5.27847 2.63214 3.79743 3.75736 2.70545C4.88258 1.61347 6.4087 1 8 1C9.5913 1 11.1174 1.61347 12.2426 2.70545C13.3679 3.79743 14 5.27847 14 6.82277C14 9.09403 12.5085 11.1351 11.1222 12.5552C10.418 13.2765 9.71567 13.8633 9.18996 14.2696C8.92668 14.473 8.70661 14.632 8.55131 14.7409C8.47363 14.7953 8.41207 14.8373 8.36933 14.866C8.34795 14.8804 8.31173 14.9042 8.30008 14.9119C8.30008 14.9119 8.30008 14.9119 8 14.4751ZM8 14.4751L8.30008 14.9119C8.11837 15.0295 7.88133 15.0293 7.69962 14.9117L8 14.4751Z"
13
+ fill="currentColor"
14
+ />
15
+ <path
16
+ fill-rule="evenodd"
17
+ clip-rule="evenodd"
18
+ d="M8 5.58185C7.2938 5.58185 6.72131 6.13743 6.72131 6.82277C6.72131 7.50811 7.2938 8.06369 8 8.06369C8.7062 8.06369 9.27869 7.50811 9.27869 6.82277C9.27869 6.13743 8.7062 5.58185 8 5.58185ZM5.63935 6.82277C5.63935 5.55753 6.69625 4.53184 8 4.53184C9.30375 4.53184 10.3607 5.55753 10.3607 6.82277C10.3607 8.08801 9.30375 9.11369 8 9.11369C6.69625 9.11369 5.63935 8.08801 5.63935 6.82277Z"
19
+ fill="currentColor"
20
+ />
21
+ </svg>
22
+ </template>
23
+
24
+ <script setup lang="ts">
25
+ </script>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,19 @@
1
+ <template>
2
+ <svg
3
+ width="24"
4
+ height="24"
5
+ viewBox="0 0 24 24"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M19.8796 3.5C20.0348 3.5 20.1897 3.56376 20.3084 3.68704C20.428 3.81128 20.5 3.98562 20.5 4.17308V19.8269C20.5 20.0144 20.428 20.1887 20.3084 20.313C20.1897 20.4362 20.0348 20.5 19.8796 20.5H10.2871C10.1318 20.5 9.97701 20.4362 9.85829 20.313C9.73865 20.1887 9.66668 20.0144 9.66668 19.8269V16.9808C9.66668 16.5666 9.33089 16.2308 8.91668 16.2308C8.50247 16.2308 8.16668 16.5666 8.16668 16.9808V19.8269C8.16668 20.3943 8.38346 20.9439 8.77781 21.3534C9.17309 21.7639 9.71536 22 10.2871 22H19.8796C20.4513 22 20.9936 21.7639 21.3889 21.3534C21.7832 20.9439 22 20.3943 22 19.8269V4.17308C22 3.60568 21.7832 3.05609 21.3889 2.64658C20.9936 2.2361 20.4513 2 19.8796 2H10.2871C9.71536 2 9.17309 2.2361 8.77781 2.64658C8.38346 3.05609 8.16668 3.60568 8.16668 4.17308V7.01923C8.16668 7.43344 8.50247 7.76923 8.91668 7.76923C9.33089 7.76923 9.66668 7.43344 9.66668 7.01923V4.17308C9.66668 3.98562 9.73865 3.81128 9.85829 3.68704C9.97701 3.56376 10.1318 3.5 10.2871 3.5H19.8796ZM13.2727 11.25L11.4697 9.44702C11.1768 9.15412 11.1768 8.67925 11.4697 8.38636C11.7626 8.09346 12.2375 8.09346 12.5304 8.38636L15.6137 11.4697C15.9066 11.7626 15.9066 12.2375 15.6137 12.5304L12.5304 15.6137C12.2375 15.9066 11.7626 15.9066 11.4697 15.6137C11.1768 15.3208 11.1768 14.8459 11.4697 14.553L13.2727 12.75H2.75C2.33579 12.75 2 12.4142 2 12C2 11.5858 2.33579 11.25 2.75 11.25H13.2727Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
17
+
18
+ <script setup lang="ts">
19
+ </script>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,25 @@
1
+ <script setup lang="ts"></script>
2
+
3
+ <template>
4
+ <svg
5
+ width="25"
6
+ height="24"
7
+ viewBox="0 0 25 24"
8
+ fill="none"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ >
11
+ <path
12
+ fill-rule="evenodd"
13
+ clip-rule="evenodd"
14
+ d="M12.3618 2C8.61384 2 5.57553 5.03831 5.57553 8.78625V13.4501L3.24673 17.6027C3.11648 17.8349 3.11914 18.1188 3.25372 18.3486C3.38829 18.5783 3.6346 18.7195 3.90088 18.7195H8.83112C8.84826 18.9354 8.88479 19.1499 8.94059 19.3603C9.07409 19.8637 9.31468 20.3313 9.64539 20.7302C9.9761 21.129 10.3889 21.4494 10.8547 21.6688C11.3206 21.8882 11.8281 22.0012 12.3416 22C12.8552 21.9987 13.3622 21.8832 13.827 21.6616C14.2918 21.44 14.7031 21.1176 15.0319 20.7171C15.3608 20.3167 15.5991 19.848 15.7303 19.3439C15.7837 19.1388 15.8187 18.9298 15.8354 18.7195H20.7657C21.0307 18.7195 21.2759 18.5797 21.411 18.3518C21.546 18.1239 21.5508 17.8416 21.4235 17.6093L19.148 13.4541V8.78625C19.148 5.03831 16.1097 2 12.3618 2ZM14.3273 18.7195H10.3392C10.351 18.8058 10.3681 18.8914 10.3905 18.9758C10.4686 19.2702 10.6089 19.5421 10.8001 19.7727C10.9912 20.0032 11.2284 20.1867 11.4939 20.3118C11.7592 20.4367 12.0473 20.5007 12.338 20.5C12.6287 20.4993 12.9165 20.4339 13.1813 20.3077C13.4463 20.1813 13.6826 19.9967 13.8727 19.7652C14.0629 19.5336 14.2019 19.261 14.2786 18.9662C14.2998 18.8849 14.316 18.8025 14.3273 18.7195Z"
15
+ fill="#2C3E50"
16
+ fill-opacity="0.8"
17
+ />
18
+ <circle
19
+ cx="18.3335"
20
+ cy="6"
21
+ r="4"
22
+ fill="#E74135"
23
+ />
24
+ </svg>
25
+ </template>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,15 @@
1
+ <template>
2
+ <svg
3
+ width="41"
4
+ height="40"
5
+ viewBox="0 0 41 40"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M33.167 5H8.16699C7.50395 5 6.86807 5.26339 6.39923 5.73223C5.93038 6.20107 5.66699 6.83696 5.66699 7.5V32.5C5.66699 33.163 5.93038 33.7989 6.39923 34.2678C6.86807 34.7366 7.50395 35 8.16699 35H33.167C33.83 35 34.4659 34.7366 34.9348 34.2678C35.4036 33.7989 35.667 33.163 35.667 32.5V7.5C35.667 6.83696 35.4036 6.20107 34.9348 5.73223C34.4659 5.26339 33.83 5 33.167 5ZM33.167 7.5V23.75H28.6826C28.3545 23.7492 28.0294 23.8135 27.7263 23.9393C27.4232 24.0651 27.1481 24.2498 26.917 24.4828L23.8998 27.5H17.4342L14.417 24.4828C14.1857 24.2497 13.9103 24.0648 13.607 23.939C13.3036 23.8132 12.9782 23.749 12.6498 23.75H8.16699V7.5H33.167ZM33.167 32.5H8.16699V26.25H12.6498L15.667 29.2672C15.8983 29.5003 16.1736 29.6852 16.477 29.811C16.7804 29.9368 17.1058 30.001 17.4342 30H23.8998C24.2282 30.001 24.5536 29.9368 24.857 29.811C25.1603 29.6852 25.4357 29.5003 25.667 29.2672L28.6842 26.25H33.167V32.5ZM14.7826 19.6344C14.5481 19.3998 14.4163 19.0817 14.4163 18.75C14.4163 18.4183 14.5481 18.1002 14.7826 17.8656C15.0172 17.6311 15.3353 17.4993 15.667 17.4993C15.9987 17.4993 16.3168 17.6311 16.5514 17.8656L19.417 20.7328V11.25C19.417 10.9185 19.5487 10.6005 19.7831 10.3661C20.0175 10.1317 20.3355 10 20.667 10C20.9985 10 21.3165 10.1317 21.5509 10.3661C21.7853 10.6005 21.917 10.9185 21.917 11.25V20.7328L24.7826 17.8656C24.8988 17.7495 25.0366 17.6574 25.1884 17.5945C25.3401 17.5317 25.5027 17.4993 25.667 17.4993C25.8312 17.4993 25.9939 17.5317 26.1456 17.5945C26.2974 17.6574 26.4352 17.7495 26.5514 17.8656C26.6675 17.9818 26.7596 18.1196 26.8225 18.2714C26.8853 18.4231 26.9177 18.5858 26.9177 18.75C26.9177 18.9142 26.8853 19.0769 26.8225 19.2286C26.7596 19.3804 26.6675 19.5182 26.5514 19.6344L21.5514 24.6344C21.4353 24.7506 21.2974 24.8428 21.1457 24.9057C20.9939 24.9686 20.8313 25.001 20.667 25.001C20.5027 25.001 20.3401 24.9686 20.1883 24.9057C20.0366 24.8428 19.8987 24.7506 19.7826 24.6344L14.7826 19.6344Z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ </template>
15
+ <script setup lang="ts"></script>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,6 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.52111 2.05C2.39615 2.05 2.27631 2.09964 2.18796 2.188C2.0996 2.27636 2.04996 2.3962 2.04996 2.52116V13.4789C2.04996 13.6038 2.0996 13.7237 2.18796 13.812C2.27632 13.9004 2.39615 13.95 2.52111 13.95H13.4788C13.6038 13.95 13.7236 13.9004 13.812 13.812C13.9003 13.7237 13.95 13.6038 13.95 13.4789V8.99617C13.95 8.70622 14.185 8.47117 14.475 8.47117C14.7649 8.47117 15 8.70622 15 8.99617V13.4789C15 13.8823 14.8397 14.2692 14.5544 14.5545C14.2692 14.8398 13.8823 15 13.4788 15H2.52111C2.11768 15 1.73076 14.8398 1.44549 14.5545C1.16022 14.2692 0.999954 13.8823 0.999954 13.4789V2.52116C0.999954 2.11772 1.16022 1.73081 1.44549 1.44554C1.73076 1.16026 2.11768 1 2.52111 1H7.00381C7.29377 1 7.52882 1.23505 7.52882 1.525C7.52882 1.81495 7.29377 2.05 7.00381 2.05H2.52111ZM10.4635 1.525C10.4635 1.23505 10.6985 1 10.9885 1H14.475C14.6141 1 14.7406 1.0541 14.8345 1.14241C14.8426 1.14999 14.8504 1.15781 14.858 1.16588C14.9013 1.21199 14.9347 1.26402 14.9582 1.31925C14.9851 1.38244 15 1.45198 15 1.525V5.01155C15 5.3015 14.765 5.53655 14.475 5.53655C14.1851 5.53655 13.95 5.3015 13.95 5.01155V2.79246L8.37122 8.37125C8.16619 8.57627 7.83378 8.57627 7.62875 8.37125C7.42373 8.16622 7.42373 7.83381 7.62875 7.62878L13.2075 2.05H10.9885C10.6985 2.05 10.4635 1.81495 10.4635 1.525Z" fill="currentColor"/>
4
+ </svg>
5
+
6
+ </template>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,16 @@
1
+ <template>
2
+ <svg
3
+ width="16"
4
+ height="17"
5
+ viewBox="0 0 16 17"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M2.05 8.5C2.05 5.21391 4.71391 2.55 8 2.55C9.45403 2.55 10.7862 3.07156 11.8198 3.9378L3.4378 12.3198C2.57156 11.2862 2.05 9.95403 2.05 8.5ZM4.18027 13.0622C5.21378 13.9284 6.54598 14.45 8 14.45C11.2861 14.45 13.95 11.7861 13.95 8.5C13.95 7.04598 13.4284 5.71378 12.5622 4.68027L4.18027 13.0622ZM8 1.5C4.13401 1.5 1 4.63401 1 8.5C1 12.366 4.13401 15.5 8 15.5C11.866 15.5 15 12.366 15 8.5C15 4.63401 11.866 1.5 8 1.5Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,16 @@
1
+ <template>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M8.52496 1.525C8.52496 1.23505 8.28991 1 7.99996 1C7.71001 1 7.47496 1.23505 7.47496 1.525V3.35454H6.52834C5.8427 3.35454 5.18513 3.62691 4.70031 4.11174C4.21549 4.59656 3.94312 5.25412 3.94312 5.93977C3.94312 6.62541 4.21549 7.28297 4.70031 7.7678C5.18513 8.25262 5.8427 8.52499 6.52834 8.52499H7.47496V11.5954H4.46811C4.17817 11.5954 3.94312 11.8305 3.94312 12.1204C3.94312 12.4104 4.17817 12.6454 4.46811 12.6454H7.47496V14.475C7.47496 14.7649 7.71001 15 7.99996 15C8.28991 15 8.52496 14.7649 8.52496 14.475V12.6454H9.47152C10.1572 12.6454 10.8147 12.3731 11.2995 11.8882C11.7844 11.4034 12.0567 10.7459 12.0567 10.0602C12.0567 9.37457 11.7844 8.71701 11.2995 8.23219C10.8147 7.74736 10.1572 7.47499 9.47152 7.47499H8.52496V4.40454H10.9431C11.2331 4.40454 11.4681 4.16949 11.4681 3.87954C11.4681 3.58959 11.2331 3.35454 10.9431 3.35454H8.52496V1.525ZM7.47496 4.40454H6.52834C6.12117 4.40454 5.73068 4.56629 5.44277 4.8542C5.15486 5.14211 4.99311 5.5326 4.99311 5.93977C4.99311 6.34693 5.15486 6.73742 5.44277 7.02534C5.73068 7.31325 6.12117 7.47499 6.52834 7.47499H7.47496V4.40454ZM8.52496 8.52499V11.5954H9.47152C9.87869 11.5954 10.2692 11.4337 10.5571 11.1458C10.845 10.8579 11.0067 10.4674 11.0067 10.0602C11.0067 9.65305 10.845 9.26256 10.5571 8.97465C10.2692 8.68674 9.87869 8.52499 9.47152 8.52499H8.52496Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,16 @@
1
+ <template>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 16 16"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M6.89027 2.1533C4.30223 2.64152 2.30621 4.80563 2.07285 7.475H5.02171C5.20164 5.57197 5.84478 3.74533 6.89027 2.1533ZM8.00002 0.999985C4.13402 0.999985 1 4.134 1 8C1 11.866 4.13402 15 8.00002 15C11.866 15 15 11.866 15 8C15 4.134 11.866 0.999985 8.00002 0.999985ZM9.10977 2.15329C10.1553 3.74533 10.7984 5.57197 10.9783 7.475H13.9272C13.6938 4.80563 11.6978 2.64152 9.10977 2.15329ZM9.92318 7.475C9.7326 5.64189 9.06956 3.88997 8.00002 2.3907C6.93048 3.88997 6.26744 5.64189 6.07686 7.475H9.92318ZM6.07686 8.52501H9.92318C9.7326 10.3581 9.06956 12.11 8.00002 13.6093C6.93048 12.11 6.26744 10.3581 6.07686 8.52501ZM5.02171 8.52501H2.07285C2.30621 11.1944 4.30223 13.3585 6.89027 13.8467C5.84478 12.2547 5.20164 10.428 5.02171 8.52501ZM9.10977 13.8467C10.1553 12.2547 10.7984 10.428 10.9783 8.52501H13.9272C13.6938 11.1944 11.6978 13.3585 9.10977 13.8467Z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ </template>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.47751 2.9889L6.93233 4.53417C6.72732 4.7392 6.39491 4.73921 6.18988 4.53419C5.98484 4.32917 5.98483 3.99676 6.18985 3.79173L7.73504 2.24645C9.39699 0.584526 12.0915 0.584512 13.7535 2.24644C15.4154 3.90836 15.4154 6.60287 13.7535 8.2648L12.2083 9.81008C12.0033 10.0151 11.6709 10.0151 11.4659 9.8101C11.2608 9.60508 11.2608 9.27267 11.4658 9.06764L13.011 7.52236C14.2629 6.27048 14.2629 4.24078 13.011 2.9889C11.7591 1.73702 9.72941 1.73703 8.47751 2.9889Z" fill="currentColor"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.53409 6.18986C4.73913 6.39488 4.73914 6.72729 4.53412 6.93232L2.98893 8.47759C1.73704 9.72947 1.73702 11.7592 2.98892 13.0111C4.24081 14.2629 6.27054 14.2629 7.52244 13.0111L9.06762 11.4658C9.27264 11.2608 9.60505 11.2607 9.81008 11.4658C10.0151 11.6708 10.0151 12.0032 9.81011 12.2082L8.26492 13.7535C6.60297 15.4154 3.90841 15.4154 2.24646 13.7535C0.584516 12.0916 0.584512 9.39708 2.24645 7.73516L3.79163 6.18988C3.99665 5.98485 4.32906 5.98484 4.53409 6.18986Z" fill="currentColor"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5295 5.47043C10.7346 5.67545 10.7346 6.00787 10.5295 6.21289L6.21289 10.5295C6.00786 10.7346 5.67545 10.7346 5.47043 10.5295C5.2654 10.3245 5.2654 9.99211 5.47043 9.78708L9.78708 5.47043C9.9921 5.26541 10.3245 5.26541 10.5295 5.47043Z" fill="currentColor"/>
6
+ </svg>
7
+ </template>