@mobileaction/action-kit 1.42.7-beta.2 → 1.42.7-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1123) hide show
  1. package/package.json +3 -2
  2. package/src/Configuration.mdx +36 -0
  3. package/src/Introduction.mdx +36 -0
  4. package/src/assets/fonts/EuclidCircularABold.ttf +0 -0
  5. package/src/assets/fonts/EuclidCircularABold.woff +0 -0
  6. package/src/assets/fonts/EuclidCircularABold.woff2 +0 -0
  7. package/src/assets/fonts/EuclidCircularABoldItalic.ttf +0 -0
  8. package/src/assets/fonts/EuclidCircularAItalic.ttf +0 -0
  9. package/src/assets/fonts/EuclidCircularAItalic.woff +0 -0
  10. package/src/assets/fonts/EuclidCircularAItalic.woff2 +0 -0
  11. package/src/assets/fonts/EuclidCircularALight.ttf +0 -0
  12. package/src/assets/fonts/EuclidCircularALightItalic.ttf +0 -0
  13. package/src/assets/fonts/EuclidCircularAMedium.ttf +0 -0
  14. package/src/assets/fonts/EuclidCircularAMedium.woff +0 -0
  15. package/src/assets/fonts/EuclidCircularAMedium.woff2 +0 -0
  16. package/src/assets/fonts/EuclidCircularAMediumItalic.ttf +0 -0
  17. package/src/assets/fonts/EuclidCircularARegular.ttf +0 -0
  18. package/src/assets/fonts/EuclidCircularARegular.woff +0 -0
  19. package/src/assets/fonts/EuclidCircularARegular.woff2 +0 -0
  20. package/src/assets/fonts/EuclidCircularASemiBold.ttf +0 -0
  21. package/src/assets/fonts/EuclidCircularASemiBold.woff +0 -0
  22. package/src/assets/fonts/EuclidCircularASemiBold.woff2 +0 -0
  23. package/src/assets/fonts/EuclidCircularASemiBoldItalic.ttf +0 -0
  24. package/src/assets/fonts.scss +84 -0
  25. package/src/assets/typography-classes.css +295 -0
  26. package/src/assets/typography.css +412 -0
  27. package/src/components/alert/alert.test.ts +36 -0
  28. package/src/components/alert/index.vue +72 -0
  29. package/src/components/alert/stories/blue.stories.ts +63 -0
  30. package/src/components/alert/stories/constants.ts +60 -0
  31. package/src/components/alert/stories/dark.stories.ts +71 -0
  32. package/src/components/alert/stories/green.stories.ts +41 -0
  33. package/src/components/alert/stories/orange.stories.ts +41 -0
  34. package/src/components/alert/stories/red.stories.ts +41 -0
  35. package/src/components/alert/styles.scss +125 -0
  36. package/src/components/alert/types.ts +15 -0
  37. package/src/components/animation/index.vue +93 -0
  38. package/src/components/animation/stories/animation.stories.ts +31 -0
  39. package/src/components/animation/stories/constants.ts +46 -0
  40. package/src/components/animation/types.ts +13 -0
  41. package/src/components/app-icon/assets/styles.scss +229 -0
  42. package/src/components/app-icon/index.vue +181 -0
  43. package/src/components/app-icon/stories/constants.ts +46 -0
  44. package/src/components/app-icon/stories/default.stories.ts +78 -0
  45. package/src/components/app-icon/types.ts +16 -0
  46. package/src/components/app-track-button/assets/styles.scss +76 -0
  47. package/src/components/app-track-button/index.vue +98 -0
  48. package/src/components/app-track-button/stories/constants.ts +47 -0
  49. package/src/components/app-track-button/stories/default.stories.ts +64 -0
  50. package/src/components/avatar/avatar.test.ts +47 -0
  51. package/src/components/avatar/index.vue +100 -0
  52. package/src/components/avatar/stories/constants.ts +45 -0
  53. package/src/components/avatar/stories/default.stories.ts +20 -0
  54. package/src/components/avatar/styles.scss +116 -0
  55. package/src/components/avatar/types.ts +24 -0
  56. package/src/components/badge/badge.test.ts +97 -0
  57. package/src/components/badge/index.vue +52 -0
  58. package/src/components/badge/stories/basic.stories.ts +54 -0
  59. package/src/components/badge/stories/blue.stories.ts +60 -0
  60. package/src/components/badge/stories/constants.ts +81 -0
  61. package/src/components/badge/stories/dark.stories.ts +54 -0
  62. package/src/components/badge/stories/green.stories.ts +59 -0
  63. package/src/components/badge/stories/orange.stories.ts +59 -0
  64. package/src/components/badge/stories/pink.stories.ts +59 -0
  65. package/src/components/badge/stories/purple.stories.ts +59 -0
  66. package/src/components/badge/stories/red.stories.ts +58 -0
  67. package/src/components/badge/stories/status-example.mdx +14 -0
  68. package/src/components/badge/stories/status.stories.ts +17 -0
  69. package/src/components/badge/stories/teal.stories.ts +58 -0
  70. package/src/components/badge/stories/yellow.stories.ts +59 -0
  71. package/src/components/badge/styles.scss +198 -0
  72. package/src/components/badge/types.ts +43 -0
  73. package/src/components/button/assets/link.scss +72 -0
  74. package/src/components/button/assets/mixins.scss +82 -0
  75. package/src/components/button/assets/regular.scss +188 -0
  76. package/src/components/button/assets/social.scss +98 -0
  77. package/src/components/button/assets/styles.scss +31 -0
  78. package/src/components/button/button.test.ts +126 -0
  79. package/src/components/button/index.vue +107 -0
  80. package/src/components/button/link-button/index.vue +92 -0
  81. package/src/components/button/link-button/stories/constants.ts +67 -0
  82. package/src/components/button/link-button/stories/link.stories.ts +74 -0
  83. package/src/components/button/link-button/types.ts +15 -0
  84. package/src/components/button/social-button/index.vue +88 -0
  85. package/src/components/button/social-button/stories/constants.ts +63 -0
  86. package/src/components/button/social-button/stories/social.stories.ts +109 -0
  87. package/src/components/button/social-button/types.ts +15 -0
  88. package/src/components/button/stories/constants.ts +89 -0
  89. package/src/components/button/stories/filled.stories.ts +113 -0
  90. package/src/components/button/stories/ghost.stories.ts +113 -0
  91. package/src/components/button/stories/lighter.stories.ts +113 -0
  92. package/src/components/button/stories/stroke.stories.ts +113 -0
  93. package/src/components/button/types.ts +52 -0
  94. package/src/components/button/utils.ts +28 -0
  95. package/src/components/card/assets/styles.scss +121 -0
  96. package/src/components/card/index.vue +240 -0
  97. package/src/components/card/stories/constants.ts +111 -0
  98. package/src/components/card/stories/default.stories.ts +130 -0
  99. package/src/components/card/stories/examples.mdx +37 -0
  100. package/src/components/card/stories/footer.stories.ts +122 -0
  101. package/src/components/card/stories/header.stories.ts +129 -0
  102. package/src/components/card/types.ts +21 -0
  103. package/src/components/cascader/assets/styles.scss +162 -0
  104. package/src/components/cascader/cascader.test.ts +163 -0
  105. package/src/components/cascader/components/option.vue +138 -0
  106. package/src/components/cascader/components/options.vue +97 -0
  107. package/src/components/cascader/composables/useCascaderOverflow.ts +35 -0
  108. package/src/components/cascader/composables/usePopoverAttributeWatcher.ts +50 -0
  109. package/src/components/cascader/index.vue +215 -0
  110. package/src/components/cascader/stories/constants.ts +82 -0
  111. package/src/components/cascader/stories/default.stories.ts +161 -0
  112. package/src/components/cascader/stories/options.json +80 -0
  113. package/src/components/cascader/types.ts +17 -0
  114. package/src/components/cascader/utils/index.test.ts +56 -0
  115. package/src/components/cascader/utils/index.ts +66 -0
  116. package/src/components/checkbox/group.vue +64 -0
  117. package/src/components/checkbox/index.vue +58 -0
  118. package/src/components/checkbox/stories/constants.ts +134 -0
  119. package/src/components/checkbox/stories/default.stories.ts +26 -0
  120. package/src/components/checkbox/stories/group.stories.ts +20 -0
  121. package/src/components/checkbox/stories/indeterminate.stories.ts +26 -0
  122. package/src/components/checkbox/styles.scss +221 -0
  123. package/src/components/checkbox/types.ts +6 -0
  124. package/src/components/collapse/assets/styles.scss +25 -0
  125. package/src/components/collapse/collapse.test.ts +86 -0
  126. package/src/components/collapse/components/CollapseContent.vue +11 -0
  127. package/src/components/collapse/components/CollapseHeader.vue +49 -0
  128. package/src/components/collapse/components/CollapseItem.vue +62 -0
  129. package/src/components/collapse/index.vue +119 -0
  130. package/src/components/collapse/stories/constants.ts +141 -0
  131. package/src/components/collapse/stories/default.stories.ts +42 -0
  132. package/src/components/collapse/types.ts +29 -0
  133. package/src/components/content-scroller/assets/styles.scss +111 -0
  134. package/src/components/content-scroller/index.vue +102 -0
  135. package/src/components/content-scroller/stories/constants.ts +47 -0
  136. package/src/components/content-scroller/stories/default.stories.ts +16 -0
  137. package/src/components/content-scroller/types.ts +13 -0
  138. package/src/components/country-radio/assets/styles.scss +30 -0
  139. package/src/components/country-radio/index.vue +66 -0
  140. package/src/components/country-radio/stories/constants.ts +51 -0
  141. package/src/components/country-radio/stories/default.stories.ts +26 -0
  142. package/src/components/country-radio/stories/examples.mdx +29 -0
  143. package/src/components/country-select/assets/styles.scss +48 -0
  144. package/src/components/country-select/components/multiCountrySelect.vue +135 -0
  145. package/src/components/country-select/components/singleCountrySelect.vue +96 -0
  146. package/src/components/country-select/index.vue +87 -0
  147. package/src/components/country-select/stories/constants.ts +46 -0
  148. package/src/components/country-select/stories/countries.json +342 -0
  149. package/src/components/country-select/stories/default.stories.ts +69 -0
  150. package/src/components/country-select/types.ts +5 -0
  151. package/src/components/date-picker/assets/animations.scss +107 -0
  152. package/src/components/date-picker/assets/styles.scss +872 -0
  153. package/src/components/date-picker/index.vue +340 -0
  154. package/src/components/date-picker/stories/constants.ts +95 -0
  155. package/src/components/date-picker/stories/default.stories.ts +108 -0
  156. package/src/components/date-picker/stories/range.stories.ts +137 -0
  157. package/src/components/date-picker/types.ts +19 -0
  158. package/src/components/date-picker-2/assets/calendar.scss +43 -0
  159. package/src/components/date-picker-2/assets/datepicker-menu.scss +242 -0
  160. package/src/components/date-picker-2/assets/input.scss +130 -0
  161. package/src/components/date-picker-2/assets/quarter-picker.scss +44 -0
  162. package/src/components/date-picker-2/assets/selection-overlay.scss +124 -0
  163. package/src/components/date-picker-2/assets/styles.scss +6 -0
  164. package/src/components/date-picker-2/assets/transitions.scss +61 -0
  165. package/src/components/date-picker-2/components/calendarSelect.vue +49 -0
  166. package/src/components/date-picker-2/composables/useDatePickerFormat.ts +80 -0
  167. package/src/components/date-picker-2/composables/utils.ts +49 -0
  168. package/src/components/date-picker-2/date-picker.test.ts +340 -0
  169. package/src/components/date-picker-2/index.vue +302 -0
  170. package/src/components/date-picker-2/stories/constants.ts +116 -0
  171. package/src/components/date-picker-2/stories/default.stories.ts +172 -0
  172. package/src/components/date-picker-2/stories/range.stories.ts +232 -0
  173. package/src/components/date-picker-2/types.ts +256 -0
  174. package/src/components/drawer/assets/styles.scss +163 -0
  175. package/src/components/drawer/drawer.test.ts +188 -0
  176. package/src/components/drawer/index.vue +312 -0
  177. package/src/components/drawer/stories/drawer.stories.ts +489 -0
  178. package/src/components/dropdown/assets/animations.scss +107 -0
  179. package/src/components/dropdown/assets/styles.scss +84 -0
  180. package/src/components/dropdown/index.vue +66 -0
  181. package/src/components/dropdown/stories/constants.ts +108 -0
  182. package/src/components/dropdown/stories/default.stories.ts +44 -0
  183. package/src/components/dropdown/types.ts +17 -0
  184. package/src/components/ellipsis/assets/styles.scss +7 -0
  185. package/src/components/ellipsis/index.vue +141 -0
  186. package/src/components/ellipsis/stories/constants.ts +34 -0
  187. package/src/components/ellipsis/stories/default.stories.ts +25 -0
  188. package/src/components/empty/assets/styles.scss +76 -0
  189. package/src/components/empty/index.vue +54 -0
  190. package/src/components/empty/stories/animation.stories.ts +35 -0
  191. package/src/components/empty/stories/constants.ts +40 -0
  192. package/src/components/empty/stories/default.stories.ts +19 -0
  193. package/src/components/empty/types.ts +24 -0
  194. package/src/components/form/assets/styles.scss +486 -0
  195. package/src/components/form/components/nonHSFormsIgnore.vue +15 -0
  196. package/src/components/form/index.vue +51 -0
  197. package/src/components/form/stories/constants.ts +20 -0
  198. package/src/components/form/stories/default.stories.ts +240 -0
  199. package/src/components/form/types.ts +7 -0
  200. package/src/components/form-item/index.vue +20 -0
  201. package/src/components/icon/components/flagIcon.vue +84 -0
  202. package/src/components/icon/components/maIcon.vue +47 -0
  203. package/src/components/icon/composables/useUniqueIds.ts +62 -0
  204. package/src/components/icon/flags.json +230 -0
  205. package/src/components/icon/icon.test.ts +89 -0
  206. package/src/components/icon/icons/403.svg +29 -0
  207. package/src/components/icon/icons/404.svg +28 -0
  208. package/src/components/icon/icons/500.svg +29 -0
  209. package/src/components/icon/icons/activity-bulk.svg +8 -0
  210. package/src/components/icon/icons/add-app.svg +81 -0
  211. package/src/components/icon/icons/add-bold.svg +3 -0
  212. package/src/components/icon/icons/add-bulk.svg +8 -0
  213. package/src/components/icon/icons/add-button.svg +5 -0
  214. package/src/components/icon/icons/add-circle-bold.svg +3 -0
  215. package/src/components/icon/icons/add-circle-bulk.svg +8 -0
  216. package/src/components/icon/icons/add-circle.svg +8 -0
  217. package/src/components/icon/icons/add-square-bold.svg +3 -0
  218. package/src/components/icon/icons/add-square.svg +5 -0
  219. package/src/components/icon/icons/add.svg +4 -0
  220. package/src/components/icon/icons/aim-outlined.svg +1 -0
  221. package/src/components/icon/icons/airplane-bulk.svg +4 -0
  222. package/src/components/icon/icons/align-left-bold.svg +11 -0
  223. package/src/components/icon/icons/align-left-bulk.svg +11 -0
  224. package/src/components/icon/icons/align-left.svg +10 -0
  225. package/src/components/icon/icons/android-storefront.svg +8 -0
  226. package/src/components/icon/icons/android.svg +6 -0
  227. package/src/components/icon/icons/angle-double-right.svg +5 -0
  228. package/src/components/icon/icons/app-store-colorful.svg +21 -0
  229. package/src/components/icon/icons/app-store.svg +3 -0
  230. package/src/components/icon/icons/app.svg +5 -0
  231. package/src/components/icon/icons/apple-bold.svg +5 -0
  232. package/src/components/icon/icons/apple-storefront.svg +5 -0
  233. package/src/components/icon/icons/apple-vision-pro.svg +16 -0
  234. package/src/components/icon/icons/apple.svg +3 -0
  235. package/src/components/icon/icons/arcade-bulk.svg +9 -0
  236. package/src/components/icon/icons/area-chart-outlined.svg +3 -0
  237. package/src/components/icon/icons/arrow-down-bold.svg +3 -0
  238. package/src/components/icon/icons/arrow-down-circle-bold.svg +3 -0
  239. package/src/components/icon/icons/arrow-down-circle.svg +4 -0
  240. package/src/components/icon/icons/arrow-down.svg +4 -0
  241. package/src/components/icon/icons/arrow-left-bold.svg +3 -0
  242. package/src/components/icon/icons/arrow-left-bulk.svg +7 -0
  243. package/src/components/icon/icons/arrow-left-circle-bold.svg +3 -0
  244. package/src/components/icon/icons/arrow-left-circle.svg +4 -0
  245. package/src/components/icon/icons/arrow-left-down-line.svg +3 -0
  246. package/src/components/icon/icons/arrow-left.svg +4 -0
  247. package/src/components/icon/icons/arrow-right-bold.svg +3 -0
  248. package/src/components/icon/icons/arrow-right-bulk.svg +7 -0
  249. package/src/components/icon/icons/arrow-right-circle-bold.svg +3 -0
  250. package/src/components/icon/icons/arrow-right-circle.svg +4 -0
  251. package/src/components/icon/icons/arrow-right-up-line.svg +3 -0
  252. package/src/components/icon/icons/arrow-right.svg +4 -0
  253. package/src/components/icon/icons/arrow-up-bold.svg +3 -0
  254. package/src/components/icon/icons/arrow-up-circle-bold.svg +3 -0
  255. package/src/components/icon/icons/arrow-up-circle.svg +4 -0
  256. package/src/components/icon/icons/arrow-up.svg +4 -0
  257. package/src/components/icon/icons/asterisk.svg +3 -0
  258. package/src/components/icon/icons/bag-bulk.svg +4 -0
  259. package/src/components/icon/icons/bahai.svg +3 -0
  260. package/src/components/icon/icons/book-bulk.svg +6 -0
  261. package/src/components/icon/icons/book-closed-bulk.svg +6 -0
  262. package/src/components/icon/icons/book-saved-bulk.svg +5 -0
  263. package/src/components/icon/icons/book-square-bulk.svg +5 -0
  264. package/src/components/icon/icons/bookmark-bold.svg +4 -0
  265. package/src/components/icon/icons/bookmark-bulk.svg +4 -0
  266. package/src/components/icon/icons/bookmark.svg +6 -0
  267. package/src/components/icon/icons/box-empty.svg +12 -0
  268. package/src/components/icon/icons/brain.svg +3 -0
  269. package/src/components/icon/icons/broom-bold.svg +4 -0
  270. package/src/components/icon/icons/broom.svg +8 -0
  271. package/src/components/icon/icons/brush-bulk.svg +5 -0
  272. package/src/components/icon/icons/bubble-bulk.svg +5 -0
  273. package/src/components/icon/icons/bucket-bulk.svg +6 -0
  274. package/src/components/icon/icons/bullhorn.svg +3 -0
  275. package/src/components/icon/icons/bus-bulk.svg +7 -0
  276. package/src/components/icon/icons/buy-crypto.svg +11 -0
  277. package/src/components/icon/icons/calendar-alt.svg +3 -0
  278. package/src/components/icon/icons/calendar-bold.svg +4 -0
  279. package/src/components/icon/icons/calendar-bulk.svg +10 -0
  280. package/src/components/icon/icons/calendar.svg +12 -0
  281. package/src/components/icon/icons/camera-bulk.svg +5 -0
  282. package/src/components/icon/icons/car-bulk.svg +6 -0
  283. package/src/components/icon/icons/card-bold.svg +4 -0
  284. package/src/components/icon/icons/card-bulk.svg +14 -0
  285. package/src/components/icon/icons/card.svg +6 -0
  286. package/src/components/icon/icons/caret-down-bold.svg +3 -0
  287. package/src/components/icon/icons/caret-down.svg +3 -0
  288. package/src/components/icon/icons/caret-left-bold.svg +3 -0
  289. package/src/components/icon/icons/caret-left.svg +3 -0
  290. package/src/components/icon/icons/caret-right-bold.svg +3 -0
  291. package/src/components/icon/icons/caret-right.svg +3 -0
  292. package/src/components/icon/icons/caret-up-bold.svg +3 -0
  293. package/src/components/icon/icons/caret-up.svg +3 -0
  294. package/src/components/icon/icons/casino-bulk.svg +4 -0
  295. package/src/components/icon/icons/category-bold.svg +14 -0
  296. package/src/components/icon/icons/category.svg +15 -0
  297. package/src/components/icon/icons/certificate.svg +3 -0
  298. package/src/components/icon/icons/chart-2-bulk.svg +11 -0
  299. package/src/components/icon/icons/chart-2.svg +5 -0
  300. package/src/components/icon/icons/chart-area.svg +3 -0
  301. package/src/components/icon/icons/chart-bar.svg +3 -0
  302. package/src/components/icon/icons/chart-bold.svg +6 -0
  303. package/src/components/icon/icons/chart-bulk.svg +12 -0
  304. package/src/components/icon/icons/chart.svg +6 -0
  305. package/src/components/icon/icons/check-line.svg +3 -0
  306. package/src/components/icon/icons/check.svg +3 -0
  307. package/src/components/icon/icons/checkered-flag.svg +3 -0
  308. package/src/components/icon/icons/chef-bulk.svg +4 -0
  309. package/src/components/icon/icons/chess-bulk.svg +8 -0
  310. package/src/components/icon/icons/chevron-down.svg +4 -0
  311. package/src/components/icon/icons/chevron-left.svg +4 -0
  312. package/src/components/icon/icons/chevron-right.svg +4 -0
  313. package/src/components/icon/icons/chevron-up.svg +4 -0
  314. package/src/components/icon/icons/chevrons-down.svg +4 -0
  315. package/src/components/icon/icons/chevrons-left.svg +4 -0
  316. package/src/components/icon/icons/chevrons-right.svg +4 -0
  317. package/src/components/icon/icons/chevrons-up.svg +4 -0
  318. package/src/components/icon/icons/circle-exclamation.svg +3 -0
  319. package/src/components/icon/icons/circle-notch.svg +3 -0
  320. package/src/components/icon/icons/circle.svg +3 -0
  321. package/src/components/icon/icons/clipboard-bold.svg +8 -0
  322. package/src/components/icon/icons/clipboard-bulk.svg +11 -0
  323. package/src/components/icon/icons/clipboard-close-bulk.svg +5 -0
  324. package/src/components/icon/icons/clipboard-close.svg +6 -0
  325. package/src/components/icon/icons/clipboard-tick-bulk.svg +5 -0
  326. package/src/components/icon/icons/clipboard-tick.svg +5 -0
  327. package/src/components/icon/icons/clipboard.svg +11 -0
  328. package/src/components/icon/icons/clock-bold.svg +3 -0
  329. package/src/components/icon/icons/clock-bulk.svg +4 -0
  330. package/src/components/icon/icons/clock.svg +4 -0
  331. package/src/components/icon/icons/clone.svg +3 -0
  332. package/src/components/icon/icons/close-circle-bold.svg +3 -0
  333. package/src/components/icon/icons/close-circle-bulk.svg +8 -0
  334. package/src/components/icon/icons/close-circle.svg +5 -0
  335. package/src/components/icon/icons/close-square-bold.svg +3 -0
  336. package/src/components/icon/icons/close-square.svg +5 -0
  337. package/src/components/icon/icons/close.svg +1 -0
  338. package/src/components/icon/icons/cloud-sunny-bulk.svg +4 -0
  339. package/src/components/icon/icons/cloud-upload.svg +3 -0
  340. package/src/components/icon/icons/coffee-bulk.svg +8 -0
  341. package/src/components/icon/icons/cogs.svg +3 -0
  342. package/src/components/icon/icons/color-filter.svg +11 -0
  343. package/src/components/icon/icons/columns-bold.svg +4 -0
  344. package/src/components/icon/icons/columns.svg +4 -0
  345. package/src/components/icon/icons/compass-bulk.svg +4 -0
  346. package/src/components/icon/icons/compress.svg +3 -0
  347. package/src/components/icon/icons/contains-linear.svg +7 -0
  348. package/src/components/icon/icons/control.svg +11 -0
  349. package/src/components/icon/icons/convert-shape-bold.svg +14 -0
  350. package/src/components/icon/icons/convert-shape-bulk.svg +14 -0
  351. package/src/components/icon/icons/convert-shape.svg +12 -0
  352. package/src/components/icon/icons/copy-bold.svg +4 -0
  353. package/src/components/icon/icons/copy-bulk.svg +8 -0
  354. package/src/components/icon/icons/copy.svg +4 -0
  355. package/src/components/icon/icons/crosshairs.svg +3 -0
  356. package/src/components/icon/icons/crown-bold.svg +3 -0
  357. package/src/components/icon/icons/crown.svg +4 -0
  358. package/src/components/icon/icons/cup-bold.svg +8 -0
  359. package/src/components/icon/icons/cup-bulk.svg +17 -0
  360. package/src/components/icon/icons/cup.svg +18 -0
  361. package/src/components/icon/icons/danger-bold.svg +3 -0
  362. package/src/components/icon/icons/danger-bulk.svg +5 -0
  363. package/src/components/icon/icons/danger.svg +5 -0
  364. package/src/components/icon/icons/dashboard.svg +3 -0
  365. package/src/components/icon/icons/data-bold.svg +17 -0
  366. package/src/components/icon/icons/data-bulk.svg +17 -0
  367. package/src/components/icon/icons/data.svg +18 -0
  368. package/src/components/icon/icons/devices.svg +11 -0
  369. package/src/components/icon/icons/diagram.svg +4 -0
  370. package/src/components/icon/icons/direct-inbox-bold.svg +10 -0
  371. package/src/components/icon/icons/direct-inbox-bulk.svg +11 -0
  372. package/src/components/icon/icons/direct-inbox.svg +12 -0
  373. package/src/components/icon/icons/direct-normal-bulk.svg +4 -0
  374. package/src/components/icon/icons/direct-normal.svg +4 -0
  375. package/src/components/icon/icons/dislike-bold.svg +4 -0
  376. package/src/components/icon/icons/dislike.svg +4 -0
  377. package/src/components/icon/icons/document-bold.svg +4 -0
  378. package/src/components/icon/icons/document-bulk.svg +14 -0
  379. package/src/components/icon/icons/document.svg +6 -0
  380. package/src/components/icon/icons/dollar-circle.svg +5 -0
  381. package/src/components/icon/icons/dot.svg +3 -0
  382. package/src/components/icon/icons/download-bold.svg +8 -0
  383. package/src/components/icon/icons/download-bulk.svg +11 -0
  384. package/src/components/icon/icons/download.svg +6 -0
  385. package/src/components/icon/icons/drag.svg +8 -0
  386. package/src/components/icon/icons/driving-bulk.svg +10 -0
  387. package/src/components/icon/icons/edit-2-bold.svg +11 -0
  388. package/src/components/icon/icons/edit-2-bulk.svg +5 -0
  389. package/src/components/icon/icons/edit-2.svg +5 -0
  390. package/src/components/icon/icons/edit-bold.svg +3 -0
  391. package/src/components/icon/icons/edit.svg +5 -0
  392. package/src/components/icon/icons/element-2-bulk.svg +6 -0
  393. package/src/components/icon/icons/element-3-bulk.svg +5 -0
  394. package/src/components/icon/icons/element-bulk.svg +6 -0
  395. package/src/components/icon/icons/element-plus-bold.svg +14 -0
  396. package/src/components/icon/icons/element-plus.svg +13 -0
  397. package/src/components/icon/icons/ellipsis-horizontal.svg +3 -0
  398. package/src/components/icon/icons/ellipsis-vertical.svg +3 -0
  399. package/src/components/icon/icons/empty-table.svg +31 -0
  400. package/src/components/icon/icons/equal.svg +4 -0
  401. package/src/components/icon/icons/expand-left-line.svg +5 -0
  402. package/src/components/icon/icons/expand-right-line.svg +5 -0
  403. package/src/components/icon/icons/expand.svg +6 -0
  404. package/src/components/icon/icons/export-2-bold.svg +8 -0
  405. package/src/components/icon/icons/export-2-bulk.svg +8 -0
  406. package/src/components/icon/icons/export-2.svg +9 -0
  407. package/src/components/icon/icons/export-bold.svg +3 -0
  408. package/src/components/icon/icons/export-bulk.svg +4 -0
  409. package/src/components/icon/icons/export.svg +5 -0
  410. package/src/components/icon/icons/eye-bold.svg +4 -0
  411. package/src/components/icon/icons/eye-bulk.svg +8 -0
  412. package/src/components/icon/icons/eye-slash-bold.svg +7 -0
  413. package/src/components/icon/icons/eye-slash.svg +8 -0
  414. package/src/components/icon/icons/eye.svg +4 -0
  415. package/src/components/icon/icons/facebook.svg +4 -0
  416. package/src/components/icon/icons/fatrows-bold.svg +8 -0
  417. package/src/components/icon/icons/fatrows-bulk.svg +8 -0
  418. package/src/components/icon/icons/fatrows.svg +8 -0
  419. package/src/components/icon/icons/favorite-chart-bold.svg +4 -0
  420. package/src/components/icon/icons/favorite-chart-bulk.svg +5 -0
  421. package/src/components/icon/icons/favorite-chart.svg +5 -0
  422. package/src/components/icon/icons/file-pdf.svg +3 -0
  423. package/src/components/icon/icons/filled-flag.svg +3 -0
  424. package/src/components/icon/icons/filter-bold.svg +4 -0
  425. package/src/components/icon/icons/filter-bulk.svg +8 -0
  426. package/src/components/icon/icons/filter.svg +4 -0
  427. package/src/components/icon/icons/flag.svg +4 -0
  428. package/src/components/icon/icons/flash-circle-bold.svg +5 -0
  429. package/src/components/icon/icons/flash-circle-bulk.svg +8 -0
  430. package/src/components/icon/icons/flash-circle.svg +10 -0
  431. package/src/components/icon/icons/flash.svg +5 -0
  432. package/src/components/icon/icons/folder-open-bold.svg +4 -0
  433. package/src/components/icon/icons/folder-open.svg +5 -0
  434. package/src/components/icon/icons/folder.svg +5 -0
  435. package/src/components/icon/icons/font.svg +3 -0
  436. package/src/components/icon/icons/gallery-bulk.svg +5 -0
  437. package/src/components/icon/icons/game-bulk.svg +9 -0
  438. package/src/components/icon/icons/glass-bold.svg +8 -0
  439. package/src/components/icon/icons/glass-bulk.svg +8 -0
  440. package/src/components/icon/icons/glass.svg +8 -0
  441. package/src/components/icon/icons/global.svg +7 -0
  442. package/src/components/icon/icons/google-colored.svg +12 -0
  443. package/src/components/icon/icons/google.svg +6 -0
  444. package/src/components/icon/icons/gps-linear.svg +8 -0
  445. package/src/components/icon/icons/graduation-cap-bold.svg +4 -0
  446. package/src/components/icon/icons/graduation-cap.svg +5 -0
  447. package/src/components/icon/icons/graph-bold.svg +4 -0
  448. package/src/components/icon/icons/graph.svg +4 -0
  449. package/src/components/icon/icons/grid-2.svg +6 -0
  450. package/src/components/icon/icons/grid-bold.svg +6 -0
  451. package/src/components/icon/icons/grid-bulk.svg +14 -0
  452. package/src/components/icon/icons/grid.svg +6 -0
  453. package/src/components/icon/icons/hamburger.svg +5 -0
  454. package/src/components/icon/icons/headset.svg +3 -0
  455. package/src/components/icon/icons/health-bulk.svg +5 -0
  456. package/src/components/icon/icons/history.svg +3 -0
  457. package/src/components/icon/icons/home-bold.svg +3 -0
  458. package/src/components/icon/icons/home-bulk.svg +8 -0
  459. package/src/components/icon/icons/home.svg +4 -0
  460. package/src/components/icon/icons/hospital-bulk.svg +6 -0
  461. package/src/components/icon/icons/house-bulk.svg +8 -0
  462. package/src/components/icon/icons/import-bold.svg +4 -0
  463. package/src/components/icon/icons/import.svg +11 -0
  464. package/src/components/icon/icons/in-range-bold.svg +5 -0
  465. package/src/components/icon/icons/in-range.svg +5 -0
  466. package/src/components/icon/icons/indent.svg +3 -0
  467. package/src/components/icon/icons/info-circle-2-bold.svg +5 -0
  468. package/src/components/icon/icons/info-circle-2-bulk.svg +11 -0
  469. package/src/components/icon/icons/info-circle-2.svg +9 -0
  470. package/src/components/icon/icons/info-circle-bold.svg +3 -0
  471. package/src/components/icon/icons/info-circle.svg +8 -0
  472. package/src/components/icon/icons/info.svg +3 -0
  473. package/src/components/icon/icons/ipad.svg +4 -0
  474. package/src/components/icon/icons/iphone.svg +3 -0
  475. package/src/components/icon/icons/judge-outline.svg +6 -0
  476. package/src/components/icon/icons/justify-right.svg +10 -0
  477. package/src/components/icon/icons/key.svg +5 -0
  478. package/src/components/icon/icons/lamp-charge-bulk.svg +5 -0
  479. package/src/components/icon/icons/lamp-charge.svg +5 -0
  480. package/src/components/icon/icons/layer-bold.svg +5 -0
  481. package/src/components/icon/icons/layer-bulk.svg +11 -0
  482. package/src/components/icon/icons/layer.svg +5 -0
  483. package/src/components/icon/icons/level-linear.svg +5 -0
  484. package/src/components/icon/icons/like-bold.svg +4 -0
  485. package/src/components/icon/icons/like.svg +4 -0
  486. package/src/components/icon/icons/link.svg +4 -0
  487. package/src/components/icon/icons/linkedin.svg +5 -0
  488. package/src/components/icon/icons/list.svg +3 -0
  489. package/src/components/icon/icons/loader.svg +10 -0
  490. package/src/components/icon/icons/loading.svg +3 -0
  491. package/src/components/icon/icons/location-bulk.svg +4 -0
  492. package/src/components/icon/icons/location.svg +8 -0
  493. package/src/components/icon/icons/lock-bold.svg +4 -0
  494. package/src/components/icon/icons/lock-bulk.svg +11 -0
  495. package/src/components/icon/icons/lock-slash-bulk.svg +7 -0
  496. package/src/components/icon/icons/lock-slash.svg +6 -0
  497. package/src/components/icon/icons/lock.svg +5 -0
  498. package/src/components/icon/icons/logout-bold.svg +4 -0
  499. package/src/components/icon/icons/logout.svg +5 -0
  500. package/src/components/icon/icons/lovely-bulk.svg +4 -0
  501. package/src/components/icon/icons/magic-pen-bold.svg +17 -0
  502. package/src/components/icon/icons/magic-pen.svg +13 -0
  503. package/src/components/icon/icons/map-bulk.svg +5 -0
  504. package/src/components/icon/icons/map-marker-bold.svg +3 -0
  505. package/src/components/icon/icons/map-marker.svg +4 -0
  506. package/src/components/icon/icons/maximize-linear.svg +6 -0
  507. package/src/components/icon/icons/med-kit.svg +3 -0
  508. package/src/components/icon/icons/medal-bold.svg +4 -0
  509. package/src/components/icon/icons/medal.svg +4 -0
  510. package/src/components/icon/icons/menu-bold.svg +3 -0
  511. package/src/components/icon/icons/menu.svg +5 -0
  512. package/src/components/icon/icons/message-bold.svg +5 -0
  513. package/src/components/icon/icons/message-bulk.svg +14 -0
  514. package/src/components/icon/icons/message-notif.svg +7 -0
  515. package/src/components/icon/icons/message-text.svg +5 -0
  516. package/src/components/icon/icons/message.svg +12 -0
  517. package/src/components/icon/icons/messages-2-bulk.svg +5 -0
  518. package/src/components/icon/icons/messages-bold.svg +8 -0
  519. package/src/components/icon/icons/messages-bulk.svg +8 -0
  520. package/src/components/icon/icons/messages.svg +8 -0
  521. package/src/components/icon/icons/microscope-bold.svg +14 -0
  522. package/src/components/icon/icons/microscope-bulk.svg +14 -0
  523. package/src/components/icon/icons/microscope.svg +14 -0
  524. package/src/components/icon/icons/milk-bulk.svg +5 -0
  525. package/src/components/icon/icons/minus-bold.svg +3 -0
  526. package/src/components/icon/icons/minus-square-bold.svg +3 -0
  527. package/src/components/icon/icons/minus-square.svg +4 -0
  528. package/src/components/icon/icons/minus.svg +3 -0
  529. package/src/components/icon/icons/mobile-action.svg +37 -0
  530. package/src/components/icon/icons/mobile-bold.svg +3 -0
  531. package/src/components/icon/icons/mobile-bulk.svg +11 -0
  532. package/src/components/icon/icons/mobile.svg +5 -0
  533. package/src/components/icon/icons/money-bill.svg +8 -0
  534. package/src/components/icon/icons/money-send.svg +11 -0
  535. package/src/components/icon/icons/moneys-bold.svg +8 -0
  536. package/src/components/icon/icons/moneys-bulk.svg +17 -0
  537. package/src/components/icon/icons/moneys.svg +18 -0
  538. package/src/components/icon/icons/more-bold.svg +3 -0
  539. package/src/components/icon/icons/more-bulk.svg +6 -0
  540. package/src/components/icon/icons/more-circle.svg +6 -0
  541. package/src/components/icon/icons/more-vertical.svg +3 -0
  542. package/src/components/icon/icons/more.svg +5 -0
  543. package/src/components/icon/icons/mouse-square-bold.svg +8 -0
  544. package/src/components/icon/icons/mouse-square-bulk.svg +8 -0
  545. package/src/components/icon/icons/mouse-square.svg +7 -0
  546. package/src/components/icon/icons/music-bulk.svg +5 -0
  547. package/src/components/icon/icons/musicnote-bulk.svg +4 -0
  548. package/src/components/icon/icons/not-contains-linear.svg +8 -0
  549. package/src/components/icon/icons/not-equal.svg +5 -0
  550. package/src/components/icon/icons/not-in-range.svg +6 -0
  551. package/src/components/icon/icons/notification-bold.svg +4 -0
  552. package/src/components/icon/icons/notification.svg +5 -0
  553. package/src/components/icon/icons/outdent.svg +3 -0
  554. package/src/components/icon/icons/outline-linear.svg +5 -0
  555. package/src/components/icon/icons/outline-lock-bulk.svg +5 -0
  556. package/src/components/icon/icons/outline-lock.svg +5 -0
  557. package/src/components/icon/icons/paper-plane.svg +3 -0
  558. package/src/components/icon/icons/parenting-bulk.svg +164 -0
  559. package/src/components/icon/icons/password-check.svg +7 -0
  560. package/src/components/icon/icons/pause-bold.svg +4 -0
  561. package/src/components/icon/icons/pause-circle-bold.svg +3 -0
  562. package/src/components/icon/icons/pause-circle-bulk.svg +5 -0
  563. package/src/components/icon/icons/pause-circle.svg +5 -0
  564. package/src/components/icon/icons/pause.svg +4 -0
  565. package/src/components/icon/icons/pay/affirm.svg +6 -0
  566. package/src/components/icon/icons/pay/alipay.svg +8 -0
  567. package/src/components/icon/icons/pay/amazon.svg +6 -0
  568. package/src/components/icon/icons/pay/amex-2.svg +7 -0
  569. package/src/components/icon/icons/pay/amex.svg +5 -0
  570. package/src/components/icon/icons/pay/applepay.svg +5 -0
  571. package/src/components/icon/icons/pay/bancontact.svg +7 -0
  572. package/src/components/icon/icons/pay/bitcoin.svg +5 -0
  573. package/src/components/icon/icons/pay/bitcoincash.svg +5 -0
  574. package/src/components/icon/icons/pay/bitpay.svg +5 -0
  575. package/src/components/icon/icons/pay/citadele.svg +5 -0
  576. package/src/components/icon/icons/pay/dinersclub.svg +5 -0
  577. package/src/components/icon/icons/pay/discover.svg +7 -0
  578. package/src/components/icon/icons/pay/elo.svg +8 -0
  579. package/src/components/icon/icons/pay/etherium.svg +11 -0
  580. package/src/components/icon/icons/pay/forbrugsforeningen.svg +5 -0
  581. package/src/components/icon/icons/pay/giropay.svg +7 -0
  582. package/src/components/icon/icons/pay/googlepay.svg +9 -0
  583. package/src/components/icon/icons/pay/ideal.svg +6 -0
  584. package/src/components/icon/icons/pay/interac.svg +7 -0
  585. package/src/components/icon/icons/pay/jcb.svg +21 -0
  586. package/src/components/icon/icons/pay/klarna.svg +5 -0
  587. package/src/components/icon/icons/pay/lightcoin.svg +5 -0
  588. package/src/components/icon/icons/pay/maestro-2.svg +5 -0
  589. package/src/components/icon/icons/pay/maestro.svg +7 -0
  590. package/src/components/icon/icons/pay/mastercard-2.svg +5 -0
  591. package/src/components/icon/icons/pay/mastercard.svg +7 -0
  592. package/src/components/icon/icons/pay/payoneer.svg +6 -0
  593. package/src/components/icon/icons/pay/paypal.svg +8 -0
  594. package/src/components/icon/icons/pay/paysafe.svg +7 -0
  595. package/src/components/icon/icons/pay/qiwi.svg +5 -0
  596. package/src/components/icon/icons/pay/quickbooks.svg +9 -0
  597. package/src/components/icon/icons/pay/sepa.svg +6 -0
  598. package/src/components/icon/icons/pay/shop-pay.svg +5 -0
  599. package/src/components/icon/icons/pay/skrill.svg +5 -0
  600. package/src/components/icon/icons/pay/sofort.svg +5 -0
  601. package/src/components/icon/icons/pay/stripe-2.svg +30 -0
  602. package/src/components/icon/icons/pay/stripe.svg +5 -0
  603. package/src/components/icon/icons/pay/unionpay.svg +8 -0
  604. package/src/components/icon/icons/pay/verifone.svg +6 -0
  605. package/src/components/icon/icons/pay/visa-2.svg +4 -0
  606. package/src/components/icon/icons/pay/visa.svg +5 -0
  607. package/src/components/icon/icons/pay/webmoney.svg +5 -0
  608. package/src/components/icon/icons/pay/wechat.svg +5 -0
  609. package/src/components/icon/icons/pay/yandex.svg +5 -0
  610. package/src/components/icon/icons/pen-square.svg +5 -0
  611. package/src/components/icon/icons/pencil.svg +3 -0
  612. package/src/components/icon/icons/people-bold.svg +8 -0
  613. package/src/components/icon/icons/people-bulk.svg +8 -0
  614. package/src/components/icon/icons/people.svg +8 -0
  615. package/src/components/icon/icons/percentage-square-bold.svg +3 -0
  616. package/src/components/icon/icons/percentage-square.svg +6 -0
  617. package/src/components/icon/icons/play-bold.svg +3 -0
  618. package/src/components/icon/icons/play-bulk.svg +4 -0
  619. package/src/components/icon/icons/play-circle-bold.svg +7 -0
  620. package/src/components/icon/icons/play-circle.svg +7 -0
  621. package/src/components/icon/icons/play-store-colorful.svg +14 -0
  622. package/src/components/icon/icons/play.svg +4 -0
  623. package/src/components/icon/icons/plug-bold.svg +5 -0
  624. package/src/components/icon/icons/plug.svg +11 -0
  625. package/src/components/icon/icons/poker-cards-bulk.svg +11 -0
  626. package/src/components/icon/icons/presentation-chart-bulk.svg +13 -0
  627. package/src/components/icon/icons/profile-2user-colored-bulk.svg +16 -0
  628. package/src/components/icon/icons/programming-arrows-bulk.svg +14 -0
  629. package/src/components/icon/icons/project-bold.svg +3 -0
  630. package/src/components/icon/icons/puzzle-bulk.svg +17 -0
  631. package/src/components/icon/icons/question-bold.svg +3 -0
  632. package/src/components/icon/icons/question.svg +5 -0
  633. package/src/components/icon/icons/radar-bold.svg +12 -0
  634. package/src/components/icon/icons/radar-bulk.svg +8 -0
  635. package/src/components/icon/icons/radar.svg +10 -0
  636. package/src/components/icon/icons/rank-bold.svg +14 -0
  637. package/src/components/icon/icons/rank-bulk.svg +11 -0
  638. package/src/components/icon/icons/rank.svg +14 -0
  639. package/src/components/icon/icons/ranking-bold.svg +14 -0
  640. package/src/components/icon/icons/ranking-bulk.svg +14 -0
  641. package/src/components/icon/icons/ranking.svg +11 -0
  642. package/src/components/icon/icons/record-circle.svg +3 -0
  643. package/src/components/icon/icons/redo-bold.svg +3 -0
  644. package/src/components/icon/icons/redo.svg +4 -0
  645. package/src/components/icon/icons/refresh-2.svg +3 -0
  646. package/src/components/icon/icons/refresh.svg +4 -0
  647. package/src/components/icon/icons/reply.svg +3 -0
  648. package/src/components/icon/icons/rocket-bulk.svg +11 -0
  649. package/src/components/icon/icons/rocket.svg +12 -0
  650. package/src/components/icon/icons/rotate-left.svg +5 -0
  651. package/src/components/icon/icons/rotate-right.svg +5 -0
  652. package/src/components/icon/icons/save-bold.svg +8 -0
  653. package/src/components/icon/icons/save.svg +11 -0
  654. package/src/components/icon/icons/scale-balanced.svg +3 -0
  655. package/src/components/icon/icons/search-2-line.svg +5 -0
  656. package/src/components/icon/icons/search-dollar.svg +3 -0
  657. package/src/components/icon/icons/search-normal-bold.svg +4 -0
  658. package/src/components/icon/icons/search-normal.svg +4 -0
  659. package/src/components/icon/icons/search-zoom-in-bold.svg +8 -0
  660. package/src/components/icon/icons/search-zoom-in-bulk.svg +11 -0
  661. package/src/components/icon/icons/search-zoom-in.svg +11 -0
  662. package/src/components/icon/icons/security-card-bold.svg +5 -0
  663. package/src/components/icon/icons/security-card.svg +7 -0
  664. package/src/components/icon/icons/selection.svg +48 -0
  665. package/src/components/icon/icons/send.svg +5 -0
  666. package/src/components/icon/icons/setting-2-linear.svg +8 -0
  667. package/src/components/icon/icons/setting-bulk.svg +8 -0
  668. package/src/components/icon/icons/settings-bold.svg +3 -0
  669. package/src/components/icon/icons/settings-bulk.svg +8 -0
  670. package/src/components/icon/icons/settings.svg +4 -0
  671. package/src/components/icon/icons/share-bold.svg +20 -0
  672. package/src/components/icon/icons/share-bulk.svg +20 -0
  673. package/src/components/icon/icons/share.svg +8 -0
  674. package/src/components/icon/icons/shopping-cart-bold.svg +6 -0
  675. package/src/components/icon/icons/shopping-cart.svg +6 -0
  676. package/src/components/icon/icons/sidebar-left-bold.svg +8 -0
  677. package/src/components/icon/icons/sidebar-left-bulk.svg +11 -0
  678. package/src/components/icon/icons/sidebar-left.svg +9 -0
  679. package/src/components/icon/icons/sidebar-right-bold.svg +8 -0
  680. package/src/components/icon/icons/sidebar-right-bulk.svg +11 -0
  681. package/src/components/icon/icons/sidebar-right.svg +9 -0
  682. package/src/components/icon/icons/slack.svg +8 -0
  683. package/src/components/icon/icons/slash-bold.svg +5 -0
  684. package/src/components/icon/icons/slash.svg +4 -0
  685. package/src/components/icon/icons/slider-horizontal-bold.svg +8 -0
  686. package/src/components/icon/icons/slider-horizontal.svg +8 -0
  687. package/src/components/icon/icons/smart-notification-bold.svg +8 -0
  688. package/src/components/icon/icons/smart-notification-bulk.svg +8 -0
  689. package/src/components/icon/icons/smart-notification.svg +8 -0
  690. package/src/components/icon/icons/sms-bold.svg +3 -0
  691. package/src/components/icon/icons/sms.svg +4 -0
  692. package/src/components/icon/icons/soccer-bulk.svg +9 -0
  693. package/src/components/icon/icons/social-facebook.svg +4 -0
  694. package/src/components/icon/icons/social-linkedin.svg +5 -0
  695. package/src/components/icon/icons/social-x.svg +4 -0
  696. package/src/components/icon/icons/sort-amount-down.svg +3 -0
  697. package/src/components/icon/icons/sort-bold.svg +5 -0
  698. package/src/components/icon/icons/sort-bulk.svg +14 -0
  699. package/src/components/icon/icons/sort.svg +5 -0
  700. package/src/components/icon/icons/speedometer.svg +5 -0
  701. package/src/components/icon/icons/spin-dots.svg +14 -0
  702. package/src/components/icon/icons/spin-round.svg +4 -0
  703. package/src/components/icon/icons/spin-three-circles.svg +11 -0
  704. package/src/components/icon/icons/spin-three-dots.svg +5 -0
  705. package/src/components/icon/icons/spinner.svg +3 -0
  706. package/src/components/icon/icons/square.svg +3 -0
  707. package/src/components/icon/icons/star-bold.svg +3 -0
  708. package/src/components/icon/icons/star-bulk.svg +14 -0
  709. package/src/components/icon/icons/star-half-colored.svg +4 -0
  710. package/src/components/icon/icons/star.svg +3 -0
  711. package/src/components/icon/icons/status-up.svg +17 -0
  712. package/src/components/icon/icons/steering-wheel-bulk.svg +4 -0
  713. package/src/components/icon/icons/stop-bold.svg +4 -0
  714. package/src/components/icon/icons/stop.svg +3 -0
  715. package/src/components/icon/icons/story.svg +14 -0
  716. package/src/components/icon/icons/stream.svg +7 -0
  717. package/src/components/icon/icons/swap-bold.svg +3 -0
  718. package/src/components/icon/icons/swap.svg +6 -0
  719. package/src/components/icon/icons/sword-bulk.svg +7 -0
  720. package/src/components/icon/icons/sync.svg +3 -0
  721. package/src/components/icon/icons/table-list.svg +3 -0
  722. package/src/components/icon/icons/tag-2-bold.svg +3 -0
  723. package/src/components/icon/icons/tag-2.svg +5 -0
  724. package/src/components/icon/icons/tag-bold.svg +3 -0
  725. package/src/components/icon/icons/tag-bulk.svg +8 -0
  726. package/src/components/icon/icons/tag-user.svg +5 -0
  727. package/src/components/icon/icons/tag.svg +4 -0
  728. package/src/components/icon/icons/teacher-bulk.svg +4 -0
  729. package/src/components/icon/icons/thumbtack.svg +3 -0
  730. package/src/components/icon/icons/tick-circle-bold.svg +5 -0
  731. package/src/components/icon/icons/tick-circle-bulk.svg +8 -0
  732. package/src/components/icon/icons/tick-circle.svg +4 -0
  733. package/src/components/icon/icons/tick-square-bold.svg +3 -0
  734. package/src/components/icon/icons/tick-square.svg +4 -0
  735. package/src/components/icon/icons/tick.svg +3 -0
  736. package/src/components/icon/icons/timer.svg +5 -0
  737. package/src/components/icon/icons/toggle-off-bold.svg +3 -0
  738. package/src/components/icon/icons/toggle-off.svg +4 -0
  739. package/src/components/icon/icons/toggle-on-bold.svg +3 -0
  740. package/src/components/icon/icons/toggle-on.svg +4 -0
  741. package/src/components/icon/icons/transgender.svg +3 -0
  742. package/src/components/icon/icons/translate-bold.svg +24 -0
  743. package/src/components/icon/icons/translate-bulk.svg +20 -0
  744. package/src/components/icon/icons/translate.svg +24 -0
  745. package/src/components/icon/icons/trash-bold.svg +4 -0
  746. package/src/components/icon/icons/trash-bulk.svg +14 -0
  747. package/src/components/icon/icons/trash.svg +7 -0
  748. package/src/components/icon/icons/trend-up-bold.svg +5 -0
  749. package/src/components/icon/icons/trend-up-bulk.svg +8 -0
  750. package/src/components/icon/icons/trend-up.svg +5 -0
  751. package/src/components/icon/icons/twitter.svg +3 -0
  752. package/src/components/icon/icons/undo-bold.svg +3 -0
  753. package/src/components/icon/icons/undo.svg +4 -0
  754. package/src/components/icon/icons/unlock-bold.svg +4 -0
  755. package/src/components/icon/icons/unlock.svg +5 -0
  756. package/src/components/icon/icons/upload-bulk.svg +11 -0
  757. package/src/components/icon/icons/upload.svg +6 -0
  758. package/src/components/icon/icons/user-avatar.svg +67 -0
  759. package/src/components/icon/icons/user-default.svg +3 -0
  760. package/src/components/icon/icons/user-outline.svg +4 -0
  761. package/src/components/icon/icons/user-settings.svg +3 -0
  762. package/src/components/icon/icons/user-square.svg +5 -0
  763. package/src/components/icon/icons/user.svg +5 -0
  764. package/src/components/icon/icons/video-bulk.svg +5 -0
  765. package/src/components/icon/icons/video-play-bulk.svg +5 -0
  766. package/src/components/icon/icons/video-remove.svg +7 -0
  767. package/src/components/icon/icons/video-square-bulk.svg +4 -0
  768. package/src/components/icon/icons/volume-low.svg +11 -0
  769. package/src/components/icon/icons/warning-2-bold.svg +3 -0
  770. package/src/components/icon/icons/warning-2-bulk.svg +5 -0
  771. package/src/components/icon/icons/warning-2.svg +5 -0
  772. package/src/components/icon/icons/warning.svg +3 -0
  773. package/src/components/icon/icons/watch-bulk.svg +6 -0
  774. package/src/components/icon/icons/wifi.svg +6 -0
  775. package/src/components/icon/icons/woman.svg +5 -0
  776. package/src/components/icon/icons/x.svg +5 -0
  777. package/src/components/icon/icons/zoom-in.svg +11 -0
  778. package/src/components/icon/icons/zoom-out.svg +9 -0
  779. package/src/components/icon/icons.json +524 -0
  780. package/src/components/icon/index.vue +48 -0
  781. package/src/components/icon/payment.json +47 -0
  782. package/src/components/icon/stories/icon.stories.ts +205 -0
  783. package/src/components/icon/styles.scss +18 -0
  784. package/src/components/icon/types.ts +17 -0
  785. package/src/components/icon-button/assets/styles.scss +143 -0
  786. package/src/components/icon-button/components/button.vue +87 -0
  787. package/src/components/icon-button/index.vue +95 -0
  788. package/src/components/icon-button/stories/constants.ts +47 -0
  789. package/src/components/icon-button/stories/primary.stories.ts +106 -0
  790. package/src/components/icon-button/stories/secondary.stories.ts +108 -0
  791. package/src/components/icon-button/types.ts +21 -0
  792. package/src/components/image/assets/styles.scss +153 -0
  793. package/src/components/image/group.vue +33 -0
  794. package/src/components/image/index.vue +51 -0
  795. package/src/components/image/stories/constants.ts +73 -0
  796. package/src/components/image/stories/default.stories.ts +27 -0
  797. package/src/components/image-2/assets/fallback.png +0 -0
  798. package/src/components/image-2/assets/styles.scss +57 -0
  799. package/src/components/image-2/group.vue +120 -0
  800. package/src/components/image-2/image2.test.ts +347 -0
  801. package/src/components/image-2/index.vue +103 -0
  802. package/src/components/image-2/preview.vue +244 -0
  803. package/src/components/image-2/stories/constants.ts +83 -0
  804. package/src/components/image-2/stories/default.stories.ts +91 -0
  805. package/src/components/input/index.vue +250 -0
  806. package/src/components/input/stories/amount.stories.ts +68 -0
  807. package/src/components/input/stories/constants.ts +81 -0
  808. package/src/components/input/stories/credit-card.stories.ts +76 -0
  809. package/src/components/input/stories/default.stories.ts +71 -0
  810. package/src/components/input/stories/email.stories.ts +76 -0
  811. package/src/components/input/stories/password.stories.ts +70 -0
  812. package/src/components/input/stories/textarea.stories.ts +70 -0
  813. package/src/components/input/stories/url.stories.ts +70 -0
  814. package/src/components/input/stories/user-info.stories.ts +76 -0
  815. package/src/components/input/styles.scss +282 -0
  816. package/src/components/input/types.ts +47 -0
  817. package/src/components/input-number/assets/styles.scss +622 -0
  818. package/src/components/input-number/index.vue +142 -0
  819. package/src/components/input-number/stories/constants.ts +145 -0
  820. package/src/components/input-number/stories/default.stories.ts +80 -0
  821. package/src/components/input-number/stories/formatter.mdx +13 -0
  822. package/src/components/input-number/stories/with-select.stories.ts +30 -0
  823. package/src/components/input-number/stories/withselect.mdx +23 -0
  824. package/src/components/input-number/types.ts +26 -0
  825. package/src/components/keyword-group-selection/assets/styles.scss +205 -0
  826. package/src/components/keyword-group-selection/components/kwGroupForm.vue +89 -0
  827. package/src/components/keyword-group-selection/components/kwGroupItem.vue +89 -0
  828. package/src/components/keyword-group-selection/composables/index.ts +19 -0
  829. package/src/components/keyword-group-selection/data/keywordGroups.json +136 -0
  830. package/src/components/keyword-group-selection/index.vue +326 -0
  831. package/src/components/keyword-group-selection/stories/constants.ts +178 -0
  832. package/src/components/keyword-group-selection/stories/default.stories.ts +97 -0
  833. package/src/components/keyword-group-selection/stories/example.mdx +110 -0
  834. package/src/components/keyword-group-selection/types.ts +43 -0
  835. package/src/components/menu/assets/styles.scss +3 -0
  836. package/src/components/menu/components/MenuItem.vue +45 -0
  837. package/src/components/menu/index.vue +28 -0
  838. package/src/components/menu/stories/constants.ts +67 -0
  839. package/src/components/menu/stories/default.stories1.ts +22 -0
  840. package/src/components/menu/stories/listData.stories1.mdx +33 -0
  841. package/src/components/modal/assets/effects.scss +602 -0
  842. package/src/components/modal/assets/styles.scss +131 -0
  843. package/src/components/modal/assets/with-tab.scss +8 -0
  844. package/src/components/modal/components/renderContent.vue +15 -0
  845. package/src/components/modal/index.ts +54 -0
  846. package/src/components/modal/index.vue +205 -0
  847. package/src/components/modal/stories/constants.ts +213 -0
  848. package/src/components/modal/stories/default.stories.ts +74 -0
  849. package/src/components/modal/stories/functions.stories.ts +82 -0
  850. package/src/components/modal/types.ts +43 -0
  851. package/src/components/notification/assets/styles.scss +251 -0
  852. package/src/components/notification/components/notification.vue +118 -0
  853. package/src/components/notification/components/notificationContainer.vue +72 -0
  854. package/src/components/notification/composables/useNotificationAnimation.ts +48 -0
  855. package/src/components/notification/index.ts +53 -0
  856. package/src/components/notification/notification.test.ts +120 -0
  857. package/src/components/notification/stories/commonStories.ts +126 -0
  858. package/src/components/notification/stories/constants.ts +67 -0
  859. package/src/components/notification/stories/docs.mdx +100 -0
  860. package/src/components/notification/stories/filled.stories.ts +23 -0
  861. package/src/components/notification/stories/light.stories.ts +23 -0
  862. package/src/components/notification/stories/stroke.stories.ts +23 -0
  863. package/src/components/notification/types.ts +56 -0
  864. package/src/components/numeric-input/assets/styles.scss +53 -0
  865. package/src/components/numeric-input/components/singleNumericInput.vue +46 -0
  866. package/src/components/numeric-input/index.vue +148 -0
  867. package/src/components/numeric-input/stories/constants.ts +40 -0
  868. package/src/components/numeric-input/stories/default.stories.ts +46 -0
  869. package/src/components/numeric-input/types.ts +7 -0
  870. package/src/components/pagination/assets/styles.scss +131 -0
  871. package/src/components/pagination/index.vue +379 -0
  872. package/src/components/pagination/pagination.test.ts +361 -0
  873. package/src/components/pagination/stories/constants.ts +50 -0
  874. package/src/components/pagination/stories/default.stories.ts +17 -0
  875. package/src/components/pagination/types.ts +31 -0
  876. package/src/components/popconfirm/assets/styles.scss +22 -0
  877. package/src/components/popconfirm/index.vue +129 -0
  878. package/src/components/popconfirm/stories/constants.ts +53 -0
  879. package/src/components/popconfirm/stories/default.stories.ts +19 -0
  880. package/src/components/popconfirm/types.ts +16 -0
  881. package/src/components/popover/assets/styles.scss +214 -0
  882. package/src/components/popover/index.vue +73 -0
  883. package/src/components/popover/stories/apps.json +47 -0
  884. package/src/components/popover/stories/constants.ts +120 -0
  885. package/src/components/popover/stories/default.stories.ts +33 -0
  886. package/src/components/popover/types.ts +30 -0
  887. package/src/components/popover-2/assets/styles.scss +171 -0
  888. package/src/components/popover-2/index.vue +103 -0
  889. package/src/components/popover-2/popover2.test.ts +96 -0
  890. package/src/components/popover-2/stories/constants.ts +142 -0
  891. package/src/components/popover-2/stories/default.stories.ts +32 -0
  892. package/src/components/popover-2/types.ts +26 -0
  893. package/src/components/progress/assets/styles.scss +241 -0
  894. package/src/components/progress/components/circle.vue +94 -0
  895. package/src/components/progress/components/halfCircle.vue +92 -0
  896. package/src/components/progress/components/line.vue +49 -0
  897. package/src/components/progress/components/stepLine.vue +48 -0
  898. package/src/components/progress/index.vue +90 -0
  899. package/src/components/progress/stories/circle.stories.ts +77 -0
  900. package/src/components/progress/stories/constants.ts +57 -0
  901. package/src/components/progress/stories/half-circle.stories.ts +67 -0
  902. package/src/components/progress/stories/line-step.stories.ts +73 -0
  903. package/src/components/progress/stories/line.stories.ts +90 -0
  904. package/src/components/progress/types.ts +42 -0
  905. package/src/components/radio/assets/checked-disabled.svg +11 -0
  906. package/src/components/radio/assets/checked.svg +11 -0
  907. package/src/components/radio/group.vue +26 -0
  908. package/src/components/radio/index.vue +67 -0
  909. package/src/components/radio/stories/constants.ts +54 -0
  910. package/src/components/radio/stories/default.stories.ts +38 -0
  911. package/src/components/radio/styles.scss +454 -0
  912. package/src/components/radio/types.ts +5 -0
  913. package/src/components/radio-card/assets/styles.scss +57 -0
  914. package/src/components/radio-card/index.vue +56 -0
  915. package/src/components/radio-card/stories/assets/iphone-half.svg +61 -0
  916. package/src/components/radio-card/stories/constants.ts +98 -0
  917. package/src/components/radio-card/stories/default.stories.ts +33 -0
  918. package/src/components/radio-card/stories/example.mdx +17 -0
  919. package/src/components/rate/assets/styles.scss +43 -0
  920. package/src/components/rate/components/star.vue +39 -0
  921. package/src/components/rate/index.vue +124 -0
  922. package/src/components/rate/stories/constants.ts +40 -0
  923. package/src/components/rate/stories/default.stories.ts +55 -0
  924. package/src/components/rate/types.ts +14 -0
  925. package/src/components/result/assets/styles.scss +53 -0
  926. package/src/components/result/index.vue +71 -0
  927. package/src/components/result/stories/constants.ts +70 -0
  928. package/src/components/result/stories/default.stories.ts +27 -0
  929. package/src/components/result/types.ts +11 -0
  930. package/src/components/select/assets/styles.scss +601 -0
  931. package/src/components/select/components/dropdownRender.vue +70 -0
  932. package/src/components/select/components/option.vue +19 -0
  933. package/src/components/select/components/optionCheckbox.vue +31 -0
  934. package/src/components/select/index.vue +506 -0
  935. package/src/components/select/stories/constants.ts +85 -0
  936. package/src/components/select/stories/countries.json +342 -0
  937. package/src/components/select/stories/countriesWithDescription.json +57 -0
  938. package/src/components/select/stories/countryGroups.json +47 -0
  939. package/src/components/select/stories/default.stories.ts +190 -0
  940. package/src/components/select/stories/group.stories.ts +55 -0
  941. package/src/components/select/stories/multi-select.stories.ts +158 -0
  942. package/src/components/select/stories/options.json +204 -0
  943. package/src/components/select/stories/single.stories.ts +42 -0
  944. package/src/components/select/types.ts +35 -0
  945. package/src/components/select-2/assets/borderless.scss +30 -0
  946. package/src/components/select-2/assets/compact.scss +5 -0
  947. package/src/components/select-2/assets/default.scss +139 -0
  948. package/src/components/select-2/assets/dropdown.scss +56 -0
  949. package/src/components/select-2/assets/inline.scss +49 -0
  950. package/src/components/select-2/assets/option-group.scss +6 -0
  951. package/src/components/select-2/assets/option.scss +50 -0
  952. package/src/components/select-2/assets/styles.scss +8 -0
  953. package/src/components/select-2/components/selectOption.vue +108 -0
  954. package/src/components/select-2/components/selectOptionGroup.vue +17 -0
  955. package/src/components/select-2/composables/use-keyboard-navigation.ts +81 -0
  956. package/src/components/select-2/composables/use-options-registry.ts +23 -0
  957. package/src/components/select-2/index.vue +449 -0
  958. package/src/components/select-2/select.test.ts +322 -0
  959. package/src/components/select-2/stories/borderless.stories.ts +38 -0
  960. package/src/components/select-2/stories/constants.ts +184 -0
  961. package/src/components/select-2/stories/data/countries.json +342 -0
  962. package/src/components/select-2/stories/data/users.json +204 -0
  963. package/src/components/select-2/stories/inline.stories.ts +38 -0
  964. package/src/components/select-2/stories/multiple.stories.ts +71 -0
  965. package/src/components/select-2/stories/select-option-group.stories.ts +70 -0
  966. package/src/components/select-2/stories/select-option.stories.ts +64 -0
  967. package/src/components/select-2/stories/single.stories.ts +169 -0
  968. package/src/components/select-2/types.ts +231 -0
  969. package/src/components/side-menu/add-new-app-button/assets/styles.scss +18 -0
  970. package/src/components/side-menu/add-new-app-button/index.vue +35 -0
  971. package/src/components/side-menu/add-new-app-button/stories/constants.ts +39 -0
  972. package/src/components/side-menu/add-new-app-button/stories/default.stories.ts +23 -0
  973. package/src/components/side-menu/app-button/assets/styles.scss +51 -0
  974. package/src/components/side-menu/app-button/index.vue +42 -0
  975. package/src/components/side-menu/app-button/stories/constants.ts +34 -0
  976. package/src/components/side-menu/app-button/stories/default.stories.ts +28 -0
  977. package/src/components/side-menu/button/assets/styles.scss +42 -0
  978. package/src/components/side-menu/button/index.vue +70 -0
  979. package/src/components/side-menu/button/stories/constants.ts +58 -0
  980. package/src/components/side-menu/button/stories/default.stories.ts +44 -0
  981. package/src/components/side-menu/icon-button/assets/styles.scss +49 -0
  982. package/src/components/side-menu/icon-button/index.vue +78 -0
  983. package/src/components/side-menu/icon-button/stories/constants.ts +48 -0
  984. package/src/components/side-menu/icon-button/stories/default.stories.ts +33 -0
  985. package/src/components/side-menu/menu-item/assets/styles.scss +66 -0
  986. package/src/components/side-menu/menu-item/index.vue +90 -0
  987. package/src/components/side-menu/menu-item/stories/constants.ts +59 -0
  988. package/src/components/side-menu/menu-item/stories/default.stories.ts +191 -0
  989. package/src/components/side-menu/menu-item/types.ts +12 -0
  990. package/src/components/side-menu/round-icon-button/assets/styles.scss +29 -0
  991. package/src/components/side-menu/round-icon-button/index.vue +27 -0
  992. package/src/components/side-menu/round-icon-button/stories/constants.ts +39 -0
  993. package/src/components/side-menu/round-icon-button/stories/default.stories.ts +18 -0
  994. package/src/components/side-menu-2/menu-button/assets/styles.scss +36 -0
  995. package/src/components/side-menu-2/menu-button/index.vue +77 -0
  996. package/src/components/side-menu-2/menu-button/stories/constants.ts +55 -0
  997. package/src/components/side-menu-2/menu-button/stories/default.stories.ts +49 -0
  998. package/src/components/side-menu-2/menu-button/types.ts +6 -0
  999. package/src/components/side-menu-2/menu-item/assets/styles.scss +43 -0
  1000. package/src/components/side-menu-2/menu-item/index.vue +54 -0
  1001. package/src/components/side-menu-2/menu-item/stories/constants.ts +39 -0
  1002. package/src/components/side-menu-2/menu-item/stories/default.stories.ts +83 -0
  1003. package/src/components/side-menu-2/side-menu-2.test.ts +64 -0
  1004. package/src/components/slider/assets/styles.scss +222 -0
  1005. package/src/components/slider/index.vue +100 -0
  1006. package/src/components/slider/stories/constants.ts +104 -0
  1007. package/src/components/slider/stories/default.stories.ts +22 -0
  1008. package/src/components/slider/stories/example.mdx +69 -0
  1009. package/src/components/slider/types.ts +12 -0
  1010. package/src/components/spin/assets/styles.scss +127 -0
  1011. package/src/components/spin/index.vue +55 -0
  1012. package/src/components/spin/stories/constants.ts +70 -0
  1013. package/src/components/spin/stories/container.stories.ts +30 -0
  1014. package/src/components/spin/stories/default.stories.ts +26 -0
  1015. package/src/components/spin/types.ts +17 -0
  1016. package/src/components/step-items/assets/styles.scss +57 -0
  1017. package/src/components/step-items/components/index.vue +81 -0
  1018. package/src/components/step-items/index.vue +68 -0
  1019. package/src/components/step-items/stories/constants.ts +77 -0
  1020. package/src/components/step-items/stories/default.stories.ts +18 -0
  1021. package/src/components/step-items/stories/examples.mdx +25 -0
  1022. package/src/components/step-items/stories/step-item.stories.ts +19 -0
  1023. package/src/components/steps/assets/styles.scss +79 -0
  1024. package/src/components/steps/components/index.vue +78 -0
  1025. package/src/components/steps/index.vue +72 -0
  1026. package/src/components/steps/stories/constants.ts +132 -0
  1027. package/src/components/steps/stories/default.stories.ts +56 -0
  1028. package/src/components/steps/stories/examples.mdx +27 -0
  1029. package/src/components/steps/stories/step.stories.ts +19 -0
  1030. package/src/components/steps/types.ts +6 -0
  1031. package/src/components/switch/assets/styles.scss +107 -0
  1032. package/src/components/switch/index.vue +142 -0
  1033. package/src/components/switch/stories/constants.ts +43 -0
  1034. package/src/components/switch/stories/default.stories.ts +133 -0
  1035. package/src/components/switch/switch.test.ts +90 -0
  1036. package/src/components/switch/types.ts +12 -0
  1037. package/src/components/table/assets/table.scss +167 -0
  1038. package/src/components/table/preview.vue +140 -0
  1039. package/src/components/table/row-detail.vue +19 -0
  1040. package/src/components/table/stories/data/data.json +1089 -0
  1041. package/src/components/table/stories/data/fields.ts +110 -0
  1042. package/src/components/table/stories/default.stories.ts +25 -0
  1043. package/src/components/table/stories/table.mdx +51 -0
  1044. package/src/components/tabs/assets/styles.scss +435 -0
  1045. package/src/components/tabs/components/tabPane.vue +11 -0
  1046. package/src/components/tabs/index.vue +65 -0
  1047. package/src/components/tabs/stories/card.stories.ts +85 -0
  1048. package/src/components/tabs/stories/constants.ts +124 -0
  1049. package/src/components/tabs/stories/default.mdx +72 -0
  1050. package/src/components/tabs/stories/line.stories.ts +85 -0
  1051. package/src/components/tabs/types.ts +20 -0
  1052. package/src/components/tabs-2/assets/styles.scss +40 -0
  1053. package/src/components/tabs-2/assets/tab-button.scss +89 -0
  1054. package/src/components/tabs-2/components/tabButton.vue +70 -0
  1055. package/src/components/tabs-2/components/tabPane.vue +33 -0
  1056. package/src/components/tabs-2/index.vue +110 -0
  1057. package/src/components/tabs-2/stories/default.stories.ts +147 -0
  1058. package/src/components/tabs-2/stories/tab-button.stories.ts +71 -0
  1059. package/src/components/tabs-2/stories/tab-pane.stories.ts +62 -0
  1060. package/src/components/tabs-2/tabButton.test.ts +84 -0
  1061. package/src/components/tabs-2/tabs.test.ts +178 -0
  1062. package/src/components/tabs-2/types.ts +106 -0
  1063. package/src/components/tag-input/assets/styles.scss +99 -0
  1064. package/src/components/tag-input/index.vue +185 -0
  1065. package/src/components/tag-input/stories/constants.ts +50 -0
  1066. package/src/components/tag-input/stories/default.stories.ts +76 -0
  1067. package/src/components/tag-input/types.ts +3 -0
  1068. package/src/components/toggle/assets/styles.scss +122 -0
  1069. package/src/components/toggle/index.vue +80 -0
  1070. package/src/components/toggle/stories/constants.ts +73 -0
  1071. package/src/components/toggle/stories/default.stories.ts +32 -0
  1072. package/src/components/toggle/types.ts +7 -0
  1073. package/src/components/tooltip/assets/styles.scss +207 -0
  1074. package/src/components/tooltip/index.vue +101 -0
  1075. package/src/components/tooltip/stories/constants.ts +67 -0
  1076. package/src/components/tooltip/stories/default.stories.ts +143 -0
  1077. package/src/components/tooltip/tooltip.test.ts +157 -0
  1078. package/src/components/tooltip/types.ts +30 -0
  1079. package/src/components/track-button/assets/style.scss +94 -0
  1080. package/src/components/track-button/index.vue +77 -0
  1081. package/src/components/track-button/stories/constants.ts +63 -0
  1082. package/src/components/track-button/stories/default.stories.ts +123 -0
  1083. package/src/components/track-button/track-button.test.ts +91 -0
  1084. package/src/components/track-button/types.ts +8 -0
  1085. package/src/components/tree/assets/styles.scss +35 -0
  1086. package/src/components/tree/components/treeNode.vue +238 -0
  1087. package/src/components/tree/index.vue +257 -0
  1088. package/src/components/tree/stories/constants.ts +93 -0
  1089. package/src/components/tree/stories/default.stories.ts +173 -0
  1090. package/src/components/tree/stories/useTreeData.ts +41 -0
  1091. package/src/components/tree/tree.test.ts +104 -0
  1092. package/src/components/tree/types.ts +19 -0
  1093. package/src/components/typography/assets/styles.scss +0 -0
  1094. package/src/components/typography/index.vue +40 -0
  1095. package/src/components/typography/stories/constants.ts +115 -0
  1096. package/src/components/typography/stories/default.stories.ts +114 -0
  1097. package/src/components/typography/types.ts +39 -0
  1098. package/src/components/typography/typography.test.ts +56 -0
  1099. package/src/components/upload/assets/styles.scss +120 -0
  1100. package/src/components/upload/composables/file.ts +114 -0
  1101. package/src/components/upload/index.vue +386 -0
  1102. package/src/components/upload/singleFile.vue +62 -0
  1103. package/src/components/upload/stories/box.stories.ts +76 -0
  1104. package/src/components/upload/stories/button.stories.ts +20 -0
  1105. package/src/components/upload/stories/constants.ts +159 -0
  1106. package/src/components/upload/stories/small-box.stories.ts +21 -0
  1107. package/src/components/upload/types.ts +31 -0
  1108. package/src/components/watchlist-button/assets/styles.scss +116 -0
  1109. package/src/components/watchlist-button/components/button.vue +105 -0
  1110. package/src/components/watchlist-button/index.vue +88 -0
  1111. package/src/components/watchlist-button/stories/constants.ts +54 -0
  1112. package/src/components/watchlist-button/stories/dashed.stories.ts +30 -0
  1113. package/src/components/watchlist-button/stories/default.stories.ts +55 -0
  1114. package/src/components/watchlist-button/types.ts +13 -0
  1115. package/src/composables/config.ts +6 -0
  1116. package/src/composables/ssr.ts +10 -0
  1117. package/src/index.ts +172 -0
  1118. package/src/services/config.ts +32 -0
  1119. package/src/shims-vue-virtual-scroller.d.ts +77 -0
  1120. package/src/tailwind.scss +6 -0
  1121. package/src/utils/breakpoints.test.ts +21 -0
  1122. package/src/utils/breakpoints.ts +31 -0
  1123. package/src/utils/slots.ts +21 -0
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M16.8 9H12.75V15.25C12.75 15.66 12.41 16 12 16C11.59 16 11.25 15.66 11.25 15.25V9H7.2C4 9 2 11 2 14.2V16.79C2 20 4 22 7.2 22H16.79C19.99 22 21.99 20 21.99 16.8V14.2C22 11 20 9 16.8 9Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M12.75 4.56L14.82 6.63C14.97 6.78 15.16 6.85 15.35 6.85C15.54 6.85 15.73 6.78 15.88 6.63C16.17 6.34 16.17 5.86 15.88 5.57L12.53 2.22C12.24 1.93 11.76 1.93 11.47 2.22L8.11997 5.57C7.82997 5.86 7.82997 6.34 8.11997 6.63C8.40997 6.92 8.88997 6.92 9.17997 6.63L11.25 4.56V9H12.75V4.56Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4"
3
+ d="M16.8 9H7.2C4 9 2 11 2 14.2V16.79C2 20 4 22 7.2 22H16.79C19.99 22 21.99 20 21.99 16.8V14.2C22 11 20 9 16.8 9Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M15.88 5.57L12.53 2.22C12.24 1.93 11.76 1.93 11.47 2.22L8.11997 5.57C7.82997 5.86 7.82997 6.34 8.11997 6.63C8.40997 6.92 8.88997 6.92 9.17997 6.63L11.25 4.56V15.25C11.25 15.66 11.59 16 12 16C12.41 16 12.75 15.66 12.75 15.25V4.56L14.82 6.63C14.97 6.78 15.16 6.85 15.35 6.85C15.54 6.85 15.73 6.78 15.88 6.63C16.18 6.34 16.18 5.87 15.88 5.57Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M16.44 8.90002C20.04 9.21002 21.51 11.06 21.51 15.11V15.24C21.51 19.71 19.72 21.5 15.25 21.5H8.73998C4.26998 21.5 2.47998 19.71 2.47998 15.24V15.11C2.47998 11.09 3.92998 9.24002 7.46998 8.91002"
4
+ stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
5
+ <path d="M12 15V3.62" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
6
+ stroke-linejoin="round" />
7
+ <path d="M15.35 5.85L12 2.5L8.65002 5.85" stroke="currentColor" stroke-width="1.5"
8
+ stroke-linecap="round" stroke-linejoin="round" />
9
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.19 2H7.81C4.17 2 2 4.17 2 7.81V16.18C2 19.83 4.17 22 7.81 22H16.18C19.82 22 21.99 19.83 21.99 16.19V7.81C22 4.17 19.83 2 16.19 2ZM17.25 12.33C17.25 12.74 16.91 13.08 16.5 13.08C16.09 13.08 15.75 12.74 15.75 12.33V9.31L8.03 17.03C7.88 17.18 7.69 17.25 7.5 17.25C7.31 17.25 7.12 17.18 6.97 17.03C6.68 16.74 6.68 16.26 6.97 15.97L14.69 8.25H11.67C11.26 8.25 10.92 7.91 10.92 7.5C10.92 7.09 11.26 6.75 11.67 6.75H16.5C16.91 6.75 17.25 7.09 17.25 7.5V12.33Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4" d="M16.19 2H7.81C4.17 2 2 4.17 2 7.81V16.18C2 19.83 4.17 22 7.81 22H16.18C19.82 22 21.99 19.83 21.99 16.19V7.81C22 4.17 19.83 2 16.19 2Z" fill="currentColor"/>
3
+ <path d="M16.748 7H11.918C11.508 7 11.168 7.34 11.168 7.75C11.168 8.16 11.508 8.5 11.918 8.5H14.938L7.21799 16.22C6.92799 16.51 6.92799 16.99 7.21799 17.28C7.36799 17.43 7.55799 17.5 7.74799 17.5C7.93799 17.5 8.12799 17.43 8.27799 17.28L15.998 9.56V12.58C15.998 12.99 16.338 13.33 16.748 13.33C17.158 13.33 17.498 12.99 17.498 12.58V7.75C17.498 7.34 17.158 7 16.748 7Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13 11L21.2 2.79999" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M22 6.8V2H17.2" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M11 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22H15C20 22 22 20 22 15V13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.25 9.14969C18.94 5.51969 15.56 3.42969 12 3.42969C10.22 3.42969 8.49 3.94969 6.91 4.91969C5.33 5.89969 3.91 7.32969 2.75 9.14969C1.75 10.7197 1.75 13.2697 2.75 14.8397C5.06 18.4797 8.44 20.5597 12 20.5597C13.78 20.5597 15.51 20.0397 17.09 19.0697C18.67 18.0897 20.09 16.6597 21.25 14.8397C22.25 13.2797 22.25 10.7197 21.25 9.14969ZM12 16.0397C9.76 16.0397 7.96 14.2297 7.96 11.9997C7.96 9.76969 9.76 7.95969 12 7.95969C14.24 7.95969 16.04 9.76969 16.04 11.9997C16.04 14.2297 14.24 16.0397 12 16.0397Z" fill="currentColor"/>
3
+ <path d="M12.0004 9.13965C10.4304 9.13965 9.15039 10.4196 9.15039 11.9996C9.15039 13.5696 10.4304 14.8496 12.0004 14.8496C13.5704 14.8496 14.8604 13.5696 14.8604 11.9996C14.8604 10.4296 13.5704 9.13965 12.0004 9.13965Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4"
3
+ d="M21.25 9.14993C18.94 5.51993 15.56 3.42993 12 3.42993C10.22 3.42993 8.49 3.94993 6.91 4.91993C5.33 5.89993 3.91 7.32993 2.75 9.14993C1.75 10.7199 1.75 13.2699 2.75 14.8399C5.06 18.4799 8.44 20.5599 12 20.5599C13.78 20.5599 15.51 20.0399 17.09 19.0699C18.67 18.0899 20.09 16.6599 21.25 14.8399C22.25 13.2799 22.25 10.7199 21.25 9.14993ZM12 16.0399C9.76 16.0399 7.96 14.2299 7.96 11.9999C7.96 9.76993 9.76 7.95993 12 7.95993C14.24 7.95993 16.04 9.76993 16.04 11.9999C16.04 14.2299 14.24 16.0399 12 16.0399Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M11.9999 9.13989C10.4299 9.13989 9.1499 10.4199 9.1499 11.9999C9.1499 13.5699 10.4299 14.8499 11.9999 14.8499C13.5699 14.8499 14.8599 13.5699 14.8599 11.9999C14.8599 10.4299 13.5699 9.13989 11.9999 9.13989Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.2695 9.18029C20.9795 8.72029 20.6695 8.29029 20.3495 7.89029C19.9795 7.42029 19.2795 7.38029 18.8595 7.80029L15.8595 10.8003C16.0795 11.4603 16.1195 12.2203 15.9195 13.0103C15.5695 14.4203 14.4295 15.5603 13.0195 15.9103C12.2295 16.1103 11.4695 16.0703 10.8095 15.8503C10.8095 15.8503 9.37946 17.2803 8.34946 18.3103C7.84946 18.8103 8.00946 19.6903 8.67946 19.9503C9.74946 20.3603 10.8595 20.5703 11.9995 20.5703C13.7795 20.5703 15.5095 20.0503 17.0895 19.0803C18.6995 18.0803 20.1495 16.6103 21.3195 14.7403C22.2695 13.2303 22.2195 10.6903 21.2695 9.18029Z" fill="currentColor"/>
3
+ <path d="M14.0206 9.97965L9.98062 14.0196C9.47062 13.4996 9.14062 12.7796 9.14062 11.9996C9.14062 10.4296 10.4206 9.13965 12.0006 9.13965C12.7806 9.13965 13.5006 9.46965 14.0206 9.97965Z" fill="currentColor"/>
4
+ <path d="M18.25 5.74969L14.86 9.13969C14.13 8.39969 13.12 7.95969 12 7.95969C9.76 7.95969 7.96 9.76969 7.96 11.9997C7.96 13.1197 8.41 14.1297 9.14 14.8597L5.76 18.2497H5.75C4.64 17.3497 3.62 16.1997 2.75 14.8397C1.75 13.2697 1.75 10.7197 2.75 9.14969C3.91 7.32969 5.33 5.89969 6.91 4.91969C8.49 3.95969 10.22 3.42969 12 3.42969C14.23 3.42969 16.39 4.24969 18.25 5.74969Z" fill="currentColor"/>
5
+ <path d="M14.8601 12.0001C14.8601 13.5701 13.5801 14.8601 12.0001 14.8601C11.9401 14.8601 11.8901 14.8601 11.8301 14.8401L14.8401 11.8301C14.8601 11.8901 14.8601 11.9401 14.8601 12.0001Z" fill="currentColor"/>
6
+ <path d="M21.7709 2.22988C21.4709 1.92988 20.9809 1.92988 20.6809 2.22988L2.23086 20.6899C1.93086 20.9899 1.93086 21.4799 2.23086 21.7799C2.38086 21.9199 2.57086 21.9999 2.77086 21.9999C2.97086 21.9999 3.16086 21.9199 3.31086 21.7699L21.7709 3.30988C22.0809 3.00988 22.0809 2.52988 21.7709 2.22988Z" fill="currentColor"/>
7
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14.5299 9.46992L9.46992 14.5299C8.81992 13.8799 8.41992 12.9899 8.41992 11.9999C8.41992 10.0199 10.0199 8.41992 11.9999 8.41992C12.9899 8.41992 13.8799 8.81992 14.5299 9.46992Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M17.8198 5.77047C16.0698 4.45047 14.0698 3.73047 11.9998 3.73047C8.46984 3.73047 5.17984 5.81047 2.88984 9.41047C1.98984 10.8205 1.98984 13.1905 2.88984 14.6005C3.67984 15.8405 4.59984 16.9105 5.59984 17.7705" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M8.41992 19.5297C9.55992 20.0097 10.7699 20.2697 11.9999 20.2697C15.5299 20.2697 18.8199 18.1897 21.1099 14.5897C22.0099 13.1797 22.0099 10.8097 21.1099 9.39969C20.7799 8.87969 20.4199 8.38969 20.0499 7.92969" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M15.5095 12.7002C15.2495 14.1102 14.0995 15.2602 12.6895 15.5202" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M9.47 14.5303L2 22.0003" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M21.9993 2L14.5293 9.47" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.5799 11.9999C15.5799 13.9799 13.9799 15.5799 11.9999 15.5799C10.0199 15.5799 8.41992 13.9799 8.41992 11.9999C8.41992 10.0199 10.0199 8.41992 11.9999 8.41992C13.9799 8.41992 15.5799 10.0199 15.5799 11.9999Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M11.9998 20.2697C15.5298 20.2697 18.8198 18.1897 21.1098 14.5897C22.0098 13.1797 22.0098 10.8097 21.1098 9.39973C18.8198 5.79973 15.5298 3.71973 11.9998 3.71973C8.46984 3.71973 5.17984 5.79973 2.88984 9.39973C1.98984 10.8097 1.98984 13.1797 2.88984 14.5897C5.17984 18.1897 8.46984 20.2697 11.9998 20.2697Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 17.9895 4.3882 22.954 10.125 23.8542V15.4688H7.07812V12H10.125V9.35625C10.125 6.34875 11.9166 4.6875 14.6576 4.6875C15.9701 4.6875 17.3438 4.92188 17.3438 4.92188V7.875H15.8306C14.34 7.875 13.875 8.80008 13.875 9.75V12H17.2031L16.6711 15.4688H13.875V23.8542C19.6118 22.954 24 17.9895 24 12Z" fill="#1877F2"/>
3
+ <path d="M16.6711 15.4688L17.2031 12H13.875V9.75C13.875 8.80102 14.34 7.875 15.8306 7.875H17.3438V4.92188C17.3438 4.92188 15.9705 4.6875 14.6576 4.6875C11.9166 4.6875 10.125 6.34875 10.125 9.35625V12H7.07812V15.4688H10.125V23.8542C11.3674 24.0486 12.6326 24.0486 13.875 23.8542V15.4688H16.6711Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M19.9 13.5H4.1C2.6 13.5 2 14.14 2 15.73V19.77C2 21.36 2.6 22 4.1 22H19.9C21.4 22 22 21.36 22 19.77V15.73C22 14.14 21.4 13.5 19.9 13.5Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M12.9 2H4.1C2.6 2 2 2.64 2 4.23V8.27C2 9.86 2.6 10.5 4.1 10.5H12.9C14.4 10.5 15 9.86 15 8.27V4.23C15 2.64 14.4 2 12.9 2Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M19.9 13.5H4.1C2.6 13.5 2 14.14 2 15.73V19.77C2 21.36 2.6 22 4.1 22H19.9C21.4 22 22 21.36 22 19.77V15.73C22 14.14 21.4 13.5 19.9 13.5Z"
4
+ fill="currentColor" />
5
+ <path opacity="0.4"
6
+ d="M12.9 2H4.1C2.6 2 2 2.64 2 4.23V8.27C2 9.86 2.6 10.5 4.1 10.5H12.9C14.4 10.5 15 9.86 15 8.27V4.23C15 2.64 14.4 2 12.9 2Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M19.9 13.5H4.1C2.6 13.5 2 14.14 2 15.73V19.77C2 21.36 2.6 22 4.1 22H19.9C21.4 22 22 21.36 22 19.77V15.73C22 14.14 21.4 13.5 19.9 13.5Z"
4
+ stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
5
+ <path
6
+ d="M12.9 2H4.1C2.6 2 2 2.64 2 4.23V8.27C2 9.86 2.6 10.5 4.1 10.5H12.9C14.4 10.5 15 9.86 15 8.27V4.23C15 2.64 14.4 2 12.9 2Z"
7
+ stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.12 14.9399L19.44 15.5899C19.6 15.9099 20.01 16.2099 20.35 16.2699L20.78 16.3399C22.09 16.5599 22.39 17.5199 21.46 18.4599L21.06 18.8599C20.79 19.1299 20.65 19.6499 20.73 20.0299L20.78 20.2699C21.14 21.8499 20.3 22.4599 18.93 21.6299L18.64 21.4499C18.29 21.2399 17.71 21.2399 17.36 21.4499L17.07 21.6299C15.69 22.4599 14.86 21.8499 15.22 20.2699L15.27 20.0299C15.35 19.6599 15.21 19.1299 14.94 18.8599L14.54 18.4599C13.61 17.5099 13.91 16.5599 15.22 16.3399L15.65 16.2699C16 16.2099 16.4 15.9099 16.56 15.5899L16.88 14.9399C17.5 13.6899 18.5 13.6899 19.12 14.9399Z" fill="currentColor"/>
3
+ <path d="M16.19 2H7.81C4.17 2 2 4.17 2 7.81V16.19C2 19.83 4.17 22 7.81 22H13.09C13.44 22 13.69 21.64 13.65 21.29C13.61 20.91 13.63 20.46 13.75 19.94C13.77 19.87 13.75 19.79 13.69 19.73L13.47 19.51C12.62 18.65 12.31 17.61 12.61 16.66C12.92 15.72 13.78 15.06 14.97 14.86L15.27 14.81L15.54 14.27C16.09 13.15 16.99 12.5 18 12.5C19.01 12.5 19.91 13.15 20.46 14.27L20.61 14.58C20.68 14.73 20.82 14.83 20.98 14.86C21.07 14.88 21.16 14.9 21.25 14.92C21.6 15.01 22 14.73 22 14.36V7.81C22 4.17 19.83 2 16.19 2ZM16.26 8.96L13.95 11.94C13.66 12.31 13.25 12.55 12.78 12.6C12.32 12.66 11.85 12.53 11.49 12.24L9.66 10.82C9.59 10.76 9.51 10.76 9.47 10.77C9.43 10.77 9.36 10.79 9.3 10.87L6.92 13.96C6.77 14.15 6.55 14.25 6.32 14.25C6.16 14.25 6 14.2 5.86 14.09C5.53 13.84 5.47 13.37 5.72 13.04L8.1 9.95C8.39 9.58 8.8 9.34 9.27 9.28C9.74 9.22 10.2 9.35 10.57 9.64L12.4 11.08C12.47 11.14 12.54 11.13 12.59 11.13C12.63 11.13 12.7 11.11 12.76 11.03L15.07 8.05C15.32 7.72 15.79 7.66 16.12 7.92C16.46 8.17 16.51 8.64 16.26 8.96Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4" d="M22 7.81V15.16C21.71 15.02 21.39 14.92 21.03 14.86L20.72 14.81L20.46 14.27C19.91 13.15 19.01 12.5 18 12.5C16.99 12.5 16.09 13.15 15.54 14.27L15.27 14.81L14.97 14.86C13.78 15.06 12.92 15.72 12.61 16.66C12.31 17.61 12.62 18.65 13.47 19.51L13.78 19.82L13.75 19.94C13.55 20.83 13.63 21.51 13.82 22H7.81C4.17 22 2 19.83 2 16.19V7.81C2 4.17 4.17 2 7.81 2H16.19C19.83 2 22 4.17 22 7.81Z" fill="currentColor"/>
3
+ <path d="M19.12 14.9399L19.44 15.5899C19.6 15.9099 20.01 16.2099 20.35 16.2699L20.78 16.3399C22.09 16.5599 22.39 17.5199 21.46 18.4599L21.06 18.8599C20.79 19.1299 20.65 19.6499 20.73 20.0299L20.78 20.2699C21.14 21.8499 20.3 22.4599 18.93 21.6299L18.64 21.4499C18.29 21.2399 17.71 21.2399 17.36 21.4499L17.07 21.6299C15.69 22.4599 14.86 21.8499 15.22 20.2699L15.27 20.0299C15.35 19.6599 15.21 19.1299 14.94 18.8599L14.54 18.4599C13.61 17.5099 13.91 16.5599 15.22 16.3399L15.65 16.2699C16 16.2099 16.4 15.9099 16.56 15.5899L16.88 14.9399C17.5 13.6899 18.5 13.6899 19.12 14.9399Z" fill="currentColor"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M16.1295 7.91728C16.4569 8.17106 16.5166 8.64217 16.2628 8.96954L13.9483 11.9552C13.3535 12.7076 12.2566 12.8448 11.4914 12.2535L11.4862 12.2495L9.65964 10.8121C9.54679 10.7264 9.38939 10.7478 9.3037 10.8583C9.30362 10.8584 9.30378 10.8582 9.3037 10.8583L6.92417 13.9477C6.67142 14.2759 6.2005 14.337 5.87234 14.0842C5.54418 13.8315 5.48306 13.3606 5.73581 13.0324L8.11653 9.94146C8.71045 9.17287 9.81166 9.03396 10.5786 9.62658L10.5838 9.63062L12.4104 11.0679C12.5244 11.1546 12.6851 11.1322 12.7702 11.0267L15.0773 8.05055C15.331 7.72318 15.8021 7.66351 16.1295 7.91728Z" fill="currentColor"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22 13V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22H13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M7.32996 14.49L9.70996 11.4C10.05 10.96 10.68 10.88 11.12 11.22L12.95 12.66C13.39 13 14.02 12.92 14.36 12.49L16.67 9.51001" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M19.48 15.8199L19.76 16.3899C19.9 16.6699 20.25 16.9299 20.56 16.9899L20.94 17.0499C22.08 17.2399 22.35 18.0799 21.53 18.9099L21.18 19.2599C20.95 19.4999 20.82 19.9599 20.89 20.2799L20.94 20.4899C21.25 21.8699 20.52 22.3999 19.32 21.6799L19.06 21.5299C18.75 21.3499 18.25 21.3499 17.94 21.5299L17.68 21.6799C16.47 22.4099 15.74 21.8699 16.06 20.4899L16.1099 20.2799C16.1799 19.9599 16.05 19.4999 15.82 19.2599L15.47 18.9099C14.65 18.0799 14.92 17.2399 16.06 17.0499L16.44 16.9899C16.74 16.9399 17.1 16.6699 17.24 16.3899L17.52 15.8199C18.06 14.7299 18.94 14.7299 19.48 15.8199Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512">
2
+ <path d="M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V304H176c-35.3 0-64 28.7-64 64V512H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM176 352h32c30.9 0 56 25.1 56 56s-25.1 56-56 56H192v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V448 368c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24H192v48h16zm96-80h32c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H304c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H320v96h16zm80-112c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V432 368z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M18.0199 12.33L16.7999 11.11C16.5099 10.86 16.3399 10.49 16.3299 10.08C16.3099 9.63 16.4899 9.18 16.8199 8.85L18.0199 7.65C19.0599 6.61 19.4499 5.61 19.1199 4.82C18.7999 4.04 17.8099 3.61 16.3499 3.61H5.8999V2.75C5.8999 2.34 5.5599 2 5.1499 2C4.7399 2 4.3999 2.34 4.3999 2.75V21.25C4.3999 21.66 4.7399 22 5.1499 22C5.5599 22 5.8999 21.66 5.8999 21.25V16.37H16.3499C17.7899 16.37 18.7599 15.93 19.0899 15.14C19.4199 14.35 19.0399 13.36 18.0199 12.33Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M20.5999 4.1001V6.3001C20.5999 7.1001 20.0999 8.1001 19.5999 8.6001L15.2999 12.4001C14.6999 12.9001 14.2999 13.9001 14.2999 14.7001V19.0001C14.2999 19.6001 13.8999 20.4001 13.3999 20.7001L11.9999 21.6001C10.6999 22.4001 8.89988 21.5001 8.89988 19.9001V14.6001C8.89988 13.9001 8.49989 13.0001 8.09989 12.5001L7.62989 12.0101C7.31989 11.6801 7.25989 11.1801 7.50989 10.7901L12.6299 2.5701C12.8099 2.2801 13.1299 2.1001 13.4799 2.1001H18.5999C19.6999 2.1001 20.5999 3.0001 20.5999 4.1001Z" fill="currentColor"/>
3
+ <path d="M10.3499 3.6301L6.7999 9.3201C6.4599 9.8701 5.6799 9.9501 5.2299 9.4801L4.2999 8.5001C3.7999 8.0001 3.3999 7.1001 3.3999 6.5001V4.2001C3.3999 3.0001 4.2999 2.1001 5.3999 2.1001H9.4999C10.2799 2.1001 10.7599 2.9601 10.3499 3.6301Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4"
3
+ d="M8.76184 13.5142L8.76176 13.5141L8.75308 13.5196L7.82271 14.1177C7.16142 14.522 6.26667 14.0519 6.26667 13.2667V9.73336C6.26667 9.44309 6.18543 9.13272 6.07616 8.85956C5.96618 8.58461 5.81746 8.32158 5.66029 8.12513L5.65131 8.11389L5.64138 8.10347L5.15272 7.59038L8.79849 1.73336H12.4C12.9492 1.73336 13.4 2.18412 13.4 2.73336V4.20002C13.4 4.40379 13.3344 4.65555 13.2215 4.90376C13.111 5.14687 12.9683 5.35801 12.8377 5.49084L9.98267 8.01391C9.73262 8.22371 9.5399 8.52153 9.40981 8.82817C9.27842 9.13788 9.2 9.48209 9.2 9.80002V12.6667C9.2 12.8004 9.15288 12.9809 9.0626 13.1546C8.97125 13.3303 8.85785 13.4566 8.76184 13.5142Z"
4
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
5
+ <path
6
+ d="M6.93276 1.73336L4.02463 6.39872L3.10798 5.43674L3.10805 5.43668L3.10237 5.43099C2.97099 5.29962 2.84189 5.10296 2.74583 4.88867C2.64848 4.67151 2.6 4.4697 2.6 4.33336V2.80002C2.6 2.17338 3.06132 1.73336 3.6 1.73336H6.93276Z"
7
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.3999 2.1001H18.5999C19.6999 2.1001 20.5999 3.0001 20.5999 4.1001V6.3001C20.5999 7.1001 20.0999 8.1001 19.5999 8.6001L15.2999 12.4001C14.6999 12.9001 14.2999 13.9001 14.2999 14.7001V19.0001C14.2999 19.6001 13.8999 20.4001 13.3999 20.7001L11.9999 21.6001C10.6999 22.4001 8.8999 21.5001 8.8999 19.9001V14.6001C8.8999 13.9001 8.4999 13.0001 8.0999 12.5001L4.2999 8.5001C3.7999 8.0001 3.3999 7.1001 3.3999 6.5001V4.2001C3.3999 3.0001 4.2999 2.1001 5.3999 2.1001Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M10.93 2.1001L6 10.0001" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.1499 2V22" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M5.1499 4H16.3499C19.0499 4 19.6499 5.5 17.7499 7.4L16.5499 8.6C15.7499 9.4 15.7499 10.7 16.5499 11.4L17.7499 12.6C19.6499 14.5 18.9499 16 16.3499 16H5.1499" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M11.97 2C6.44997 2 1.96997 6.48 1.96997 12C1.96997 17.52 6.44997 22 11.97 22C17.49 22 21.97 17.52 21.97 12C21.97 6.48 17.5 2 11.97 2ZM15.72 12.35L12 16.58L11.56 17.08C10.95 17.77 10.45 17.59 10.45 16.66V12.7H8.74997C7.97997 12.7 7.76997 12.23 8.27997 11.65L12 7.42L12.44 6.92C13.05 6.23 13.55 6.41 13.55 7.34V11.3H15.25C16.02 11.3 16.23 11.77 15.72 12.35Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4"
3
+ d="M12.5033 22C18.0261 22 22.5033 17.5228 22.5033 12C22.5033 6.47715 18.0261 2 12.5033 2C6.98045 2 2.5033 6.47715 2.5033 12C2.5033 17.5228 6.98045 22 12.5033 22Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M15.7833 11.2992H14.0833V7.3392C14.0833 6.4192 13.5833 6.2292 12.9733 6.9192L12.5333 7.4192L8.81329 11.6492C8.30329 12.2292 8.51329 12.6992 9.28329 12.6992H10.9833V16.6592C10.9833 17.5792 11.4833 17.7692 12.0933 17.0792L12.5333 16.5792L16.2533 12.3492C16.7633 11.7692 16.5533 11.2992 15.7833 11.2992Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M8.68006 12.7201H10.4201V16.7701C10.4201 17.3701 11.1601 17.6501 11.5601 17.2001L15.8201 12.3601C16.1901 11.9401 15.8901 11.2801 15.3301 11.2801H13.5901V7.23008C13.5901 6.63008 12.8501 6.35008 12.4501 6.80008L8.19006 11.6401C7.82006 12.0601 8.12006 12.7201 8.68006 12.7201Z"
4
+ stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"
5
+ stroke-linejoin="round" />
6
+ <path
7
+ d="M11.97 22C17.4928 22 21.97 17.5228 21.97 12C21.97 6.47715 17.4928 2 11.97 2C6.44712 2 1.96997 6.47715 1.96997 12C1.96997 17.5228 6.44712 22 11.97 22Z"
8
+ stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"
9
+ stroke-linejoin="round" />
10
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M9.99008 22.7499C9.79008 22.7499 9.63008 22.7099 9.51008 22.6599C9.11008 22.5099 8.43008 22.0199 8.43008 20.4699V14.0199H6.09008C4.75008 14.0199 4.27008 13.3899 4.10008 13.0199C3.93008 12.6399 3.78008 11.8699 4.66008 10.8599L12.2301 2.25988C13.2501 1.09988 14.0801 1.17988 14.4801 1.32988C14.8801 1.47988 15.5601 1.96988 15.5601 3.51988V9.96988H17.9001C19.2401 9.96988 19.7201 10.5999 19.8901 10.9699C20.0601 11.3499 20.2101 12.1199 19.3301 13.1299L11.7601 21.7299C11.0501 22.5399 10.4301 22.7499 9.99008 22.7499ZM13.9301 2.73988C13.9001 2.77988 13.6901 2.87988 13.3601 3.25988L5.79008 11.8599C5.51008 12.1799 5.47008 12.3799 5.47008 12.4199C5.49008 12.4299 5.67008 12.5299 6.09008 12.5299H9.18008C9.59008 12.5299 9.93008 12.8699 9.93008 13.2799V20.4799C9.93008 20.9799 10.0201 21.1999 10.0601 21.2599C10.0901 21.2199 10.3001 21.1199 10.6301 20.7399L18.2001 12.1399C18.4801 11.8199 18.5201 11.6199 18.5201 11.5799C18.5001 11.5699 18.3201 11.4699 17.9001 11.4699H14.8101C14.4001 11.4699 14.0601 11.1299 14.0601 10.7199V3.51988C14.0701 3.01988 13.9701 2.80988 13.9301 2.73988Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.0602 11.82L20.9002 11.6C20.6202 11.26 20.2902 10.99 19.9102 10.79C19.4002 10.5 18.8202 10.35 18.2202 10.35H5.7702C5.1702 10.35 4.6002 10.5 4.0802 10.79C3.6902 11 3.3402 11.29 3.0502 11.65C2.4802 12.38 2.2102 13.28 2.3002 14.18L2.6702 18.85C2.8002 20.26 2.9702 22 6.1402 22H17.8602C21.0302 22 21.1902 20.26 21.3302 18.84L21.7002 14.19C21.7902 13.35 21.5702 12.51 21.0602 11.82ZM14.3902 17.34H9.6002C9.2102 17.34 8.9002 17.02 8.9002 16.64C8.9002 16.26 9.2102 15.94 9.6002 15.94H14.3902C14.7802 15.94 15.0902 16.26 15.0902 16.64C15.0902 17.03 14.7802 17.34 14.3902 17.34Z" fill="currentColor"/>
3
+ <path d="M20.561 8.59643C20.5986 8.97928 20.1833 9.23561 19.8185 9.11348C19.3137 8.94449 18.7824 8.86 18.2299 8.86H5.76988C5.21304 8.86 4.66478 8.95012 4.15322 9.12194C3.79283 9.24298 3.37988 8.99507 3.37988 8.61489V6.66C3.37988 3.09 4.46988 2 8.03988 2H9.21988C10.6499 2 11.0999 2.46 11.6799 3.21L12.8799 4.81C13.1299 5.15 13.1399 5.17 13.5799 5.17H15.9599C19.0856 5.17 20.3069 6.00724 20.561 8.59643Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.6698 14.3L21.2698 19.3C21.1198 20.83 20.9998 22 18.2898 22H5.70977C2.99977 22 2.87977 20.83 2.72977 19.3L2.32977 14.3C2.24977 13.47 2.50977 12.7 2.97977 12.11C2.98977 12.1 2.98977 12.1 2.99977 12.09C3.54977 11.42 4.37977 11 5.30977 11H18.6898C19.6198 11 20.4398 11.42 20.9798 12.07C20.9898 12.08 20.9998 12.09 20.9998 12.1C21.4898 12.69 21.7598 13.46 21.6698 14.3Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10"/>
3
+ <path d="M3.5 11.43V6.28003C3.5 2.88003 4.35 2.03003 7.75 2.03003H9.02C10.29 2.03003 10.58 2.41003 11.06 3.05003L12.33 4.75003C12.65 5.17003 12.84 5.43003 13.69 5.43003H16.24C19.64 5.43003 20.49 6.28003 20.49 9.68003V11.47" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M9.43018 17H14.5702" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M11.334 15.1663H4.66732C1.72732 15.1663 0.833984 14.273 0.833984 11.333V4.66634C0.833984 1.72634 1.72732 0.833008 4.66732 0.833008H5.66732C6.83398 0.833008 7.20065 1.21301 7.66732 1.83301L8.66732 3.16634C8.88732 3.45967 8.92065 3.49967 9.33398 3.49967H11.334C14.274 3.49967 15.1673 4.39301 15.1673 7.33301V11.333C15.1673 14.273 14.274 15.1663 11.334 15.1663ZM4.66732 1.83301C2.28732 1.83301 1.83398 2.28634 1.83398 4.66634V11.333C1.83398 13.713 2.28732 14.1663 4.66732 14.1663H11.334C13.714 14.1663 14.1673 13.713 14.1673 11.333V7.33301C14.1673 4.95301 13.714 4.49967 11.334 4.49967H9.33398C8.48065 4.49967 8.20065 4.20634 7.86732 3.76634L6.86732 2.43301C6.52065 1.97301 6.42065 1.83301 5.66732 1.83301H4.66732Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 448 512">
2
+ <path d="M254 52.8C249.3 40.3 237.3 32 224 32s-25.3 8.3-30 20.8L57.8 416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-1.8l18-48H303.8l18 48H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H390.2L254 52.8zM279.8 304H168.2L224 155.1 279.8 304z"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4" d="M22 7.81V13.9L20.37 12.5C19.59 11.83 18.33 11.83 17.55 12.5L13.39 16.07C12.61 16.74 11.35 16.74 10.57 16.07L10.23 15.79C9.52 15.17 8.39 15.11 7.59 15.65L2.67 18.95L2.56 19.03C2.19 18.23 2 17.28 2 16.19V7.81C2 4.17 4.17 2 7.81 2H16.19C19.83 2 22 4.17 22 7.81Z" fill="currentColor"/>
3
+ <path d="M9 10.3801C10.3144 10.3801 11.38 9.31456 11.38 8.00012C11.38 6.68568 10.3144 5.62012 9 5.62012C7.68556 5.62012 6.62 6.68568 6.62 8.00012C6.62 9.31456 7.68556 10.3801 9 10.3801Z" fill="currentColor"/>
4
+ <path d="M22 13.9001V16.1901C22 19.8301 19.83 22.0001 16.19 22.0001H7.81C5.26 22.0001 3.42 20.9301 2.56 19.0301L2.67 18.9501L7.59 15.6501C8.39 15.1101 9.52 15.1701 10.23 15.7901L10.57 16.0701C11.35 16.7401 12.61 16.7401 13.39 16.0701L17.55 12.5001C18.33 11.8301 19.59 11.8301 20.37 12.5001L22 13.9001Z" fill="currentColor"/>
5
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.13 15.01L9.10002 13.98L10.09 12.99C10.38 12.7 10.38 12.22 10.09 11.93C9.80002 11.64 9.32002 11.64 9.03002 11.93L8.04002 12.92L7.08002 11.96C6.79002 11.67 6.31002 11.67 6.02002 11.96C5.73002 12.25 5.73002 12.73 6.02002 13.02L6.98002 13.98L5.99002 14.97C5.70002 15.26 5.70002 15.74 5.99002 16.03C6.14002 16.18 6.33002 16.25 6.52002 16.25C6.71002 16.25 6.90002 16.18 7.05002 16.03L8.04002 15.04L9.07002 16.07C9.22002 16.22 9.41002 16.29 9.60002 16.29C9.79002 16.29 9.98002 16.22 10.13 16.07C10.42 15.78 10.42 15.3 10.13 15.01Z" fill="currentColor"/>
3
+ <path d="M13.54 15C12.99 15 12.53 14.55 12.53 14C12.53 13.45 12.97 13 13.52 13H13.54C14.09 13 14.54 13.45 14.54 14C14.54 14.55 14.1 15 13.54 15Z" fill="currentColor"/>
4
+ <path d="M17.48 15C16.93 15 16.47 14.55 16.47 14C16.47 13.45 16.91 13 17.46 13H17.48C18.03 13 18.48 13.45 18.48 14C18.48 14.55 18.04 15 17.48 15Z" fill="currentColor"/>
5
+ <path d="M15.5 16.97C14.95 16.97 14.5 16.53 14.5 15.98V15.96C14.5 15.41 14.95 14.96 15.5 14.96C16.05 14.96 16.5 15.41 16.5 15.96C16.5 16.51 16.06 16.97 15.5 16.97Z" fill="currentColor"/>
6
+ <path d="M15.5 13.03C14.95 13.03 14.5 12.59 14.5 12.04V12.02C14.5 11.47 14.95 11.02 15.5 11.02C16.05 11.02 16.5 11.47 16.5 12.02C16.5 12.57 16.06 13.03 15.5 13.03Z" fill="currentColor"/>
7
+ <path opacity="0.4" d="M22 11.07V16.65C22 19.6 19.6 22 16.65 22H7.35C4.4 22 2 19.6 2 16.65V11.07C2 8.12 4.4 5.72 7.35 5.72H16.65C19.6 5.72 22 8.12 22 11.07Z" fill="currentColor"/>
8
+ <path d="M13.64 2.71L13.63 3.65C13.62 4.53 12.89 5.26 12 5.26C11.85 5.26 11.76 5.36 11.76 5.49C11.76 5.62 11.86 5.72 11.99 5.72H10.38C10.37 5.65 10.36 5.57 10.36 5.49C10.36 4.59 11.09 3.86 11.98 3.86C12.13 3.86 12.23 3.76 12.23 3.63L12.24 2.69C12.25 2.31 12.56 2 12.94 2H12.95C13.34 2 13.64 2.32 13.64 2.71Z" fill="currentColor"/>
9
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M3.30493 11.0613L3.30507 11.061L4.17876 9.07704C4.2164 9.07706 4.2588 9.07731 4.30564 9.07792C4.5216 9.08075 4.83123 9.09129 5.20232 9.12222C5.94653 9.18423 6.92823 9.32747 7.8946 9.6496C8.98551 10.0132 10.0346 9.84826 10.7952 9.60408C11.1773 9.48143 11.4929 9.33686 11.7138 9.22253C11.7687 9.19415 11.8178 9.16756 11.8608 9.14354L12.701 11.0663C12.7011 11.0665 12.7011 11.0666 12.7012 11.0667C13.1307 12.0543 13.1642 12.8643 12.86 13.4071C12.5655 13.9327 11.8799 14.3334 10.56 14.3334H5.44001C4.09832 14.3334 3.41362 13.9301 3.12438 13.4057C2.82487 12.8627 2.86783 12.0513 3.30493 11.0613Z"
4
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
5
+ <path
6
+ d="M10.1867 4.16004H9.67663L9.88136 4.62718L11.1865 7.60511L11.1548 7.6252L11.1549 7.62536C11.1541 7.62585 11.1532 7.62636 11.1524 7.62687C11.0511 7.68646 10.7404 7.86936 10.2794 8.01669C9.74905 8.18617 9.07558 8.28618 8.41847 8.07039C7.09349 7.62513 5.76941 7.48176 4.90221 7.43722L6.13203 4.62701L6.33639 4.16004H5.82666H5.62666C5.28274 4.16004 4.96723 4.02254 4.74236 3.79767C4.5175 3.5728 4.37999 3.2573 4.37999 2.91337C4.37999 2.22989 4.93834 1.66671 5.62666 1.66671H10.3667C10.713 1.66671 11.023 1.80775 11.251 2.03574L11.4809 1.80579L11.251 2.03574C11.5495 2.33427 11.6986 2.76298 11.5835 3.21832L11.5826 3.22202C11.4507 3.77 10.9101 4.16004 10.2933 4.16004H10.1867Z"
7
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M3.30493 11.0613L3.30507 11.061L4.17876 9.07704C4.2164 9.07706 4.2588 9.07731 4.30564 9.07792C4.5216 9.08075 4.83123 9.09129 5.20232 9.12222C5.94653 9.18423 6.92823 9.32747 7.8946 9.6496C8.98551 10.0132 10.0346 9.84826 10.7952 9.60408C11.1773 9.48143 11.4929 9.33686 11.7138 9.22253C11.7687 9.19415 11.8178 9.16756 11.8608 9.14354L12.701 11.0663C12.7011 11.0665 12.7011 11.0666 12.7012 11.0667C13.1307 12.0543 13.1642 12.8643 12.86 13.4071C12.5655 13.9327 11.8799 14.3334 10.56 14.3334H5.44001C4.09832 14.3334 3.41362 13.9301 3.12438 13.4057C2.82487 12.8627 2.86783 12.0513 3.30493 11.0613Z"
4
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
5
+ <path opacity="0.4"
6
+ d="M4.46986 8.41438L6.13189 4.62733L6.33697 4.16004H5.82666H5.62666C5.28273 4.16004 4.96723 4.02254 4.74236 3.79767C4.51749 3.5728 4.37999 3.2573 4.37999 2.91337C4.37999 2.22989 4.93833 1.66671 5.62666 1.66671H10.3667C10.713 1.66671 11.023 1.80775 11.251 2.03574L11.4809 1.80579L11.251 2.03574C11.5495 2.33427 11.6986 2.76298 11.5835 3.21832L11.5826 3.22202C11.4507 3.77 10.9101 4.16004 10.2933 4.16004H10.1867H9.67657L9.88137 4.62721L11.5921 8.52944C11.5446 8.55701 11.4825 8.59161 11.4074 8.63046C11.2121 8.73155 10.931 8.86031 10.5914 8.96933C9.90876 9.18848 9.01448 9.32017 8.1054 9.01715C7.07177 8.6726 6.03347 8.52251 5.25767 8.45786C4.94984 8.43221 4.68182 8.41989 4.46986 8.41438Z"
7
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M5.44001 14.6667C2.65335 14.6667 2.09335 12.98 3.00001 10.9267L5.83335 4.49337H5.63335C5.20001 4.49337 4.80001 4.32004 4.51335 4.03337C4.22001 3.74671 4.04668 3.34671 4.04668 2.91337C4.04668 2.04671 4.75335 1.33337 5.62668 1.33337H10.3667C10.8067 1.33337 11.2 1.51337 11.4867 1.80004C11.86 2.17337 12.0467 2.72004 11.9067 3.30004C11.7267 4.02004 11.0333 4.49337 10.2933 4.49337H10.1867L13 10.9334C13.9 12.9867 13.3133 14.6667 10.5533 14.6667H5.44001Z"
4
+ stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" />
5
+ <path
6
+ d="M3.95999 8.74666C3.95999 8.74666 5.99999 8.66666 7.99999 9.33332C9.99999 9.99999 11.8867 8.73999 11.8867 8.73999"
7
+ stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" />
8
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M8.0001 3H9.0001C7.0501 8.84 7.0501 15.16 9.0001 21H8.0001" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M15 3C16.95 8.84 16.95 15.16 15 21" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M3 16V15C8.84 16.95 15.16 16.95 21 15V16" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M3 8.99998C8.84 7.04998 15.16 7.04998 21 8.99998" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg viewBox="0 0 22 21" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_511_420318)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd"
4
+ d="M15.2369 5.72935C14.1528 4.69536 12.7059 4.13207 11.209 4.15522C8.46969 4.15522 6.14322 6.00327 5.31371 8.49177V8.49183C4.87388 9.79588 4.87387 11.208 5.3137 12.512H5.31755C6.15092 14.9967 8.47353 16.8447 11.2128 16.8447C12.6269 16.8447 13.8408 16.4831 14.7817 15.8442V15.8416C15.8889 15.1086 16.6452 13.955 16.8805 12.6509H11.209V8.60758H21.1129C21.2364 9.30977 21.2943 10.0274 21.2943 10.7411C21.2943 13.9348 20.1529 16.6348 18.167 18.4636L18.1691 18.4652C16.4291 20.0702 14.0409 21 11.209 21C7.23892 21 3.60839 18.7623 1.82591 15.2166V15.2166C0.336671 12.2497 0.336675 8.75417 1.82592 5.78725H1.82595L1.82591 5.78722C3.60839 2.23771 7.23892 -2.48391e-05 11.209 -2.48391e-05C13.8171 -0.0308902 16.3365 0.949084 18.2347 2.73156L15.2369 5.72935Z"
5
+ fill="currentColor" />
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_511_420318">
9
+ <rect width="21" height="21" fill="white" transform="translate(0.5)" />
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg class="no-color" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M23.766 12.2765C23.766 11.4608 23.6999 10.6406 23.5588 9.83813H12.24V14.4591H18.7217C18.4528 15.9495 17.5885 17.2679 16.323 18.1056V21.104H20.19C22.4608 19.014 23.766 15.9274 23.766 12.2765Z" fill="#4285F4"/>
3
+ <path d="M12.2401 24.0008C15.4766 24.0008 18.2059 22.9382 20.1945 21.1039L16.3276 18.1055C15.2517 18.8375 13.8627 19.252 12.2445 19.252C9.11388 19.252 6.45946 17.1399 5.50705 14.3003H1.5166V17.3912C3.55371 21.4434 7.7029 24.0008 12.2401 24.0008V24.0008Z" fill="#34A853"/>
4
+ <path d="M5.50253 14.3002C4.99987 12.8099 4.99987 11.196 5.50253 9.70569V6.61475H1.51649C-0.18551 10.0055 -0.18551 14.0004 1.51649 17.3912L5.50253 14.3002V14.3002Z" fill="#FBBC04"/>
5
+ <path d="M12.2401 4.74966C13.9509 4.7232 15.6044 5.36697 16.8434 6.54867L20.2695 3.12262C18.1001 1.0855 15.2208 -0.034466 12.2401 0.000808666C7.7029 0.000808666 3.55371 2.55822 1.5166 6.61481L5.50264 9.70575C6.45065 6.86173 9.10947 4.74966 12.2401 4.74966V4.74966Z" fill="#EA4335"/>
6
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 19.5C16.1421 19.5 19.5 16.1421 19.5 12C19.5 7.85786 16.1421 4.5 12 4.5C7.85786 4.5 4.5 7.85786 4.5 12C4.5 16.1421 7.85786 19.5 12 19.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M12 4V2" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M4 12H2" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M12 20V22" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M20 12H22" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.8301 15.64C17.5001 15.2 18.3801 15.68 18.3801 16.48V17.77C18.3801 19.04 17.3901 20.4 16.2001 20.8L13.0101 21.86C12.4501 22.05 11.5401 22.05 10.9901 21.86L7.80012 20.8C6.60012 20.4 5.62012 19.04 5.62012 17.77V16.47C5.62012 15.68 6.50012 15.2 7.16012 15.63L9.22012 16.97C10.0101 17.5 11.0101 17.76 12.0101 17.76C13.0101 17.76 14.0101 17.5 14.8001 16.97L16.8301 15.64Z" fill="currentColor"/>
3
+ <path d="M19.98 6.46L13.99 2.53C12.91 1.82 11.13 1.82 10.05 2.53L4.03002 6.46C2.10002 7.71 2.10002 10.54 4.03002 11.8L5.63002 12.84L10.05 15.72C11.13 16.43 12.91 16.43 13.99 15.72L18.38 12.84L19.75 11.94V15C19.75 15.41 20.09 15.75 20.5 15.75C20.91 15.75 21.25 15.41 21.25 15V10.08C21.65 8.79 21.24 7.29 19.98 6.46Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.05 2.52997L4.03002 6.45997C2.10002 7.71997 2.10002 10.54 4.03002 11.8L10.05 15.73C11.13 16.44 12.91 16.44 13.99 15.73L19.98 11.8C21.9 10.54 21.9 7.72997 19.98 6.46997L13.99 2.53997C12.91 1.81997 11.13 1.81997 10.05 2.52997Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M5.63012 13.08L5.62012 17.77C5.62012 19.04 6.60012 20.4 7.80012 20.8L10.9901 21.86C11.5401 22.04 12.4501 22.04 13.0101 21.86L16.2001 20.8C17.4001 20.4 18.3801 19.04 18.3801 17.77V13.13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M21.3999 15V9" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.6699 6.9499C21.0299 4.7799 19.2199 2.9699 17.0499 2.3299C15.3999 1.8499 14.2599 1.8899 13.4699 2.4799C12.5199 3.1899 12.4099 4.4699 12.4099 5.3799V7.8699C12.4099 10.3299 13.5299 11.5799 15.7299 11.5799H18.5999C19.4999 11.5799 20.7899 11.4699 21.4999 10.5199C22.1099 9.7399 22.1599 8.5999 21.6699 6.9499Z" fill="currentColor"/>
3
+ <path d="M18.9099 13.3599C18.6499 13.0599 18.2699 12.8899 17.8799 12.8899H14.2999C12.5399 12.8899 11.1099 11.4599 11.1099 9.69991V6.11991C11.1099 5.72991 10.9399 5.34991 10.6399 5.08991C10.3499 4.82991 9.9499 4.70991 9.5699 4.75991C7.2199 5.05991 5.0599 6.34991 3.6499 8.28991C2.2299 10.2399 1.7099 12.6199 2.1599 14.9999C2.8099 18.4399 5.5599 21.1899 9.0099 21.8399C9.5599 21.9499 10.1099 21.9999 10.6599 21.9999C12.4699 21.9999 14.2199 21.4399 15.7099 20.3499C17.6499 18.9399 18.9399 16.7799 19.2399 14.4299C19.2899 14.0399 19.1699 13.6499 18.9099 13.3599Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M18.32 11.9999C20.92 11.9999 22 10.9999 21.04 7.71994C20.39 5.50994 18.49 3.60994 16.28 2.95994C13 1.99994 12 3.07994 12 5.67994V8.55994C12 10.9999 13 11.9999 15 11.9999H18.32Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M19.9999 14.7C19.0699 19.33 14.6299 22.69 9.57993 21.87C5.78993 21.26 2.73993 18.21 2.11993 14.42C1.30993 9.39001 4.64993 4.95001 9.25993 4.01001" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15 22.75H9C3.57 22.75 1.25 20.43 1.25 15V9C1.25 3.57 3.57 1.25 9 1.25H15C20.43 1.25 22.75 3.57 22.75 9V15C22.75 20.43 20.43 22.75 15 22.75ZM9 2.75C4.39 2.75 2.75 4.39 2.75 9V15C2.75 19.61 4.39 21.25 9 21.25H15C19.61 21.25 21.25 19.61 21.25 15V9C21.25 4.39 19.61 2.75 15 2.75H9Z" fill="currentColor"/>
3
+ <path d="M10 22.75C9.59 22.75 9.25 22.41 9.25 22V2C9.25 1.59 9.59 1.25 10 1.25C10.41 1.25 10.75 1.59 10.75 2V22C10.75 22.41 10.41 22.75 10 22.75Z" fill="currentColor"/>
4
+ <path d="M22 9.25H10C9.59 9.25 9.25 8.91 9.25 8.5C9.25 8.09 9.59 7.75 10 7.75H22C22.41 7.75 22.75 8.09 22.75 8.5C22.75 8.91 22.41 9.25 22 9.25Z" fill="currentColor"/>
5
+ <path d="M22 16.25H10C9.59 16.25 9.25 15.91 9.25 15.5C9.25 15.09 9.59 14.75 10 14.75H22C22.41 14.75 22.75 15.09 22.75 15.5C22.75 15.91 22.41 16.25 22 16.25Z" fill="currentColor"/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22 8.52V3.98C22 2.57 21.36 2 19.77 2H15.73C14.14 2 13.5 2.57 13.5 3.98V8.51C13.5 9.93 14.14 10.49 15.73 10.49H19.77C21.36 10.5 22 9.93 22 8.52Z" fill="currentColor"/>
3
+ <path d="M22 19.77V15.73C22 14.14 21.36 13.5 19.77 13.5H15.73C14.14 13.5 13.5 14.14 13.5 15.73V19.77C13.5 21.36 14.14 22 15.73 22H19.77C21.36 22 22 21.36 22 19.77Z" fill="currentColor"/>
4
+ <path d="M10.5 8.52V3.98C10.5 2.57 9.86 2 8.27 2H4.23C2.64 2 2 2.57 2 3.98V8.51C2 9.93 2.64 10.49 4.23 10.49H8.27C9.86 10.5 10.5 9.93 10.5 8.52Z" fill="currentColor"/>
5
+ <path d="M10.5 19.77V15.73C10.5 14.14 9.86 13.5 8.27 13.5H4.23C2.64 13.5 2 14.14 2 15.73V19.77C2 21.36 2.64 22 4.23 22H8.27C9.86 22 10.5 21.36 10.5 19.77Z" fill="currentColor"/>
6
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4"
3
+ d="M13.1821 6.66005L13.1821 6.66004H13.18H10.4867C9.9815 6.66004 9.71291 6.56811 9.56675 6.43876C9.43107 6.31868 9.33333 6.1045 9.33333 5.67337V2.65337C9.33333 2.22628 9.43075 2.01132 9.56723 1.89006C9.71377 1.75986 9.98269 1.66671 10.4867 1.66671H13.18C13.684 1.66671 13.9529 1.75986 14.0994 1.89006C14.2359 2.01132 14.3333 2.22628 14.3333 2.65337V5.68004C14.3333 6.10739 14.2358 6.32183 14.0999 6.44209C13.9541 6.57114 13.6859 6.66322 13.1821 6.66005Z"
4
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
5
+ <path
6
+ d="M14.3333 10.4867V13.18C14.3333 13.6766 14.2314 13.9388 14.0851 14.0851C13.9388 14.2314 13.6766 14.3333 13.18 14.3333H10.4867C9.99005 14.3333 9.72782 14.2314 9.58154 14.0851C9.43525 13.9388 9.33333 13.6766 9.33333 13.18V10.4867C9.33333 9.99005 9.43525 9.72782 9.58154 9.58154C9.72782 9.43525 9.99005 9.33333 10.4867 9.33333H13.18C13.6766 9.33333 13.9388 9.43525 14.0851 9.58154C14.2314 9.72782 14.3333 9.99005 14.3333 10.4867Z"
7
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
8
+ <path
9
+ d="M5.51544 6.66005L5.51544 6.66004H5.51334H2.82001C2.31484 6.66004 2.04625 6.56811 1.90009 6.43876C1.76442 6.31868 1.66668 6.1045 1.66668 5.67337V2.65337C1.66668 2.22628 1.76409 2.01132 1.90058 1.89006C2.04711 1.75986 2.31603 1.66671 2.82001 1.66671H5.51334C6.01732 1.66671 6.28624 1.75986 6.43278 1.89006C6.56926 2.01132 6.66668 2.22628 6.66668 2.65337V5.68004C6.66668 6.10739 6.56915 6.32183 6.43326 6.44209C6.28745 6.57114 6.01923 6.66322 5.51544 6.66005Z"
10
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
11
+ <path opacity="0.4"
12
+ d="M6.66668 10.4867V13.18C6.66668 13.6766 6.56476 13.9388 6.41847 14.0851C6.27219 14.2314 6.00996 14.3333 5.51334 14.3333H2.82001C2.3234 14.3333 2.06117 14.2314 1.91488 14.0851C1.76859 13.9388 1.66668 13.6766 1.66668 13.18V10.4867C1.66668 9.99005 1.76859 9.72782 1.91488 9.58154C2.06117 9.43525 2.3234 9.33333 2.82001 9.33333H5.51334C6.00996 9.33333 6.27219 9.43525 6.41847 9.58154C6.56476 9.72782 6.66668 9.99005 6.66668 10.4867Z"
13
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
14
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14.6667 5.67992V2.65325C14.6667 1.71325 14.24 1.33325 13.18 1.33325H10.4867C9.42667 1.33325 9 1.71325 9 2.65325V5.67325C9 6.61992 9.42667 6.99325 10.4867 6.99325H13.18C14.24 6.99992 14.6667 6.61992 14.6667 5.67992Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M14.6667 13.18V10.4867C14.6667 9.42667 14.24 9 13.18 9H10.4867C9.42667 9 9 9.42667 9 10.4867V13.18C9 14.24 9.42667 14.6667 10.4867 14.6667H13.18C14.24 14.6667 14.6667 14.24 14.6667 13.18Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M7.00065 5.67992V2.65325C7.00065 1.71325 6.57398 1.33325 5.51398 1.33325H2.82065C1.76065 1.33325 1.33398 1.71325 1.33398 2.65325V5.67325C1.33398 6.61992 1.76065 6.99325 2.82065 6.99325H5.51398C6.57398 6.99992 7.00065 6.61992 7.00065 5.67992Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M7.00065 13.18V10.4867C7.00065 9.42667 6.57398 9 5.51398 9H2.82065C1.76065 9 1.33398 9.42667 1.33398 10.4867V13.18C1.33398 14.24 1.76065 14.6667 2.82065 14.6667H5.51398C6.57398 14.6667 7.00065 14.24 7.00065 13.18Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3.5 8.16699H24.5" stroke="currentColor" stroke-width="1.75" stroke-linecap="round"/>
3
+ <path d="M3.5 14H24.5" stroke="currentColor" stroke-width="1.75" stroke-linecap="round"/>
4
+ <path d="M3.5 19.833H24.5" stroke="currentColor" stroke-width="1.75" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512">
2
+ <path d="M256 48C141.1 48 48 141.1 48 256v40c0 13.3-10.7 24-24 24s-24-10.7-24-24V256C0 114.6 114.6 0 256 0S512 114.6 512 256V400.1c0 48.6-39.4 88-88.1 88L313.6 488c-8.3 14.3-23.8 24-41.6 24H240c-26.5 0-48-21.5-48-48s21.5-48 48-48h32c17.8 0 33.3 9.7 41.6 24l110.4 .1c22.1 0 40-17.9 40-40V256c0-114.9-93.1-208-208-208zM144 208h16c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H144c-35.3 0-64-28.7-64-64V272c0-35.3 28.7-64 64-64zm224 0c35.3 0 64 28.7 64 64v48c0 35.3-28.7 64-64 64H352c-17.7 0-32-14.3-32-32V240c0-17.7 14.3-32 32-32h16z"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4" d="M22 7.81V14H17.92C17.25 14 16.46 13.52 16.15 12.93L15.11 10.96C14.83 10.43 14.43 10.46 14.21 11.01L11.91 16.82C11.66 17.47 11.24 17.47 10.98 16.82L9.84 13.94C9.57 13.24 8.73 12.67 7.98 12.67L2 12.7V7.81C2 4.17 4.17 2 7.81 2H16.19C19.83 2 22 4.17 22 7.81Z" fill="currentColor"/>
3
+ <path d="M22 16.1899V13.9999H17.92C17.25 13.9999 16.46 13.5199 16.15 12.9299L15.11 10.9599C14.83 10.4299 14.43 10.4599 14.21 11.0099L11.91 16.8199C11.66 17.4699 11.24 17.4699 10.98 16.8199L9.84 13.9399C9.57 13.2399 8.73 12.6699 7.98 12.6699L2 12.6999V16.1899C2 19.7699 4.1 21.9299 7.63 21.9899C7.74 21.9999 7.86 21.9999 7.97 21.9999H15.97C16.12 21.9999 16.27 21.9999 16.41 21.9899C19.92 21.9099 22 19.7599 22 16.1899Z" fill="currentColor"/>
4
+ <path d="M1.99997 12.7V16.01C1.97997 15.69 1.96997 15.35 1.96997 15V12.7H1.99997Z" fill="currentColor"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg fill="currentColor" viewBox="64 64 896 896">
2
+ <path d="M536.1 273H488c-4.4 0-8 3.6-8 8v275.3c0 2.6 1.2 5 3.3 6.5l165.3 120.7c3.6 2.6 8.6 1.9 11.2-1.7l28.6-39c2.7-3.7 1.9-8.7-1.7-11.2L544.1 528.5V281c0-4.4-3.6-8-8-8zm219.8 75.2l156.8 38.3c5 1.2 9.9-2.6 9.9-7.7l.8-161.5c0-6.7-7.7-10.5-12.9-6.3L752.9 334.1a8 8 0 003 14.1zm167.7 301.1l-56.7-19.5a8 8 0 00-10.1 4.8c-1.9 5.1-3.9 10.1-6 15.1-17.8 42.1-43.3 80-75.9 112.5a353 353 0 01-112.5 75.9 352.18 352.18 0 01-137.7 27.8c-47.8 0-94.1-9.3-137.7-27.8a353 353 0 01-112.5-75.9c-32.5-32.5-58-70.4-75.9-112.5A353.44 353.44 0 01171 512c0-47.8 9.3-94.2 27.8-137.8 17.8-42.1 43.3-80 75.9-112.5a353 353 0 01112.5-75.9C430.6 167.3 477 158 524.8 158s94.1 9.3 137.7 27.8A353 353 0 01775 261.7c10.2 10.3 19.8 21 28.6 32.3l59.8-46.8C784.7 146.6 662.2 81.9 524.6 82 285 82.1 92.6 276.7 95 516.4 97.4 751.9 288.9 942 524.8 942c185.5 0 343.5-117.6 403.7-282.3 1.5-4.2-.7-8.9-4.9-10.4z"></path>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M20.83 8.01002L14.28 2.77002C13 1.75002 11 1.74002 9.72996 2.76002L3.17996 8.01002C2.23996 8.76002 1.66996 10.26 1.86996 11.44L3.12996 18.98C3.41996 20.67 4.98996 22 6.69996 22H17.3C18.99 22 20.59 20.64 20.88 18.97L22.14 11.43C22.32 10.26 21.75 8.76002 20.83 8.01002ZM12.75 18C12.75 18.41 12.41 18.75 12 18.75C11.59 18.75 11.25 18.41 11.25 18V15C11.25 14.59 11.59 14.25 12 14.25C12.41 14.25 12.75 14.59 12.75 15V18Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4"
3
+ d="M6.69513 2.10015L6.69538 2.09994C7.41823 1.51939 8.57842 1.5228 9.31205 2.10725C9.31212 2.1073 9.31218 2.10735 9.31225 2.10741L13.676 5.59841C13.6764 5.59873 13.6768 5.59904 13.6772 5.59935C13.9287 5.80479 14.1464 6.12633 14.2869 6.49403C14.4274 6.86149 14.4797 7.24662 14.4308 7.56735L13.5916 12.5897C13.5915 12.59 13.5915 12.5903 13.5914 12.5906C13.425 13.5459 12.4955 14.3334 11.5333 14.3334H4.46665C3.49034 14.3334 2.58169 13.5651 2.4153 12.5977C2.41526 12.5975 2.41522 12.5972 2.41518 12.597L1.57543 7.57178L1.5753 7.57102C1.52053 7.24791 1.56969 6.86201 1.70977 6.49466C1.84985 6.12733 2.07033 5.8061 2.32788 5.60061L2.32846 5.60015L6.69513 2.10015Z"
4
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
5
+ <path
6
+ d="M8 12.1667C7.91076 12.1667 7.83333 12.0892 7.83333 12V10C7.83333 9.91076 7.91076 9.83333 8 9.83333C8.08924 9.83333 8.16667 9.91076 8.16667 10V12C8.16667 12.0892 8.08924 12.1667 8 12.1667Z"
7
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 18V15" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M10.0698 2.82009L3.13978 8.37009C2.35978 8.99009 1.85978 10.3001 2.02978 11.2801L3.35978 19.2401C3.59978 20.6601 4.95978 21.8101 6.39978 21.8101H17.5998C19.0298 21.8101 20.3998 20.6501 20.6398 19.2401L21.9698 11.2801C22.1298 10.3001 21.6298 8.99009 20.8598 8.37009L13.9298 2.83009C12.8598 1.97009 11.1298 1.97009 10.0698 2.82009Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22 21.25H2C1.59 21.25 1.25 21.59 1.25 22C1.25 22.41 1.59 22.75 2 22.75H22C22.41 22.75 22.75 22.41 22.75 22C22.75 21.59 22.41 21.25 22 21.25Z" fill="currentColor"/>
3
+ <path opacity="0.4" d="M17 2H7C4 2 3 3.79 3 6V22H21V6C21 3.79 20 2 17 2Z" fill="currentColor"/>
4
+ <path d="M14.06 15H9.92998C9.41998 15 8.98999 15.42 8.98999 15.94V22H14.99V15.94C15 15.42 14.58 15 14.06 15Z" fill="currentColor"/>
5
+ <path d="M14.5 7.75H12.75V6C12.75 5.59 12.41 5.25 12 5.25C11.59 5.25 11.25 5.59 11.25 6V7.75H9.5C9.09 7.75 8.75 8.09 8.75 8.5C8.75 8.91 9.09 9.25 9.5 9.25H11.25V11C11.25 11.41 11.59 11.75 12 11.75C12.41 11.75 12.75 11.41 12.75 11V9.25H14.5C14.91 9.25 15.25 8.91 15.25 8.5C15.25 8.09 14.91 7.75 14.5 7.75Z" fill="currentColor"/>
6
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22 22.75H2C1.59 22.75 1.25 22.41 1.25 22C1.25 21.59 1.59 21.25 2 21.25H22C22.41 21.25 22.75 21.59 22.75 22C22.75 22.41 22.41 22.75 22 22.75Z" fill="currentColor"/>
3
+ <path opacity="0.4" d="M21 9.97993V21.9999H2.95L3 9.96992C3 9.35992 3.28 8.77997 3.77 8.39997L10.77 2.95997C11.49 2.38997 12.51 2.38997 13.23 2.95997L14.57 3.99995L19 7.43995L20.23 8.39997C20.72 8.77997 21 9.35993 21 9.97993Z" fill="currentColor"/>
4
+ <path d="M13 17H11C10.17 17 9.5 17.67 9.5 18.5V22H14.5V18.5C14.5 17.67 13.83 17 13 17Z" fill="currentColor"/>
5
+ <path d="M9.5 13.75H7.5C6.95 13.75 6.5 13.3 6.5 12.75V11.25C6.5 10.7 6.95 10.25 7.5 10.25H9.5C10.05 10.25 10.5 10.7 10.5 11.25V12.75C10.5 13.3 10.05 13.75 9.5 13.75Z" fill="currentColor"/>
6
+ <path d="M16.5 13.75H14.5C13.95 13.75 13.5 13.3 13.5 12.75V11.25C13.5 10.7 13.95 10.25 14.5 10.25H16.5C17.05 10.25 17.5 10.7 17.5 11.25V12.75C17.5 13.3 17.05 13.75 16.5 13.75Z" fill="currentColor"/>
7
+ <path d="M19 7.44L14.57 4H17.98C18.53 4 18.98 4.43999 18.98 4.98999L19 7.44Z" fill="currentColor"/>
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.8 9H12.75V13.44L14.82 11.37C14.97 11.22 15.16 11.15 15.35 11.15C15.54 11.15 15.73 11.22 15.88 11.37C16.17 11.66 16.17 12.14 15.88 12.43L12.53 15.78C12.24 16.07 11.76 16.07 11.47 15.78L8.12 12.43C7.83 12.14 7.83 11.66 8.12 11.37C8.41 11.08 8.89 11.08 9.18 11.37L11.25 13.44V9H7.2C4 9 2 11 2 14.2V16.79C2 20 4 22 7.2 22H16.79C19.99 22 21.99 20 21.99 16.8V14.2C22 11 20 9 16.8 9Z" fill="currentColor"/>
3
+ <path d="M12.75 2.75C12.75 2.34 12.41 2 12 2C11.59 2 11.25 2.34 11.25 2.75V9H12.75V2.75Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M15.26 22.25H8.73998C3.82998 22.25 1.72998 20.15 1.72998 15.24V15.11C1.72998 10.67 3.47998 8.53003 7.39998 8.16003C7.79998 8.13003 8.17998 8.43003 8.21998 8.84003C8.25998 9.25003 7.95998 9.62003 7.53998 9.66003C4.39998 9.95003 3.22998 11.43 3.22998 15.12V15.25C3.22998 19.32 4.66998 20.76 8.73998 20.76H15.26C19.33 20.76 20.77 19.32 20.77 15.25V15.12C20.77 11.41 19.58 9.93003 16.38 9.66003C15.97 9.62003 15.66 9.26003 15.7 8.85003C15.74 8.44003 16.09 8.13003 16.51 8.17003C20.49 8.51003 22.27 10.66 22.27 15.13V15.26C22.27 20.15 20.17 22.25 15.26 22.25Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M12 15.63C11.59 15.63 11.25 15.29 11.25 14.88V2C11.25 1.59 11.59 1.25 12 1.25C12.41 1.25 12.75 1.59 12.75 2V14.88C12.75 15.3 12.41 15.63 12 15.63Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M12.0001 16.75C11.8101 16.75 11.6201 16.68 11.4701 16.53L8.12009 13.18C7.83009 12.89 7.83009 12.41 8.12009 12.12C8.41009 11.83 8.89009 11.83 9.18009 12.12L12.0001 14.94L14.8201 12.12C15.1101 11.83 15.5901 11.83 15.8801 12.12C16.1701 12.41 16.1701 12.89 15.8801 13.18L12.5301 16.53C12.3801 16.68 12.1901 16.75 12.0001 16.75Z"
10
+ fill="currentColor" />
11
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 16.5C14.4853 16.5 16.5 14.4853 16.5 12C16.5 9.51472 14.4853 7.5 12 7.5C9.51472 7.5 7.5 9.51472 7.5 12C7.5 14.4853 9.51472 16.5 12 16.5Z" fill="currentColor"/>
3
+ <path d="M10 12.75H2C1.59 12.75 1.25 12.41 1.25 12C1.25 11.59 1.59 11.25 2 11.25H10C10.41 11.25 10.75 11.59 10.75 12C10.75 12.41 10.41 12.75 10 12.75Z" fill="currentColor"/>
4
+ <path d="M22 12.75H14C13.59 12.75 13.25 12.41 13.25 12C13.25 11.59 13.59 11.25 14 11.25H22C22.41 11.25 22.75 11.59 22.75 12C22.75 12.41 22.41 12.75 22 12.75Z" fill="currentColor"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 16.5C14.4853 16.5 16.5 14.4853 16.5 12C16.5 9.51472 14.4853 7.5 12 7.5C9.51472 7.5 7.5 9.51472 7.5 12C7.5 14.4853 9.51472 16.5 12 16.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M2 12H7" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M17 12H22" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>