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,27 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="16"
8
+ height="16"
9
+ viewBox="0 0 16 16"
10
+ fill="none"
11
+ xmlns="https://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ opacity="0.4"
15
+ d="M7.99998 12.6666C10.5773 12.6666 12.6666 10.5772 12.6666 7.99992C12.6666 5.42259 10.5773 3.33325 7.99998 3.33325C5.42265 3.33325 3.33331 5.42259 3.33331 7.99992C3.33331 10.5772 5.42265 12.6666 7.99998 12.6666Z"
16
+ fill="#FBC920"
17
+ />
18
+ <path
19
+ d="M8.00002 15.3067C7.63335 15.3067 7.33335 15.0334 7.33335 14.6667V14.6134C7.33335 14.2467 7.63335 13.9467 8.00002 13.9467C8.36669 13.9467 8.66669 14.2467 8.66669 14.6134C8.66669 14.9801 8.36669 15.3067 8.00002 15.3067ZM12.76 13.4267C12.5867 13.4267 12.42 13.3601 12.2867 13.2334L12.2 13.1467C11.94 12.8867 11.94 12.4667 12.2 12.2067C12.46 11.9467 12.88 11.9467 13.14 12.2067L13.2267 12.2934C13.4867 12.5534 13.4867 12.9734 13.2267 13.2334C13.1 13.3601 12.9334 13.4267 12.76 13.4267ZM3.24002 13.4267C3.06669 13.4267 2.90002 13.3601 2.76669 13.2334C2.50669 12.9734 2.50669 12.5534 2.76669 12.2934L2.85335 12.2067C3.11335 11.9467 3.53335 11.9467 3.79335 12.2067C4.05335 12.4667 4.05335 12.8867 3.79335 13.1467L3.70669 13.2334C3.58002 13.3601 3.40669 13.4267 3.24002 13.4267ZM14.6667 8.66675H14.6134C14.2467 8.66675 13.9467 8.36675 13.9467 8.00008C13.9467 7.63341 14.2467 7.33342 14.6134 7.33342C14.98 7.33342 15.3067 7.63341 15.3067 8.00008C15.3067 8.36675 15.0334 8.66675 14.6667 8.66675ZM1.38669 8.66675H1.33335C0.966687 8.66675 0.666687 8.36675 0.666687 8.00008C0.666687 7.63341 0.966687 7.33342 1.33335 7.33342C1.70002 7.33342 2.02669 7.63341 2.02669 8.00008C2.02669 8.36675 1.75335 8.66675 1.38669 8.66675ZM12.6734 3.99341C12.5 3.99341 12.3334 3.92675 12.2 3.80008C11.94 3.54008 11.94 3.12008 12.2 2.86008L12.2867 2.77341C12.5467 2.51341 12.9667 2.51341 13.2267 2.77341C13.4867 3.03341 13.4867 3.45341 13.2267 3.71341L13.14 3.80008C13.0134 3.92675 12.8467 3.99341 12.6734 3.99341ZM3.32669 3.99341C3.15335 3.99341 2.98669 3.92675 2.85335 3.80008L2.76669 3.70675C2.50669 3.44675 2.50669 3.02675 2.76669 2.76675C3.02669 2.50675 3.44669 2.50675 3.70669 2.76675L3.79335 2.85342C4.05335 3.11342 4.05335 3.53341 3.79335 3.79341C3.66669 3.92675 3.49335 3.99341 3.32669 3.99341ZM8.00002 2.02675C7.63335 2.02675 7.33335 1.75341 7.33335 1.38675V1.33341C7.33335 0.966748 7.63335 0.666748 8.00002 0.666748C8.36669 0.666748 8.66669 0.966748 8.66669 1.33341C8.66669 1.70008 8.36669 2.02675 8.00002 2.02675Z"
20
+ fill="#FBC920"
21
+ />
22
+ </svg>
23
+ </template>
24
+
25
+ <style scoped>
26
+
27
+ </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="M13.9472 3.75645C13.9218 3.52873 13.7258 3.34491 13.4788 3.34491H2.52121C2.27415 3.34491 2.07818 3.52873 2.05284 3.75645L7.62834 8.07766C7.71751 8.12894 7.84903 8.16645 8 8.16645C8.15098 8.16645 8.2825 8.12894 8.37167 8.07764L13.9472 3.75645ZM14.9999 3.80657C15 3.81272 15 3.80043 14.9999 3.80657V12.1931C14.9999 13.0327 14.3141 13.7048 13.4788 13.7048H2.52121C1.68586 13.7048 1.00007 13.0327 1.00007 12.1931V3.80657C0.999964 3.80046 0.999964 3.8127 1.00007 3.80657C1.00007 2.96699 1.68586 2.29492 2.52121 2.29492H13.4788C14.3141 2.29492 14.9999 2.96699 14.9999 3.80657ZM2.05006 4.97695V12.1931C2.05006 12.4434 2.25625 12.6548 2.52121 12.6548H13.4788C13.7437 12.6548 13.9499 12.4434 13.9499 12.1931V4.97696L8.9062 8.9814L8.90143 8.9842C8.63265 9.1405 8.31382 9.21644 8 9.21644C7.68617 9.21644 7.36735 9.1405 7.09856 8.9842L7.09379 8.9814L2.05006 4.97695Z"
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,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="M11.9618 2.2048L10.0775 4.09209C9.97918 4.19293 9.924 4.32845 9.924 4.46976C9.924 4.61065 9.97886 4.7458 10.0766 4.84655C10.2238 4.99285 10.3408 5.16675 10.4208 5.3583C10.5016 5.55148 10.5431 5.75878 10.5431 5.96814C10.5431 6.17751 10.5016 6.38481 10.4208 6.57799C10.3404 6.77054 10.2226 6.94525 10.0743 7.09203L7.08912 10.0818C6.79048 10.3742 6.38924 10.538 5.97126 10.538C5.55329 10.538 5.15207 10.3742 4.85343 10.0818L4.85245 10.0808C4.75166 9.9816 4.61616 9.92615 4.47518 9.92615C4.33442 9.92615 4.19914 9.98142 4.0984 10.0803L4.0979 10.0808L2.20409 11.9577C2.10536 12.0602 2.05 12.1972 2.05 12.34C2.05 12.4824 2.10502 12.6191 2.20318 12.7214L2.6523 13.1613C3.07934 13.5947 3.64218 13.8676 4.24624 13.9341C4.84858 14.0005 5.45541 13.8577 5.96531 13.5297C8.94408 11.5157 11.5117 8.95081 13.5304 5.97262C13.8579 5.46183 14.0005 4.85381 13.9342 4.25016C13.8676 3.64458 13.595 3.08054 13.1622 2.65284L13.1555 2.64623L12.723 2.20308C12.6208 2.10482 12.4848 2.05 12.3433 2.05C12.201 2.05 12.0642 2.10545 11.9618 2.2048ZM11.2255 1.45628C11.5241 1.16386 11.9253 1 12.3433 1C12.7613 1 13.1625 1.16386 13.4611 1.45628L13.4695 1.46465L13.9037 1.90943C14.5061 2.50627 14.8853 3.2922 14.9779 4.13553C15.0707 4.98047 14.8702 5.83172 14.41 6.54615L14.4033 6.55632C12.308 9.64899 9.64196 12.3123 6.54854 14.4028L6.53949 14.4088C5.82593 14.8699 4.97551 15.0708 4.13126 14.9778C3.28864 14.885 2.50365 14.505 1.90772 13.9017L1.4636 13.4668L1.45524 13.4584C1.16332 13.1594 1 12.7579 1 12.34C1 11.9221 1.16332 11.5207 1.45524 11.2216L1.46132 11.2154L3.36006 9.33375L3.36134 9.33249C3.65838 9.04012 4.05836 8.87615 4.47518 8.87615C4.89172 8.87615 5.29145 9.0399 5.58843 9.33191C5.69095 9.4321 5.82835 9.48804 5.97126 9.48804C6.11354 9.48804 6.25034 9.4326 6.35271 9.33326L9.33251 6.34888L9.33524 6.34617C9.38519 6.29687 9.42491 6.23806 9.45203 6.17315C9.47915 6.10825 9.49313 6.03856 9.49313 5.96814C9.49313 5.89773 9.47915 5.82804 9.45203 5.76313C9.42491 5.69823 9.38519 5.63942 9.33524 5.59012L9.32925 5.58421C9.03736 5.28675 8.874 4.88649 8.874 4.46976C8.874 4.05303 9.03741 3.65281 9.3293 3.35535L9.3325 3.35209L11.2255 1.45628Z"
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,19 @@
1
+ <template>
2
+ <svg
3
+ width="97"
4
+ height="102"
5
+ viewBox="0 0 97 102"
6
+ fill="none"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ fill-rule="evenodd"
11
+ clip-rule="evenodd"
12
+ d="M52.6078 7.0874C50.5543 7.0874 48.8896 8.75333 48.8896 10.8083V25.444H12.9467C10.8932 25.444 9.22852 27.1099 9.22852 29.1649V102.592V102.592C9.22852 104.647 10.8932 106.313 12.9467 106.313H102.184C103.981 106.313 105.48 105.037 105.827 103.342C105.876 103.099 105.902 102.849 105.902 102.592C105.902 102.592 105.902 102.592 105.902 102.592C105.902 102.592 105.902 102.592 105.902 102.592V10.8083C105.902 8.75333 104.238 7.0874 102.184 7.0874H52.6078ZM98.4659 98.8709V14.5293H56.326V29.1649V98.8709H98.4659ZM48.8896 98.8709V32.8859H16.665V98.8709H48.8896ZM71.1989 24.5757H63.7625V33.754H71.1989V24.5757ZM29.059 70.4672V61.2888H36.4955V70.4672H29.059ZM29.059 79.646V88.8243H36.4955V79.646H29.059ZM29.059 52.1106V42.9323H36.4955V52.1106H29.059ZM63.7625 52.1106V42.9323H71.1989V52.1106H63.7625ZM63.7625 61.2888V70.4672H71.1989V61.2888H63.7625ZM63.7625 88.8243V79.646H71.1989V88.8243H63.7625ZM91.0295 24.5757H83.593V33.754H91.0295V24.5757ZM83.593 70.4672V61.2888H91.0295V70.4672H83.593ZM83.593 42.9323V52.1106H91.0295V42.9323H83.593ZM83.593 88.8243V79.646H91.0295V88.8243H83.593Z"
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,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="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>
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,22 @@
1
+ <script setup lang="ts">
2
+
3
+ </script>
4
+
5
+ <template>
6
+ <svg
7
+ width="16"
8
+ height="16"
9
+ viewBox="0 0 16 16"
10
+ fill="none"
11
+ xmlns="https://www.w3.org/2000/svg"
12
+ >
13
+ <path
14
+ d="M8 12L12.3301 4.5H3.66987L8 12Z"
15
+ fill="currentColor"
16
+ />
17
+ </svg>
18
+ </template>
19
+
20
+ <style scoped>
21
+
22
+ </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,69 @@
1
+ <template>
2
+ <svg
3
+ xmlns="https://www.w3.org/2000/svg"
4
+ width="16"
5
+ height="16"
6
+ viewBox="0 0 16 16"
7
+ fill="none"
8
+ >
9
+ <path
10
+ d="M20.8334 -0.166626H-4.83325V16.1667H20.8334V-0.166626Z"
11
+ fill="#333399"
12
+ />
13
+ <path
14
+ d="M1.55726 7.80909H2.2401L2.45113 7.17228L2.66216 7.80909H3.34483L2.79247 8.20262L3.0035 8.83944L2.45113 8.44591L1.89876 8.83944L2.10963 8.20262L1.55726 7.80909ZM3.72867 11.5529L3.17631 11.1594L2.62394 11.5529L2.83481 10.9163L2.28244 10.5228H2.96528L3.17631 9.88594L3.38717 10.5228H4.07001L3.51764 10.9163L3.72867 11.5529ZM3.5239 5.47394L3.73477 6.11075L3.1824 5.71723L2.63004 6.11075L2.84107 5.47394L2.2887 5.08041H2.97154L3.1824 4.44375L3.39343 5.08041H4.07627L3.5239 5.47394ZM5.76286 13.5417L5.21049 13.1482L4.65812 13.5417L4.86899 12.9049L4.31662 12.5114H4.99946L5.21049 11.8746L5.42152 12.5114H6.10419L5.55183 12.9049L5.76286 13.5417ZM5.55759 3.50856L5.76846 4.14538L5.21609 3.75185L4.66373 4.14538L4.87476 3.50856L4.32239 3.11503H5.00523L5.21609 2.47838L5.42712 3.11503H6.10996L5.55759 3.50856ZM8.5466 14.2752L7.99407 13.8816L7.4417 14.2752L7.65273 13.6383L7.10037 13.2448H7.7832L7.99407 12.608L8.20511 13.2448H8.88794L8.33557 13.6383L8.5466 14.2752ZM8.33557 2.75527L8.5466 3.39208L7.99407 2.99856L7.4417 3.39208L7.65273 2.75527L7.10037 2.36174H7.7832L7.99407 1.72492L8.20511 2.36174H8.88794L8.33557 2.75527ZM10.5612 3.11503L10.7722 2.47838L10.9831 3.11503H11.6659L11.1135 3.50856L11.3246 4.14538L10.7722 3.75185L10.2199 4.14538L10.4307 3.50856L9.87851 3.11503H10.5612ZM11.3302 13.5417L10.778 13.1482L10.2254 13.5417L10.4365 12.9049L9.88411 12.5114H10.5669L10.778 11.8746L10.9888 12.5114H11.6717L11.1193 12.9049L11.3302 13.5417ZM12.5949 5.08041L12.8059 4.44375L13.0169 5.08041H13.6996L13.1473 5.47394L13.3583 6.11075L12.8059 5.71723L12.2535 6.11075L12.4644 5.47394L11.912 5.08041H12.5949ZM13.3644 11.5529L12.812 11.1594L12.2598 11.5529L12.4707 10.9163L11.9183 10.5228H12.6011L12.812 9.88594L13.023 10.5228H13.7059L13.1535 10.9163L13.3644 11.5529ZM14.1016 8.83944L13.5492 8.44591L12.9968 8.83944L13.2077 8.20262L12.6553 7.80909H13.3382L13.5492 7.17228L13.7601 7.80909H14.4429L13.8905 8.20262L14.1016 8.83944Z"
15
+ fill="#333399"
16
+ />
17
+ <path
18
+ d="M7.99407 1.72492L7.7832 2.36174H7.10037L7.65273 2.75527L7.4417 3.39208L7.99407 2.99856L8.5466 3.39208L8.33557 2.75527L8.88794 2.36174H8.20511L7.99407 1.72492Z"
19
+ fill="#E7BA1F"
20
+ />
21
+ <path
22
+ d="M5.21609 2.47838L5.00523 3.11503H4.32239L4.87476 3.50856L4.66373 4.14538L5.21609 3.75185L5.76846 4.14538L5.55759 3.50856L6.10996 3.11503H5.42712L5.21609 2.47838Z"
23
+ fill="#E7BA1F"
24
+ />
25
+ <path
26
+ d="M3.1824 4.44375L2.97154 5.08041H2.2887L2.84107 5.47394L2.63004 6.11075L3.1824 5.71723L3.73477 6.11075L3.5239 5.47394L4.07627 5.08041H3.39343L3.1824 4.44375Z"
27
+ fill="#E7BA1F"
28
+ />
29
+ <path
30
+ d="M2.45113 8.44591L3.0035 8.83944L2.79247 8.20262L3.34483 7.80909H2.66216L2.45113 7.17228L2.2401 7.80909H1.55726L2.10963 8.20262L1.89876 8.83944L2.45113 8.44591Z"
31
+ fill="#E7BA1F"
32
+ />
33
+ <path
34
+ d="M3.38717 10.5228L3.17631 9.88594L2.96528 10.5228H2.28244L2.83481 10.9163L2.62394 11.5529L3.17631 11.1594L3.72867 11.5529L3.51764 10.9163L4.07001 10.5228H3.38717Z"
35
+ fill="#E7BA1F"
36
+ />
37
+ <path
38
+ d="M5.42152 12.5114L5.21049 11.8746L4.99946 12.5114H4.31662L4.86899 12.9049L4.65812 13.5417L5.21049 13.1482L5.76286 13.5417L5.55183 12.9049L6.10419 12.5114H5.42152Z"
39
+ fill="#E7BA1F"
40
+ />
41
+ <path
42
+ d="M8.20511 13.2448L7.99407 12.608L7.7832 13.2448H7.10037L7.65273 13.6383L7.4417 14.2752L7.99407 13.8816L8.5466 14.2752L8.33557 13.6383L8.88794 13.2448H8.20511Z"
43
+ fill="#E7BA1F"
44
+ />
45
+ <path
46
+ d="M10.9888 12.5114L10.778 11.8746L10.5669 12.5114H9.88411L10.4365 12.9049L10.2254 13.5417L10.778 13.1482L11.3302 13.5417L11.1193 12.9049L11.6717 12.5114H10.9888Z"
47
+ fill="#E7BA1F"
48
+ />
49
+ <path
50
+ d="M13.023 10.5228L12.812 9.88594L12.6011 10.5228H11.9183L12.4707 10.9163L12.2598 11.5529L12.812 11.1594L13.3644 11.5529L13.1535 10.9163L13.7059 10.5228H13.023Z"
51
+ fill="#E7BA1F"
52
+ />
53
+ <path
54
+ d="M13.7601 7.80909L13.5492 7.17228L13.3382 7.80909H12.6553L13.2077 8.20262L12.9968 8.83944L13.5492 8.44591L14.1016 8.83944L13.8905 8.20262L14.4429 7.80909H13.7601Z"
55
+ fill="#E7BA1F"
56
+ />
57
+ <path
58
+ d="M12.2535 6.11075L12.8059 5.71723L13.3583 6.11075L13.1473 5.47394L13.6996 5.08041H13.0169L12.8059 4.44375L12.5949 5.08041H11.912L12.4644 5.47394L12.2535 6.11075Z"
59
+ fill="#E7BA1F"
60
+ />
61
+ <path
62
+ d="M10.2199 4.14538L10.7722 3.75185L11.3246 4.14538L11.1135 3.50856L11.6659 3.11503H10.9831L10.7722 2.47838L10.5612 3.11503H9.87851L10.4307 3.50856L10.2199 4.14538Z"
63
+ fill="#E7BA1F"
64
+ />
65
+ </svg>
66
+ </template>
67
+
68
+ <script setup lang="ts">
69
+ </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
+ xmlns="https://www.w3.org/2000/svg"
4
+ width="16"
5
+ height="16"
6
+ viewBox="0 0 16 16"
7
+ fill="none"
8
+ >
9
+ <path
10
+ d="M20.8333 10.7222H-4.83337V16.1667H20.8333V10.7222Z"
11
+ fill="#ED1C24"
12
+ />
13
+ <path
14
+ d="M20.8333 5.27787H-4.83337V10.7222H20.8333V5.27787Z"
15
+ fill="#2400D6"
16
+ />
17
+ <path
18
+ d="M20.8333 -0.166626H-4.83337V5.27787H20.8333V-0.166626Z"
19
+ fill="white"
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,269 @@
1
+ <template>
2
+ <svg
3
+ xmlns="https://www.w3.org/2000/svg"
4
+ width="14"
5
+ height="14"
6
+ viewBox="0 0 14 14"
7
+ fill="none"
8
+ >
9
+ <path
10
+ d="M-3 7.53831V8.61521H18.9994V7.53831H6.75007H-3Z"
11
+ fill="white"
12
+ />
13
+ <path
14
+ d="M18.9994 8.61521H-3V9.69225H19L18.9994 8.61521Z"
15
+ fill="#B22234"
16
+ />
17
+ <path
18
+ d="M19 10.7692H-3V11.8461H19V10.7692Z"
19
+ fill="#B22234"
20
+ />
21
+ <path
22
+ d="M19 6.46155H6.74993L6.75007 7.53831H18.9994L19 6.46155Z"
23
+ fill="#B22234"
24
+ />
25
+ <path
26
+ d="M19 12.9231H-3V14H19V12.9231Z"
27
+ fill="#B22234"
28
+ />
29
+ <path
30
+ d="M19 11.8461H-3V12.9231H19V11.8461Z"
31
+ fill="white"
32
+ />
33
+ <path
34
+ d="M19 9.69225H-3V10.7692H19V9.69225Z"
35
+ fill="white"
36
+ />
37
+ <path
38
+ d="M19 2.1538H6.74993V3.23071H19V2.1538Z"
39
+ fill="#B22234"
40
+ />
41
+ <path
42
+ d="M19 0H6.74993V1.0769H19V0Z"
43
+ fill="#B22234"
44
+ />
45
+ <path
46
+ d="M19 5.38451H6.74993V6.46155H19V5.38451Z"
47
+ fill="white"
48
+ />
49
+ <path
50
+ d="M19 1.0769H6.74993V2.1538H19V1.0769Z"
51
+ fill="white"
52
+ />
53
+ <path
54
+ d="M19 4.30761H6.74993V5.38451H19V4.30761Z"
55
+ fill="#B22234"
56
+ />
57
+ <path
58
+ d="M19 3.23071H6.74993V4.30761H19V3.23071Z"
59
+ fill="white"
60
+ />
61
+ <path
62
+ d="M6.74993 6.46155V0H-3V7.53831H6.75007L6.74993 6.46155ZM-1.96413 7.15248L-2.18766 6.97498L-2.41118 7.15248L-2.32576 6.86535L-2.54928 6.68785H-2.27309L-2.23779 6.5691L-2.23002 6.54325L-2.18766 6.40072L-2.1453 6.54325L-2.13753 6.5691L-2.10223 6.68785H-1.82604L-2.04956 6.86535L-1.96413 7.15248ZM-2.04956 5.36156L-2.04278 5.38451L-2.01426 5.48017L-2.00664 5.50616L-1.96413 5.64869L-2.14374 5.50616L-2.17636 5.48017L-2.18766 5.47132L-2.19896 5.48017L-2.23157 5.50616L-2.41118 5.64869L-2.36882 5.50616L-2.33253 5.38451L-2.32576 5.36156L-2.54928 5.1842H-2.27309L-2.18766 4.89707L-2.10223 5.1842H-1.82604L-2.04956 5.36156ZM-2.04956 3.85791L-1.96413 4.14504L-2.18766 3.96767L-2.41118 4.14504L-2.32576 3.85791L-2.54928 3.68054H-2.27309L-2.18766 3.39342L-2.10223 3.68054H-1.82604L-2.04956 3.85791ZM-2.00297 2.31721L-2.04956 2.35425L-1.96413 2.64138L-2.18766 2.46388L-2.41118 2.64138L-2.32576 2.35425L-2.37235 2.31721L-2.54928 2.17675H-2.27309L-2.26617 2.1538L-2.18766 1.88962L-2.10915 2.1538L-2.10223 2.17675H-1.82604L-2.00297 2.31721ZM-2.04956 0.850462L-1.96413 1.13773L-2.18766 0.960088L-2.41118 1.13773L-2.32576 0.850462L-2.54928 0.67296H-2.27309L-2.18766 0.385832L-2.10223 0.67296H-1.82604L-2.04956 0.850462ZM-1.14572 6.40045L-1.3691 6.22294L-1.59263 6.40045L-1.5072 6.11332L-1.73087 5.93582H-1.45453L-1.3691 5.64869L-1.28382 5.93582H-1.00748L-1.23101 6.11332L-1.14572 6.40045ZM-1.02146 4.44322L-1.23101 4.60966L-1.14572 4.89665L-1.3691 4.71929L-1.59263 4.89665L-1.5072 4.60966L-1.71689 4.44322L-1.73087 4.43216H-1.45453L-1.45016 4.41723L-1.3691 4.14504L-1.2882 4.41723L-1.28382 4.43216H-1.00748L-1.02146 4.44322ZM-1.23101 3.10601L-1.1573 3.35429L-1.14953 3.38028L-1.14572 3.39314L-1.1621 3.38028L-1.19472 3.35429L-1.3691 3.21578L-1.38803 3.23071L-1.54363 3.35429L-1.57625 3.38028L-1.59263 3.39314L-1.58882 3.38028L-1.58105 3.35429L-1.5072 3.10601L-1.73087 2.92865H-1.45453L-1.3691 2.64152L-1.28382 2.92865H-1.00748L-1.23101 3.10601ZM-1.23101 1.60222L-1.14572 1.88935L-1.3691 1.71185L-1.59263 1.88935L-1.5072 1.60222L-1.73087 1.42472H-1.45453L-1.40384 1.25427L-1.39607 1.22841L-1.3691 1.13773L-1.34228 1.22841L-1.33451 1.25427L-1.28382 1.42472H-1.00748L-1.23101 1.60222ZM-0.33917 7.15248L-0.562553 6.97498L-0.786077 7.15248L-0.700791 6.86535L-0.924174 6.68785H-0.647981L-0.61268 6.5691L-0.604914 6.54325L-0.562553 6.40072L-0.520192 6.54325L-0.512567 6.5691L-0.477266 6.68785H-0.201073L-0.424456 6.86535L-0.33917 7.15248ZM-0.424456 5.36156L-0.417679 5.38451L-0.389156 5.48017L-0.381531 5.50616L-0.33917 5.64869L-0.562553 5.47132L-0.786077 5.64869L-0.743716 5.50616L-0.73595 5.48017L-0.707569 5.38451L-0.700791 5.36156L-0.924174 5.1842H-0.647981L-0.562553 4.89707L-0.477266 5.1842H-0.201073L-0.424456 5.36156ZM-0.424456 3.85791L-0.33917 4.14504L-0.562553 3.96767L-0.786077 4.14504L-0.700791 3.85791L-0.924174 3.68054H-0.647981L-0.562553 3.39342L-0.477266 3.68054H-0.201073L-0.424456 3.85791ZM-0.345242 2.29135L-0.377859 2.31721L-0.424456 2.35425L-0.33917 2.64138L-0.562553 2.46388L-0.786077 2.64138L-0.700791 2.35425L-0.747247 2.31721L-0.780006 2.29135L-0.924174 2.17675H-0.647981L-0.641203 2.1538L-0.562553 1.88962L-0.484044 2.1538L-0.477266 2.17675H-0.201073L-0.345242 2.29135ZM-0.424456 0.850462L-0.357103 1.0769L-0.33917 1.13773L-0.562553 0.960088L-0.786077 1.13773L-0.700791 0.850462L-0.924174 0.67296H-0.647981L-0.562553 0.385832L-0.477266 0.67296H-0.201073L-0.424456 0.850462ZM0.479384 6.40045L0.25586 6.22294L0.0324764 6.40045L0.117763 6.11332L-0.10562 5.93582H0.170573L0.25586 5.64869L0.341288 5.93582H0.617481L0.393956 6.11332L0.479384 6.40045ZM0.603643 4.44322L0.393956 4.60966L0.479384 4.89665L0.25586 4.71929L0.0324764 4.89665L0.117763 4.60966L-0.0919232 4.44322L-0.10562 4.43216H0.170573L0.174951 4.41723L0.25586 4.14504L0.304292 4.30761L0.336769 4.41723L0.341288 4.43216H0.617481L0.603643 4.44322ZM0.393956 3.10601L0.467806 3.35429L0.475572 3.38028L0.479384 3.39314L0.274781 3.23071L0.25586 3.21578L0.0813329 3.35429L0.0487151 3.38028L0.0324764 3.39314L0.0362892 3.38028L0.0440555 3.35429L0.117763 3.10601L-0.10562 2.92865H0.170573L0.25586 2.64152L0.341288 2.92865H0.617481L0.393956 3.10601ZM0.393956 1.60222L0.479384 1.88935L0.25586 1.71185L0.0324764 1.88935L0.117763 1.60222L-0.10562 1.42472H0.170573L0.221124 1.25427L0.22889 1.22841L0.25586 1.13773L0.28283 1.22841L0.290596 1.25427L0.341288 1.42472H0.617481L0.393956 1.60222ZM1.28594 7.15248L1.06241 6.97498L0.839029 7.15248L0.924315 6.86535L0.70079 6.68785H0.977125L1.01243 6.5691L1.02019 6.54325L1.04448 6.46155L1.06241 6.40072L1.10477 6.54325L1.11254 6.5691L1.14784 6.68785H1.42403L1.20051 6.86535L1.28594 7.15248ZM1.20051 5.36156L1.20743 5.38451L1.23581 5.48017L1.24358 5.50616L1.28594 5.64869L1.10633 5.50616L1.07371 5.48017L1.06241 5.47132L0.839029 5.64869L0.881389 5.50616L0.889014 5.48017L0.917537 5.38451L0.924315 5.36156L0.70079 5.1842H0.977125L1.06241 4.89707L1.14784 5.1842H1.42403L1.20051 5.36156ZM1.20051 3.85791L1.28594 4.14504L1.06241 3.96767L0.839029 4.14504L0.924315 3.85791L0.70079 3.68054H0.977125L1.06241 3.39342L1.14784 3.68054H1.42403L1.20051 3.85791ZM1.24711 2.31721L1.20051 2.35425L1.28594 2.64138L1.06241 2.46388L0.839029 2.64138L0.924315 2.35425L0.877859 2.31721L0.8451 2.29135L0.70079 2.17675H0.977125L0.983903 2.1538L1.06241 1.88962L1.14106 2.1538L1.14784 2.17675H1.42403L1.24711 2.31721ZM1.20051 0.850462L1.28594 1.13773L1.06241 0.960088L0.839029 1.13773L0.924315 0.850462L0.70079 0.67296H0.977125L1.06241 0.385832L1.14784 0.67296H1.42403L1.20051 0.850462ZM2.10449 6.40045L1.88097 6.22294L1.65744 6.40045L1.74287 6.11332L1.51934 5.93582H1.79568L1.88097 5.64869L1.96639 5.93582H2.24259L2.01906 6.11332L2.10449 6.40045ZM2.22875 4.44322L2.01906 4.60966L2.10449 4.89665L1.88097 4.71929L1.65744 4.89665L1.74287 4.60966L1.53318 4.44322L1.51934 4.43216H1.79568L1.79992 4.41723L1.83267 4.30761L1.88097 4.14504L1.96187 4.41723L1.96639 4.43216H2.24259L2.22875 4.44322ZM2.01906 3.10601L2.09291 3.35429L2.10054 3.38028L2.10449 3.39314L2.08811 3.38028L2.05549 3.35429L1.89989 3.23071L1.88097 3.21578L1.86204 3.23071L1.70644 3.35429L1.67382 3.38028L1.65744 3.39314L1.66139 3.38028L1.66902 3.35429L1.74287 3.10601L1.51934 2.92865H1.79568L1.88097 2.64152L1.96639 2.92865H2.24259L2.01906 3.10601ZM2.01906 1.60222L2.10449 1.88935L1.88097 1.71185L1.65744 1.88935L1.74287 1.60222L1.51934 1.42472H1.79568L1.84623 1.25427L1.854 1.22841L1.88097 1.13773L1.90794 1.22841L1.91556 1.25427L1.96639 1.42472H2.24259L2.01906 1.60222ZM2.91104 7.15248L2.68752 6.97498L2.46399 7.15248L2.54942 6.86535L2.3259 6.68785H2.60209L2.63739 6.5691L2.64516 6.54325L2.68752 6.40072L2.72988 6.54325L2.7375 6.5691L2.7728 6.68785H3.04914L2.82561 6.86535L2.91104 7.15248ZM2.82561 5.36156L2.83253 5.38451L2.86092 5.48017L2.86854 5.50616L2.91104 5.64869L2.73143 5.50616L2.69881 5.48017L2.68752 5.47132L2.46399 5.64869L2.50635 5.50616L2.54264 5.38451L2.54942 5.36156L2.3259 5.1842H2.60209L2.68752 4.89707L2.7728 5.1842H3.04914L2.82561 5.36156ZM2.82561 3.85791L2.91104 4.14504L2.68752 3.96767L2.46399 4.14504L2.54942 3.85791L2.3259 3.68054H2.60209L2.68752 3.39342L2.7728 3.68054H3.04914L2.82561 3.85791ZM2.87221 2.31721L2.82561 2.35425L2.91104 2.64138L2.68752 2.46388L2.46399 2.64138L2.54942 2.35425L2.50282 2.31721L2.3259 2.17675H2.60209L2.60901 2.1538L2.68752 1.88962L2.76603 2.1538L2.7728 2.17675H3.04914L2.87221 2.31721ZM2.82561 0.850462L2.91104 1.13773L2.68752 0.960088L2.46399 1.13773L2.54942 0.850462L2.3259 0.67296H2.60209L2.68752 0.385832L2.7728 0.67296H3.04914L2.82561 0.850462ZM3.72945 6.40045L3.50607 6.22294L3.28255 6.40045L3.36797 6.11332L3.14445 5.93582H3.42064L3.50607 5.64869L3.59136 5.93582H3.86769L3.64417 6.11332L3.72945 6.40045ZM3.85371 4.44322L3.64417 4.60966L3.72945 4.89665L3.50607 4.71929L3.28255 4.89665L3.36797 4.60966L3.15829 4.44322L3.14445 4.43216H3.42064L3.42516 4.41723L3.45764 4.30761L3.50607 4.14504L3.58698 4.41723L3.59136 4.43216H3.86769L3.85371 4.44322ZM3.64417 3.10601L3.71788 3.35429L3.72564 3.38028L3.72945 3.39314L3.50607 3.21578L3.48715 3.23071L3.33154 3.35429L3.29893 3.38028L3.28255 3.39314L3.28636 3.38028L3.29413 3.35429L3.36797 3.10601L3.14445 2.92865H3.42064L3.50607 2.64152L3.59136 2.92865H3.86769L3.64417 3.10601ZM3.64417 1.60222L3.72945 1.88935L3.50607 1.71185L3.28255 1.88935L3.36797 1.60222L3.14445 1.42472H3.42064L3.47134 1.25427L3.4791 1.22841L3.50607 1.13773L3.53304 1.22841L3.54067 1.25427L3.59136 1.42472H3.86769L3.64417 1.60222ZM4.53601 7.15248L4.31262 6.97498L4.0891 7.15248L4.17439 6.86535L3.951 6.68785H4.2272L4.2625 6.5691L4.27026 6.54325L4.31262 6.40072L4.35498 6.54325L4.36261 6.5691L4.39791 6.68785H4.67424L4.45072 6.86535L4.53601 7.15248ZM4.45072 5.36156L4.4575 5.38451L4.48602 5.48017L4.49365 5.50616L4.53601 5.64869L4.3564 5.50616L4.32378 5.48017L4.31262 5.47132L4.30133 5.48017L4.26871 5.50616L4.0891 5.64869L4.13146 5.50616L4.13923 5.48017L4.16761 5.38451L4.17439 5.36156L3.951 5.1842H4.2272L4.31262 4.89707L4.39791 5.1842H4.67424L4.45072 5.36156ZM4.45072 3.85791L4.53601 4.14504L4.31262 3.96767L4.0891 4.14504L4.17439 3.85791L3.951 3.68054H4.2272L4.31262 3.39342L4.39791 3.68054H4.67424L4.45072 3.85791ZM4.49732 2.31721L4.45072 2.35425L4.53601 2.64138L4.31262 2.46388L4.0891 2.64138L4.17439 2.35425L4.12793 2.31721L3.951 2.17675H4.2272L4.23411 2.1538L4.31262 1.88962L4.39113 2.1538L4.39791 2.17675H4.67424L4.49732 2.31721ZM4.45072 0.850462L4.51807 1.0769L4.53601 1.13773L4.31262 0.960088L4.0891 1.13773L4.17439 0.850462L3.951 0.67296H4.2272L4.31262 0.385832L4.39791 0.67296H4.67424L4.45072 0.850462ZM5.35456 6.40045L5.13104 6.22294L4.90765 6.40045L4.99294 6.11332L4.76941 5.93582H5.04575L5.13104 5.64869L5.21646 5.93582H5.49266L5.26913 6.11332L5.35456 6.40045ZM5.47882 4.44322L5.26913 4.60966L5.35456 4.89665L5.13104 4.71929L4.90765 4.89665L4.99294 4.60966L4.78325 4.44322L4.76941 4.43216H5.04575L5.05013 4.41723L5.13104 4.14504L5.21209 4.41723L5.21646 4.43216H5.49266L5.47882 4.44322ZM5.26913 3.10601L5.34298 3.35429L5.35075 3.38028L5.35456 3.39314L5.33818 3.38028L5.30556 3.35429L5.14996 3.23071L5.13104 3.21578L4.95651 3.35429L4.92389 3.38028L4.90765 3.39314L4.91147 3.38028L4.91909 3.35429L4.95594 3.23071L4.99294 3.10601L4.76941 2.92865H5.04575L5.13104 2.64152L5.21646 2.92865H5.49266L5.26913 3.10601ZM5.26913 1.60222L5.35456 1.88935L5.13104 1.71185L4.90765 1.88935L4.99294 1.60222L4.76941 1.42472H5.04575L5.0963 1.25427L5.10407 1.22841L5.13104 1.13773L5.15801 1.22841L5.16577 1.25427L5.21646 1.42472H5.49266L5.26913 1.60222ZM6.16111 7.15248L5.93759 6.97498L5.7142 7.15248L5.79949 6.86535L5.57597 6.68785H5.8523L5.8876 6.5691L5.89523 6.54325L5.91965 6.46155L5.93759 6.40072L5.97995 6.54325L5.98771 6.5691L6.02302 6.68785H6.29935L6.07583 6.86535L6.16111 7.15248ZM6.07583 5.36156L6.0826 5.38451L6.11099 5.48017L6.11875 5.50616L6.16111 5.64869L5.9815 5.50616L5.94888 5.48017L5.93759 5.47132L5.7142 5.64869L5.75657 5.50616L5.76419 5.48017L5.79271 5.38451L5.79949 5.36156L5.57597 5.1842H5.8523L5.93759 4.89707L6.02302 5.1842H6.29935L6.07583 5.36156ZM6.07583 3.85791L6.16111 4.14504L5.93759 3.96767L5.7142 4.14504L5.79949 3.85791L5.57597 3.68054H5.8523L5.93759 3.39342L6.02302 3.68054H6.29935L6.07583 3.85791ZM6.12228 2.31721L6.07583 2.35425L6.16111 2.64138L5.93759 2.46388L5.7142 2.64138L5.79949 2.35425L5.75304 2.31721L5.57597 2.17675H5.8523L5.85908 2.1538L5.93759 1.88962L6.01624 2.1538L6.02302 2.17675H6.29935L6.12228 2.31721ZM6.07583 0.850462L6.16111 1.13773L5.93759 0.960088L5.7142 1.13773L5.79949 0.850462L5.57597 0.67296H5.8523L5.93759 0.385832L6.02302 0.67296H6.29935L6.07583 0.850462Z"
63
+ fill="#3C3B6E"
64
+ />
65
+ <path
66
+ d="M-2.10223 6.68785L-2.13753 6.5691L-2.1453 6.54325L-2.18766 6.40072L-2.23002 6.54325L-2.23779 6.5691L-2.27309 6.68785H-2.54928L-2.32576 6.86535L-2.41118 7.15248L-2.18766 6.97498L-1.96413 7.15248L-2.04956 6.86535L-1.82604 6.68785H-2.10223Z"
67
+ fill="white"
68
+ />
69
+ <path
70
+ d="M-0.477266 6.68785L-0.512567 6.5691L-0.520192 6.54325L-0.562553 6.40072L-0.604914 6.54325L-0.61268 6.5691L-0.647981 6.68785H-0.924174L-0.700791 6.86535L-0.786077 7.15248L-0.562553 6.97498L-0.33917 7.15248L-0.424456 6.86535L-0.201073 6.68785H-0.477266Z"
71
+ fill="white"
72
+ />
73
+ <path
74
+ d="M1.14784 6.68785L1.11254 6.5691L1.10477 6.54325L1.06241 6.40072L1.04448 6.46155L1.02019 6.54325L1.01243 6.5691L0.977125 6.68785H0.70079L0.924315 6.86535L0.839029 7.15248L1.06241 6.97498L1.28594 7.15248L1.20051 6.86535L1.42403 6.68785H1.14784Z"
75
+ fill="white"
76
+ />
77
+ <path
78
+ d="M2.7728 6.68785L2.7375 6.5691L2.72988 6.54325L2.68752 6.40072L2.64516 6.54325L2.63739 6.5691L2.60209 6.68785H2.3259L2.54942 6.86535L2.46399 7.15248L2.68752 6.97498L2.91104 7.15248L2.82561 6.86535L3.04914 6.68785H2.7728Z"
79
+ fill="white"
80
+ />
81
+ <path
82
+ d="M4.39791 6.68785L4.36261 6.5691L4.35498 6.54325L4.31262 6.40072L4.27026 6.54325L4.2625 6.5691L4.2272 6.68785H3.951L4.17439 6.86535L4.0891 7.15248L4.31262 6.97498L4.53601 7.15248L4.45072 6.86535L4.67424 6.68785H4.39791Z"
83
+ fill="white"
84
+ />
85
+ <path
86
+ d="M6.02302 6.68785L5.98771 6.5691L5.97995 6.54325L5.93759 6.40072L5.91965 6.46155L5.89523 6.54325L5.8876 6.5691L5.8523 6.68785H5.57597L5.79949 6.86535L5.7142 7.15248L5.93759 6.97498L6.16111 7.15248L6.07583 6.86535L6.29935 6.68785H6.02302Z"
87
+ fill="white"
88
+ />
89
+ <path
90
+ d="M-2.18766 4.89707L-2.27309 5.1842H-2.54928L-2.32576 5.36156L-2.33253 5.38451L-2.36882 5.50616L-2.41118 5.64869L-2.23157 5.50616L-2.19896 5.48017L-2.18766 5.47132L-2.17636 5.48017L-2.14374 5.50616L-1.96413 5.64869L-2.00664 5.50616L-2.01426 5.48017L-2.04278 5.38451L-2.04956 5.36156L-1.82604 5.1842H-2.10223L-2.18766 4.89707Z"
91
+ fill="white"
92
+ />
93
+ <path
94
+ d="M-0.562553 4.89707L-0.647981 5.1842H-0.924174L-0.700791 5.36156L-0.707569 5.38451L-0.73595 5.48017L-0.743716 5.50616L-0.786077 5.64869L-0.562553 5.47132L-0.33917 5.64869L-0.381531 5.50616L-0.389156 5.48017L-0.417679 5.38451L-0.424456 5.36156L-0.201073 5.1842H-0.477266L-0.562553 4.89707Z"
95
+ fill="white"
96
+ />
97
+ <path
98
+ d="M1.06241 4.89707L0.977125 5.1842H0.70079L0.924315 5.36156L0.917537 5.38451L0.889014 5.48017L0.881389 5.50616L0.839029 5.64869L1.06241 5.47132L1.07371 5.48017L1.10633 5.50616L1.28594 5.64869L1.24358 5.50616L1.23581 5.48017L1.20743 5.38451L1.20051 5.36156L1.42403 5.1842H1.14784L1.06241 4.89707Z"
99
+ fill="white"
100
+ />
101
+ <path
102
+ d="M2.68752 4.89707L2.60209 5.1842H2.3259L2.54942 5.36156L2.54264 5.38451L2.50635 5.50616L2.46399 5.64869L2.68752 5.47132L2.69881 5.48017L2.73143 5.50616L2.91104 5.64869L2.86854 5.50616L2.86092 5.48017L2.83253 5.38451L2.82561 5.36156L3.04914 5.1842H2.7728L2.68752 4.89707Z"
103
+ fill="white"
104
+ />
105
+ <path
106
+ d="M4.31262 4.89707L4.2272 5.1842H3.951L4.17439 5.36156L4.16761 5.38451L4.13923 5.48017L4.13146 5.50616L4.0891 5.64869L4.26871 5.50616L4.30133 5.48017L4.31262 5.47132L4.32378 5.48017L4.3564 5.50616L4.53601 5.64869L4.49365 5.50616L4.48602 5.48017L4.4575 5.38451L4.45072 5.36156L4.67424 5.1842H4.39791L4.31262 4.89707Z"
107
+ fill="white"
108
+ />
109
+ <path
110
+ d="M5.93759 4.89707L5.8523 5.1842H5.57597L5.79949 5.36156L5.79271 5.38451L5.76419 5.48017L5.75657 5.50616L5.7142 5.64869L5.93759 5.47132L5.94888 5.48017L5.9815 5.50616L6.16111 5.64869L6.11875 5.50616L6.11099 5.48017L6.0826 5.38451L6.07583 5.36156L6.29935 5.1842H6.02302L5.93759 4.89707Z"
111
+ fill="white"
112
+ />
113
+ <path
114
+ d="M-2.18766 3.39342L-2.27309 3.68054H-2.54928L-2.32576 3.85791L-2.41118 4.14504L-2.18766 3.96767L-1.96413 4.14504L-2.04956 3.85791L-1.82604 3.68054H-2.10223L-2.18766 3.39342Z"
115
+ fill="white"
116
+ />
117
+ <path
118
+ d="M-0.562553 3.39342L-0.647981 3.68054H-0.924174L-0.700791 3.85791L-0.786077 4.14504L-0.562553 3.96767L-0.33917 4.14504L-0.424456 3.85791L-0.201073 3.68054H-0.477266L-0.562553 3.39342Z"
119
+ fill="white"
120
+ />
121
+ <path
122
+ d="M1.06241 3.39342L0.977125 3.68054H0.70079L0.924315 3.85791L0.839029 4.14504L1.06241 3.96767L1.28594 4.14504L1.20051 3.85791L1.42403 3.68054H1.14784L1.06241 3.39342Z"
123
+ fill="white"
124
+ />
125
+ <path
126
+ d="M2.68752 3.39342L2.60209 3.68054H2.3259L2.54942 3.85791L2.46399 4.14504L2.68752 3.96767L2.91104 4.14504L2.82561 3.85791L3.04914 3.68054H2.7728L2.68752 3.39342Z"
127
+ fill="white"
128
+ />
129
+ <path
130
+ d="M4.31262 3.39342L4.2272 3.68054H3.951L4.17439 3.85791L4.0891 4.14504L4.31262 3.96767L4.53601 4.14504L4.45072 3.85791L4.67424 3.68054H4.39791L4.31262 3.39342Z"
131
+ fill="white"
132
+ />
133
+ <path
134
+ d="M5.93759 3.39342L5.8523 3.68054H5.57597L5.79949 3.85791L5.7142 4.14504L5.93759 3.96767L6.16111 4.14504L6.07583 3.85791L6.29935 3.68054H6.02302L5.93759 3.39342Z"
135
+ fill="white"
136
+ />
137
+ <path
138
+ d="M-2.10915 2.1538L-2.18766 1.88962L-2.26617 2.1538L-2.27309 2.17675H-2.54928L-2.37235 2.31721L-2.32576 2.35425L-2.41118 2.64138L-2.18766 2.46388L-1.96413 2.64138L-2.04956 2.35425L-2.00297 2.31721L-1.82604 2.17675H-2.10223L-2.10915 2.1538Z"
139
+ fill="white"
140
+ />
141
+ <path
142
+ d="M-0.484044 2.1538L-0.562553 1.88962L-0.641203 2.1538L-0.647981 2.17675H-0.924174L-0.780006 2.29135L-0.747247 2.31721L-0.700791 2.35425L-0.786077 2.64138L-0.562553 2.46388L-0.33917 2.64138L-0.424456 2.35425L-0.377859 2.31721L-0.345242 2.29135L-0.201073 2.17675H-0.477266L-0.484044 2.1538Z"
143
+ fill="white"
144
+ />
145
+ <path
146
+ d="M1.14106 2.1538L1.06241 1.88962L0.983903 2.1538L0.977125 2.17675H0.70079L0.8451 2.29135L0.877859 2.31721L0.924315 2.35425L0.839029 2.64138L1.06241 2.46388L1.28594 2.64138L1.20051 2.35425L1.24711 2.31721L1.42403 2.17675H1.14784L1.14106 2.1538Z"
147
+ fill="white"
148
+ />
149
+ <path
150
+ d="M2.76603 2.1538L2.68752 1.88962L2.60901 2.1538L2.60209 2.17675H2.3259L2.50282 2.31721L2.54942 2.35425L2.46399 2.64138L2.68752 2.46388L2.91104 2.64138L2.82561 2.35425L2.87221 2.31721L3.04914 2.17675H2.7728L2.76603 2.1538Z"
151
+ fill="white"
152
+ />
153
+ <path
154
+ d="M4.39113 2.1538L4.31262 1.88962L4.23411 2.1538L4.2272 2.17675H3.951L4.12793 2.31721L4.17439 2.35425L4.0891 2.64138L4.31262 2.46388L4.53601 2.64138L4.45072 2.35425L4.49732 2.31721L4.67424 2.17675H4.39791L4.39113 2.1538Z"
155
+ fill="white"
156
+ />
157
+ <path
158
+ d="M6.01624 2.1538L5.93759 1.88962L5.85908 2.1538L5.8523 2.17675H5.57597L5.75304 2.31721L5.79949 2.35425L5.7142 2.64138L5.93759 2.46388L6.16111 2.64138L6.07583 2.35425L6.12228 2.31721L6.29935 2.17675H6.02302L6.01624 2.1538Z"
159
+ fill="white"
160
+ />
161
+ <path
162
+ d="M-1.33451 1.25427L-1.34228 1.22841L-1.3691 1.13773L-1.39607 1.22841L-1.40384 1.25427L-1.45453 1.42472H-1.73087L-1.5072 1.60222L-1.59263 1.88935L-1.3691 1.71185L-1.14572 1.88935L-1.23101 1.60222L-1.00748 1.42472H-1.28382L-1.33451 1.25427Z"
163
+ fill="white"
164
+ />
165
+ <path
166
+ d="M0.290596 1.25427L0.28283 1.22841L0.25586 1.13773L0.22889 1.22841L0.221124 1.25427L0.170573 1.42472H-0.10562L0.117763 1.60222L0.0324764 1.88935L0.25586 1.71185L0.479384 1.88935L0.393956 1.60222L0.617481 1.42472H0.341288L0.290596 1.25427Z"
167
+ fill="white"
168
+ />
169
+ <path
170
+ d="M1.91556 1.25427L1.90794 1.22841L1.88097 1.13773L1.854 1.22841L1.84623 1.25427L1.79568 1.42472H1.51934L1.74287 1.60222L1.65744 1.88935L1.88097 1.71185L2.10449 1.88935L2.01906 1.60222L2.24259 1.42472H1.96639L1.91556 1.25427Z"
171
+ fill="white"
172
+ />
173
+ <path
174
+ d="M3.54067 1.25427L3.53304 1.22841L3.50607 1.13773L3.4791 1.22841L3.47134 1.25427L3.42064 1.42472H3.14445L3.36797 1.60222L3.28255 1.88935L3.50607 1.71185L3.72945 1.88935L3.64417 1.60222L3.86769 1.42472H3.59136L3.54067 1.25427Z"
175
+ fill="white"
176
+ />
177
+ <path
178
+ d="M5.16577 1.25427L5.15801 1.22841L5.13104 1.13773L5.10407 1.22841L5.0963 1.25427L5.04575 1.42472H4.76941L4.99294 1.60222L4.90765 1.88935L5.13104 1.71185L5.35456 1.88935L5.26913 1.60222L5.49266 1.42472H5.21646L5.16577 1.25427Z"
179
+ fill="white"
180
+ />
181
+ <path
182
+ d="M-1.3691 2.64152L-1.45453 2.92865H-1.73087L-1.5072 3.10601L-1.58105 3.35429L-1.58882 3.38028L-1.59263 3.39314L-1.57625 3.38028L-1.54363 3.35429L-1.38803 3.23071L-1.3691 3.21578L-1.19472 3.35429L-1.1621 3.38028L-1.14572 3.39314L-1.14953 3.38028L-1.1573 3.35429L-1.23101 3.10601L-1.00748 2.92865H-1.28382L-1.3691 2.64152Z"
183
+ fill="white"
184
+ />
185
+ <path
186
+ d="M0.25586 2.64152L0.170573 2.92865H-0.10562L0.117763 3.10601L0.0440555 3.35429L0.0362892 3.38028L0.0324764 3.39314L0.0487151 3.38028L0.0813329 3.35429L0.25586 3.21578L0.274781 3.23071L0.479384 3.39314L0.475572 3.38028L0.467806 3.35429L0.393956 3.10601L0.617481 2.92865H0.341288L0.25586 2.64152Z"
187
+ fill="white"
188
+ />
189
+ <path
190
+ d="M1.88097 2.64152L1.79568 2.92865H1.51934L1.74287 3.10601L1.66902 3.35429L1.66139 3.38028L1.65744 3.39314L1.67382 3.38028L1.70644 3.35429L1.86204 3.23071L1.88097 3.21578L1.89989 3.23071L2.05549 3.35429L2.08811 3.38028L2.10449 3.39314L2.10054 3.38028L2.09291 3.35429L2.01906 3.10601L2.24259 2.92865H1.96639L1.88097 2.64152Z"
191
+ fill="white"
192
+ />
193
+ <path
194
+ d="M3.50607 2.64152L3.42064 2.92865H3.14445L3.36797 3.10601L3.29413 3.35429L3.28636 3.38028L3.28255 3.39314L3.29893 3.38028L3.33154 3.35429L3.48715 3.23071L3.50607 3.21578L3.72945 3.39314L3.72564 3.38028L3.71788 3.35429L3.64417 3.10601L3.86769 2.92865H3.59136L3.50607 2.64152Z"
195
+ fill="white"
196
+ />
197
+ <path
198
+ d="M5.13104 2.64152L5.04575 2.92865H4.76941L4.99294 3.10601L4.95594 3.23071L4.91909 3.35429L4.91147 3.38028L4.90765 3.39314L4.92389 3.38028L4.95651 3.35429L5.13104 3.21578L5.14996 3.23071L5.30556 3.35429L5.33818 3.38028L5.35456 3.39314L5.35075 3.38028L5.34298 3.35429L5.26913 3.10601L5.49266 2.92865H5.21646L5.13104 2.64152Z"
199
+ fill="white"
200
+ />
201
+ <path
202
+ d="M-1.2882 4.41723L-1.3691 4.14504L-1.45016 4.41723L-1.45453 4.43216H-1.73087L-1.71689 4.44322L-1.5072 4.60966L-1.59263 4.89665L-1.3691 4.71929L-1.14572 4.89665L-1.23101 4.60966L-1.02146 4.44322L-1.00748 4.43216H-1.28382L-1.2882 4.41723Z"
203
+ fill="white"
204
+ />
205
+ <path
206
+ d="M0.336769 4.41723L0.304292 4.30761L0.25586 4.14504L0.174951 4.41723L0.170573 4.43216H-0.10562L-0.0919232 4.44322L0.117763 4.60966L0.0324764 4.89665L0.25586 4.71929L0.479384 4.89665L0.393956 4.60966L0.603643 4.44322L0.617481 4.43216H0.341288L0.336769 4.41723Z"
207
+ fill="white"
208
+ />
209
+ <path
210
+ d="M1.96187 4.41723L1.88097 4.14504L1.83267 4.30761L1.79992 4.41723L1.79568 4.43216H1.51934L1.53318 4.44322L1.74287 4.60966L1.65744 4.89665L1.88097 4.71929L2.10449 4.89665L2.01906 4.60966L2.22875 4.44322L2.24259 4.43216H1.96639L1.96187 4.41723Z"
211
+ fill="white"
212
+ />
213
+ <path
214
+ d="M3.58698 4.41723L3.50607 4.14504L3.45764 4.30761L3.42516 4.41723L3.42064 4.43216H3.14445L3.15829 4.44322L3.36797 4.60966L3.28255 4.89665L3.50607 4.71929L3.72945 4.89665L3.64417 4.60966L3.85371 4.44322L3.86769 4.43216H3.59136L3.58698 4.41723Z"
215
+ fill="white"
216
+ />
217
+ <path
218
+ d="M5.21209 4.41723L5.13104 4.14504L5.05013 4.41723L5.04575 4.43216H4.76941L4.78325 4.44322L4.99294 4.60966L4.90765 4.89665L5.13104 4.71929L5.35456 4.89665L5.26913 4.60966L5.47882 4.44322L5.49266 4.43216H5.21646L5.21209 4.41723Z"
219
+ fill="white"
220
+ />
221
+ <path
222
+ d="M-1.28382 5.93582L-1.3691 5.64869L-1.45453 5.93582H-1.73087L-1.5072 6.11332L-1.59263 6.40045L-1.3691 6.22294L-1.14572 6.40045L-1.23101 6.11332L-1.00748 5.93582H-1.28382Z"
223
+ fill="white"
224
+ />
225
+ <path
226
+ d="M0.341288 5.93582L0.25586 5.64869L0.170573 5.93582H-0.10562L0.117763 6.11332L0.0324764 6.40045L0.25586 6.22294L0.479384 6.40045L0.393956 6.11332L0.617481 5.93582H0.341288Z"
227
+ fill="white"
228
+ />
229
+ <path
230
+ d="M1.96639 5.93582L1.88097 5.64869L1.79568 5.93582H1.51934L1.74287 6.11332L1.65744 6.40045L1.88097 6.22294L2.10449 6.40045L2.01906 6.11332L2.24259 5.93582H1.96639Z"
231
+ fill="white"
232
+ />
233
+ <path
234
+ d="M3.59136 5.93582L3.50607 5.64869L3.42064 5.93582H3.14445L3.36797 6.11332L3.28255 6.40045L3.50607 6.22294L3.72945 6.40045L3.64417 6.11332L3.86769 5.93582H3.59136Z"
235
+ fill="white"
236
+ />
237
+ <path
238
+ d="M5.21646 5.93582L5.13104 5.64869L5.04575 5.93582H4.76941L4.99294 6.11332L4.90765 6.40045L5.13104 6.22294L5.35456 6.40045L5.26913 6.11332L5.49266 5.93582H5.21646Z"
239
+ fill="white"
240
+ />
241
+ <path
242
+ d="M-2.18766 0.385832L-2.27309 0.67296H-2.54928L-2.32576 0.850462L-2.41118 1.13773L-2.18766 0.960088L-1.96413 1.13773L-2.04956 0.850462L-1.82604 0.67296H-2.10223L-2.18766 0.385832Z"
243
+ fill="white"
244
+ />
245
+ <path
246
+ d="M-0.562553 0.385832L-0.647981 0.67296H-0.924174L-0.700791 0.850462L-0.786077 1.13773L-0.562553 0.960088L-0.33917 1.13773L-0.357103 1.0769L-0.424456 0.850462L-0.201073 0.67296H-0.477266L-0.562553 0.385832Z"
247
+ fill="white"
248
+ />
249
+ <path
250
+ d="M1.06241 0.385832L0.977125 0.67296H0.70079L0.924315 0.850462L0.839029 1.13773L1.06241 0.960088L1.28594 1.13773L1.20051 0.850462L1.42403 0.67296H1.14784L1.06241 0.385832Z"
251
+ fill="white"
252
+ />
253
+ <path
254
+ d="M2.68752 0.385832L2.60209 0.67296H2.3259L2.54942 0.850462L2.46399 1.13773L2.68752 0.960088L2.91104 1.13773L2.82561 0.850462L3.04914 0.67296H2.7728L2.68752 0.385832Z"
255
+ fill="white"
256
+ />
257
+ <path
258
+ d="M4.31262 0.385832L4.2272 0.67296H3.951L4.17439 0.850462L4.0891 1.13773L4.31262 0.960088L4.53601 1.13773L4.51807 1.0769L4.45072 0.850462L4.67424 0.67296H4.39791L4.31262 0.385832Z"
259
+ fill="white"
260
+ />
261
+ <path
262
+ d="M5.93759 0.385832L5.8523 0.67296H5.57597L5.79949 0.850462L5.7142 1.13773L5.93759 0.960088L6.16111 1.13773L6.07583 0.850462L6.29935 0.67296H6.02302L5.93759 0.385832Z"
263
+ fill="white"
264
+ />
265
+ </svg>
266
+ </template>
267
+
268
+ <script setup lang="ts">
269
+ </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,37 @@
1
+ <template>
2
+ <svg
3
+ xmlns="https://www.w3.org/2000/svg"
4
+ width="16"
5
+ height="16"
6
+ viewBox="0 0 16 16"
7
+ fill="none"
8
+ >
9
+ <path
10
+ d="M25.6667 -0.166626H0V16.1667H25.6667V-0.166626Z"
11
+ fill="#DE2910"
12
+ />
13
+ <path
14
+ d="M4.86468 3.34606L4.31446 1.69132L3.76588 3.34606H1.98837L3.42653 4.36857L2.87795 6.02331L4.31446 5.00079L5.75261 6.02331L5.20404 4.36857L6.64054 3.34606H4.86468Z"
15
+ fill="#FFDE00"
16
+ />
17
+ <path
18
+ d="M10.8446 5.43625H10.2664L10.0885 4.89919L9.91057 5.43625H9.33234L9.80019 5.76849L9.62228 6.30555L10.0885 5.97331L10.5547 6.30555L10.3768 5.76849L10.8446 5.43625Z"
19
+ fill="#FFDE00"
20
+ />
21
+ <path
22
+ d="M9.86279 3.45734L9.94351 4.01698L10.2137 3.51863L10.782 3.61701L10.3817 3.21058L10.6519 2.71061L10.1346 2.95899L9.73265 2.55256L9.81337 3.1122L9.29445 3.36057L9.86279 3.45734Z"
23
+ fill="#FFDE00"
24
+ />
25
+ <path
26
+ d="M8.31756 1.91711L8.61409 2.40096L8.66516 1.8397L9.22691 1.71229L8.69481 1.49133L8.74588 0.928467L8.36698 1.35425L7.83653 1.13329L8.13306 1.61875L7.75416 2.04453L8.31756 1.91711Z"
27
+ fill="#FFDE00"
28
+ />
29
+ <path
30
+ d="M8.71458 6.55715L8.35874 7.00228L7.81676 6.81036L8.13964 7.27807L7.78381 7.7232L8.33898 7.56837L8.66186 8.03609L8.68163 7.47161L9.23679 7.31516L8.69316 7.12324L8.71458 6.55715Z"
31
+ fill="#FFDE00"
32
+ />
33
+ </svg>
34
+ </template>
35
+
36
+ <script setup lang="ts">
37
+ </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,17 @@
1
+ <template>
2
+ <svg
3
+ width="16"
4
+ height="16"
5
+ viewBox="0 0 36 32"
6
+ fill="none"
7
+ xmlns="https://www.w3.org/2000/svg"
8
+ >
9
+ <path
10
+ d="M30.375 13.25C30.375 13.6147 30.2301 13.9644 29.9723 14.2223C29.7144 14.4801 29.3647 14.625 29 14.625H22.125C21.7603 14.625 21.4106 14.4801 21.1527 14.2223C20.8949 13.9644 20.75 13.6147 20.75 13.25C20.75 12.8853 20.8949 12.5356 21.1527 12.2777C21.4106 12.0199 21.7603 11.875 22.125 11.875H29C29.3647 11.875 29.7144 12.0199 29.9723 12.2777C30.2301 12.5356 30.375 12.8853 30.375 13.25ZM29 17.375H22.125C21.7603 17.375 21.4106 17.5199 21.1527 17.7777C20.8949 18.0356 20.75 18.3853 20.75 18.75C20.75 19.1147 20.8949 19.4644 21.1527 19.7223C21.4106 19.9801 21.7603 20.125 22.125 20.125H29C29.3647 20.125 29.7144 19.9801 29.9723 19.7223C30.2301 19.4644 30.375 19.1147 30.375 18.75C30.375 18.3853 30.2301 18.0356 29.9723 17.7777C29.7144 17.5199 29.3647 17.375 29 17.375ZM35.875 3.625V28.375C35.875 29.1043 35.5853 29.8038 35.0695 30.3195C34.5538 30.8353 33.8543 31.125 33.125 31.125H2.875C2.14565 31.125 1.44618 30.8353 0.930456 30.3195C0.414731 29.8038 0.125 29.1043 0.125 28.375V3.625C0.125 2.89565 0.414731 2.19618 0.930456 1.68046C1.44618 1.16473 2.14565 0.875 2.875 0.875H33.125C33.8543 0.875 34.5538 1.16473 35.0695 1.68046C35.5853 2.19618 35.875 2.89565 35.875 3.625ZM33.125 28.375V3.625H2.875V28.375H33.125ZM19.3303 22.5312C19.4215 22.8845 19.3686 23.2596 19.1832 23.5738C18.9979 23.8881 18.6953 24.1159 18.342 24.207C17.9888 24.2982 17.6137 24.2453 17.2995 24.06C16.9852 23.8746 16.7574 23.572 16.6663 23.2188C16.2142 21.4553 14.4216 20.125 12.4983 20.125C10.575 20.125 8.78406 21.4553 8.33031 23.2188C8.23914 23.572 8.01137 23.8746 7.6971 24.06C7.38283 24.2453 7.00781 24.2982 6.65453 24.207C6.30125 24.1159 5.99866 23.8881 5.81333 23.5738C5.62799 23.2596 5.57508 22.8845 5.66625 22.5312C6.11244 20.8705 7.16716 19.4384 8.62078 18.5197C7.84832 17.7518 7.32124 16.7719 7.10637 15.7041C6.8915 14.6363 6.9985 13.5287 7.41382 12.5218C7.82914 11.5149 8.53407 10.654 9.43925 10.0482C10.3444 9.44244 11.4091 9.11905 12.4983 9.11905C13.5875 9.11905 14.6521 9.44244 15.5573 10.0482C16.4625 10.654 17.1674 11.5149 17.5827 12.5218C17.9981 13.5287 18.1051 14.6363 17.8902 15.7041C17.6753 16.7719 17.1482 17.7518 16.3758 18.5197C17.831 19.4371 18.8867 20.8696 19.332 22.5312H19.3303ZM12.5 17.375C13.0439 17.375 13.5756 17.2137 14.0278 16.9115C14.4801 16.6094 14.8325 16.1799 15.0407 15.6774C15.2488 15.1749 15.3033 14.6219 15.1972 14.0885C15.0911 13.5551 14.8291 13.0651 14.4445 12.6805C14.0599 12.2959 13.5699 12.0339 13.0365 11.9278C12.5031 11.8217 11.9501 11.8762 11.4476 12.0843C10.9451 12.2925 10.5156 12.6449 10.2135 13.0972C9.91128 13.5494 9.75 14.0811 9.75 14.625C9.75 15.3543 10.0397 16.0538 10.5555 16.5695C11.0712 17.0853 11.7707 17.375 12.5 17.375Z"
11
+ fill="currentColor"
12
+ />
13
+ </svg>
14
+ </template>
15
+
16
+ <script setup lang="ts">
17
+ </script>