@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,14 @@
1
+ <svg viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4"
3
+ d="M11 4.5V8.23C11 9.375 10.07 10.3 8.925 10.3H3.075C1.93 10.3 1 9.375 1 8.23V4.5H11Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M11 3.7702V4.5002H1V3.7702C1 2.6252 1.93 1.7002 3.075 1.7002H8.925C10.07 1.7002 11 2.6252 11 3.7702Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M4 8.625H3C2.795 8.625 2.625 8.455 2.625 8.25C2.625 8.045 2.795 7.875 3 7.875H4C4.205 7.875 4.375 8.045 4.375 8.25C4.375 8.455 4.205 8.625 4 8.625Z"
10
+ fill="currentColor" />
11
+ <path
12
+ d="M7.25 8.625H5.25C5.045 8.625 4.875 8.455 4.875 8.25C4.875 8.045 5.045 7.875 5.25 7.875H7.25C7.455 7.875 7.625 8.045 7.625 8.25C7.625 8.455 7.455 8.625 7.25 8.625Z"
13
+ fill="currentColor" />
14
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2 8.50488H22" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M6 16.5049H8" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M10.5 16.5049H14.5" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M6.44 3.50488H17.55C21.11 3.50488 22 4.38488 22 7.89488V16.1049C22 19.6149 21.11 20.4949 17.56 20.4949H6.44C2.89 20.5049 2 19.6249 2 16.1149V7.89488C2 4.38488 2.89 3.50488 6.44 3.50488Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17.92 8.18005H11.69H6.07999C5.11999 8.18005 4.63999 9.34005 5.31999 10.0201L10.5 15.2001C11.33 16.0301 12.68 16.0301 13.51 15.2001L15.48 13.2301L18.69 10.0201C19.36 9.34005 18.88 8.18005 17.92 8.18005Z" fill="currentColor"/>
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="M19.92 8.94995L13.4 15.47C12.63 16.24 11.37 16.24 10.6 15.47L4.07996 8.94995" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
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="M13.98 5.31999L10.77 8.52999L8.79999 10.49C7.96999 11.32 7.96999 12.67 8.79999 13.5L13.98 18.68C14.66 19.36 15.82 18.87 15.82 17.92V12.31V6.07999C15.82 5.11999 14.66 4.63999 13.98 5.31999Z" fill="currentColor"/>
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="M15 19.92L8.47997 13.4C7.70997 12.63 7.70997 11.37 8.47997 10.6L15 4.07996" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
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="M15.2001 10.49L13.2301 8.52005L10.0201 5.31005C9.34005 4.64005 8.18005 5.12005 8.18005 6.08005V12.31V17.92C8.18005 18.88 9.34005 19.36 10.0201 18.68L15.2001 13.5C16.0301 12.68 16.0301 11.32 15.2001 10.49Z" fill="currentColor"/>
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="M8.91003 19.92L15.43 13.4C16.2 12.63 16.2 11.37 15.43 10.6L8.91003 4.07996" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
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.6799 13.98L15.4699 10.77L13.5099 8.79999C12.6799 7.96999 11.3299 7.96999 10.4999 8.79999L5.31995 13.98C4.63995 14.66 5.12995 15.82 6.07995 15.82H11.6899H17.9199C18.8799 15.82 19.36 14.66 18.6799 13.98Z" fill="currentColor"/>
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="M19.92 15.05L13.4 8.53001C12.63 7.76001 11.37 7.76001 10.6 8.53001L4.07996 15.05" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M13.0117 11.739C13.0117 11.01 12.7217 10.31 12.2057 9.79501C11.6907 9.27901 10.9907 8.98901 10.2617 8.98901C8.27572 8.98901 5.24772 8.98901 3.26172 8.98901C2.53172 8.98901 1.83272 9.27901 1.31672 9.79501C0.801719 10.31 0.511719 11.01 0.511719 11.739V18.739C0.511719 19.469 0.801719 20.168 1.31672 20.684C1.83272 21.199 2.53172 21.489 3.26172 21.489H10.2617C10.9907 21.489 11.6907 21.199 12.2057 20.684C12.7217 20.168 13.0117 19.469 13.0117 18.739V11.739ZM10.2617 17.739C10.2617 17.187 9.81372 16.739 9.26172 16.739C8.70972 16.739 8.26172 17.187 8.26172 17.739C8.26172 18.291 8.70972 18.739 9.26172 18.739C9.81372 18.739 10.2617 18.291 10.2617 17.739ZM4.26172 16.739C3.70972 16.739 3.26172 17.187 3.26172 17.739C3.26172 18.291 3.70972 18.739 4.26172 18.739C4.81372 18.739 5.26172 18.291 5.26172 17.739C5.26172 17.187 4.81372 16.739 4.26172 16.739ZM6.76172 14.239C6.20972 14.239 5.76172 14.687 5.76172 15.239C5.76172 15.791 6.20972 16.239 6.76172 16.239C7.31372 16.239 7.76172 15.791 7.76172 15.239C7.76172 14.687 7.31372 14.239 6.76172 14.239ZM9.26172 11.739C8.70972 11.739 8.26172 12.187 8.26172 12.739C8.26172 13.291 8.70972 13.739 9.26172 13.739C9.81372 13.739 10.2617 13.291 10.2617 12.739C10.2617 12.187 9.81372 11.739 9.26172 11.739ZM5.26172 12.739C5.26172 12.187 4.81372 11.739 4.26172 11.739C3.70972 11.739 3.26172 12.187 3.26172 12.739C3.26172 13.291 3.70972 13.739 4.26172 13.739C4.81372 13.739 5.26172 13.291 5.26172 12.739Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.5293 7.98901H10.2623C11.2563 7.98901 12.2103 8.38401 12.9133 9.08801C13.6173 9.79101 14.0123 10.745 14.0123 11.739V14.331C14.8363 14.61 15.4033 14.792 15.4393 14.805C16.1253 15.052 16.8813 15.016 17.5413 14.706C18.2013 14.395 18.7103 13.835 18.9573 13.149C19.6303 11.28 20.6553 8.43101 21.3283 6.56201C21.5753 5.87601 21.5393 5.12001 21.2283 4.46001C20.9183 3.80001 20.3583 3.29101 19.6713 3.04401C17.8033 2.37101 14.9543 1.34601 13.0853 0.673006C12.3993 0.426006 11.6423 0.462006 10.9833 0.773006C10.3233 1.08301 9.8133 1.64301 9.5663 2.33001L7.5293 7.98901ZM16.7083 11.277C16.8953 10.757 16.6253 10.184 16.1063 9.99701C15.5873 9.81001 15.0133 10.08 14.8273 10.599C14.6403 11.119 14.9103 11.692 15.4293 11.879C15.9483 12.066 16.5223 11.796 16.7083 11.277ZM14.6003 6.79801C14.0813 6.61101 13.5083 6.88101 13.3213 7.40101C13.1343 7.92001 13.4043 8.49301 13.9233 8.68001C14.4423 8.86701 15.0163 8.59701 15.2033 8.07801C15.3903 7.55901 15.1203 6.98501 14.6003 6.79801ZM13.6973 4.87901C13.8843 4.36001 13.6143 3.78601 13.0953 3.59901C12.5753 3.41301 12.0023 3.68201 11.8153 4.20201C11.6283 4.72101 11.8983 5.29401 12.4173 5.48101C12.9373 5.66801 13.5103 5.39801 13.6973 4.87901Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M7.24 2H5.34C3.15 2 2 3.15 2 5.33V7.23C2 9.41 3.15 10.56 5.33 10.56H7.23C9.41 10.56 10.56 9.41 10.56 7.23V5.33C10.57 3.15 9.42 2 7.24 2Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M18.67 2H16.77C14.59 2 13.44 3.15 13.44 5.33V7.23C13.44 9.41 14.59 10.56 16.77 10.56H18.67C20.85 10.56 22 9.41 22 7.23V5.33C22 3.15 20.85 2 18.67 2Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M18.67 13.4299H16.77C14.59 13.4299 13.44 14.5799 13.44 16.7599V18.6599C13.44 20.8399 14.59 21.9899 16.77 21.9899H18.67C20.85 21.9899 22 20.8399 22 18.6599V16.7599C22 14.5799 20.85 13.4299 18.67 13.4299Z"
10
+ fill="currentColor" />
11
+ <path
12
+ d="M7.24 13.4299H5.34C3.15 13.4299 2 14.5799 2 16.7599V18.6599C2 20.8499 3.15 21.9999 5.33 21.9999H7.23C9.41 21.9999 10.56 20.8499 10.56 18.6699V16.7699C10.57 14.5799 9.42 13.4299 7.24 13.4299Z"
13
+ fill="currentColor" />
14
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5 10H7C9 10 10 9 10 7V5C10 3 9 2 7 2H5C3 2 2 3 2 5V7C2 9 3 10 5 10Z"
3
+ stroke="currentColor"
4
+ stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
5
+ <path d="M17 10H19C21 10 22 9 22 7V5C22 3 21 2 19 2H17C15 2 14 3 14 5V7C14 9 15 10 17 10Z"
6
+ stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"
7
+ stroke-linejoin="round" />
8
+ <path
9
+ d="M17 22H19C21 22 22 21 22 19V17C22 15 21 14 19 14H17C15 14 14 15 14 17V19C14 21 15 22 17 22Z"
10
+ stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"
11
+ stroke-linejoin="round" />
12
+ <path d="M5 22H7C9 22 10 21 10 19V17C10 15 9 14 7 14H5C3 14 2 15 2 17V19C2 21 3 22 5 22Z"
13
+ stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"
14
+ stroke-linejoin="round" />
15
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512">
2
+ <path d="M211 7.3C205 1 196-1.4 187.6 .8s-14.9 8.9-17.1 17.3L154.7 80.6l-62-17.5c-8.4-2.4-17.4 0-23.5 6.1s-8.5 15.1-6.1 23.5l17.5 62L18.1 170.6c-8.4 2.1-15 8.7-17.3 17.1S1 205 7.3 211l46.2 45L7.3 301C1 307-1.4 316 .8 324.4s8.9 14.9 17.3 17.1l62.5 15.8-17.5 62c-2.4 8.4 0 17.4 6.1 23.5s15.1 8.5 23.5 6.1l62-17.5 15.8 62.5c2.1 8.4 8.7 15 17.1 17.3s17.3-.2 23.4-6.4l45-46.2 45 46.2c6.1 6.2 15 8.7 23.4 6.4s14.9-8.9 17.1-17.3l15.8-62.5 62 17.5c8.4 2.4 17.4 0 23.5-6.1s8.5-15.1 6.1-23.5l-17.5-62 62.5-15.8c8.4-2.1 15-8.7 17.3-17.1s-.2-17.3-6.4-23.4l-46.2-45 46.2-45c6.2-6.1 8.7-15 6.4-23.4s-8.9-14.9-17.3-17.1l-62.5-15.8 17.5-62c2.4-8.4 0-17.4-6.1-23.5s-15.1-8.5-23.5-6.1l-62 17.5L341.4 18.1c-2.1-8.4-8.7-15-17.1-17.3S307 1 301 7.3L256 53.5 211 7.3z"/>
3
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4"
3
+ 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"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M12 19.75C7.73 19.75 4.25 16.27 4.25 12C4.25 11.59 4.59 11.25 5 11.25C5.41 11.25 5.75 11.59 5.75 12C5.75 15.45 8.55 18.25 12 18.25C15.45 18.25 18.25 15.45 18.25 12C18.25 8.55 15.45 5.75 12 5.75C11.59 5.75 11.25 5.41 11.25 5C11.25 4.59 11.59 4.25 12 4.25C16.27 4.25 19.75 7.73 19.75 12C19.75 16.27 16.27 19.75 12 19.75Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M12 16.75C11.59 16.75 11.25 16.41 11.25 16C11.25 15.59 11.59 15.25 12 15.25C13.79 15.25 15.25 13.79 15.25 12C15.25 10.21 13.79 8.75 12 8.75C11.59 8.75 11.25 8.41 11.25 8C11.25 7.59 11.59 7.25 12 7.25C14.62 7.25 16.75 9.38 16.75 12C16.75 14.62 14.62 16.75 12 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="M4.02 5.97C2.75 7.65 2 9.74 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M5 12C5 15.87 8.13 19 12 19C15.87 19 19 15.87 19 12C19 8.13 15.87 5 12 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M12 16C14.21 16 16 14.21 16 12C16 9.79 14.21 8 12 8" 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" viewBox="0 0 512 512" fill="currentColor">
2
+ <path d="M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V400c0 44.2 35.8 80 80 80H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H80c-8.8 0-16-7.2-16-16V64zm96 288H448c17.7 0 32-14.3 32-32V251.8c0-7.6-2.7-15-7.7-20.8l-65.8-76.8c-12.1-14.2-33.7-15-46.9-1.8l-21 21c-10 10-26.4 9.2-35.4-1.6l-39.2-47c-12.6-15.1-35.7-15.4-48.7-.6L135.9 215c-5.1 5.8-7.9 13.3-7.9 21.1v84c0 17.7 14.3 32 32 32z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor">
2
+ <path d="M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zm96 96c0-17.7 14.3-32 32-32l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32zm32 64H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32z"/>
3
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17.5 18.9583H2.5C2.15833 18.9583 1.875 18.675 1.875 18.3333C1.875 17.9916 2.15833 17.7083 2.5 17.7083H17.5C17.8417 17.7083 18.125 17.9916 18.125 18.3333C18.125 18.675 17.8417 18.9583 17.5 18.9583Z" fill="currentColor"/>
3
+ <path d="M4.66667 6.98334H3.33333C2.875 6.98334 2.5 7.35834 2.5 7.81667V15C2.5 15.4583 2.875 15.8333 3.33333 15.8333H4.66667C5.125 15.8333 5.5 15.4583 5.5 15V7.81667C5.5 7.35 5.125 6.98334 4.66667 6.98334Z" fill="currentColor"/>
4
+ <path d="M10.6667 4.32501H9.33333C8.875 4.32501 8.5 4.70001 8.5 5.15835V15C8.5 15.4583 8.875 15.8333 9.33333 15.8333H10.6667C11.125 15.8333 11.5 15.4583 11.5 15V5.15835C11.5 4.70001 11.125 4.32501 10.6667 4.32501Z" fill="currentColor"/>
5
+ <path d="M16.6667 1.66669H15.3333C14.875 1.66669 14.5 2.04169 14.5 2.50002V15C14.5 15.4584 14.875 15.8334 15.3333 15.8334H16.6667C17.125 15.8334 17.5 15.4584 17.5 15V2.50002C17.5 2.04169 17.125 1.66669 16.6667 1.66669Z" fill="currentColor"/>
6
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M11 11H1C0.795 11 0.625 10.83 0.625 10.625C0.625 10.42 0.795 10.25 1 10.25H11C11.205 10.25 11.375 10.42 11.375 10.625C11.375 10.83 11.205 11 11 11Z"
4
+ fill="currentColor" />
5
+ <path d="M4.875 2V11H7.125V2C7.125 1.45 6.9 1 6.225 1H5.775C5.1 1 4.875 1.45 4.875 2Z"
6
+ fill="currentColor" />
7
+ <path opacity="0.4" d="M1.5 5V11H3.5V5C3.5 4.45 3.3 4 2.7 4H2.3C1.7 4 1.5 4.45 1.5 5Z"
8
+ fill="currentColor" />
9
+ <path opacity="0.4"
10
+ d="M8.5 7.5V11H10.5V7.5C10.5 6.95 10.3 6.5 9.7 6.5H9.3C8.7 6.5 8.5 6.95 8.5 7.5Z"
11
+ fill="currentColor" />
12
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17.5 18.9583H2.5C2.15833 18.9583 1.875 18.675 1.875 18.3333C1.875 17.9916 2.15833 17.7083 2.5 17.7083H17.5C17.8417 17.7083 18.125 17.9916 18.125 18.3333C18.125 18.675 17.8417 18.9583 17.5 18.9583Z" fill="currentColor"/>
3
+ <path d="M4.66665 16.4583H3.33333C2.53333 16.4583 1.875 15.8 1.875 15V7.81667C1.875 7.01667 2.53333 6.35834 3.33333 6.35834H4.66665C5.46665 6.35834 6.12498 7.01667 6.12498 7.81667V15C6.12498 15.8 5.46665 16.4583 4.66665 16.4583ZM3.33333 7.6C3.21667 7.6 3.125 7.69166 3.125 7.80833V15C3.125 15.1167 3.21667 15.2083 3.33333 15.2083H4.66665C4.78331 15.2083 4.87498 15.1167 4.87498 15V7.81667C4.87498 7.7 4.78331 7.60834 4.66665 7.60834H3.33333V7.6Z" fill="currentColor"/>
4
+ <path d="M10.6666 16.4583H9.33333C8.53333 16.4583 7.875 15.8 7.875 15V5.15835C7.875 4.35835 8.53333 3.70001 9.33333 3.70001H10.6666C11.4666 3.70001 12.125 4.35835 12.125 5.15835V15C12.125 15.8 11.4666 16.4583 10.6666 16.4583ZM9.33333 4.95001C9.21667 4.95001 9.125 5.04168 9.125 5.15835V15C9.125 15.1167 9.21667 15.2083 9.33333 15.2083H10.6666C10.7833 15.2083 10.875 15.1167 10.875 15V5.15835C10.875 5.04168 10.7833 4.95001 10.6666 4.95001H9.33333Z" fill="currentColor"/>
5
+ <path d="M16.6666 16.4584H15.3333C14.5333 16.4584 13.875 15.8 13.875 15V2.50002C13.875 1.70002 14.5333 1.04169 15.3333 1.04169H16.6666C17.4666 1.04169 18.125 1.70002 18.125 2.50002V15C18.125 15.8 17.4666 16.4584 16.6666 16.4584ZM15.3333 2.29169C15.2167 2.29169 15.125 2.38335 15.125 2.50002V15C15.125 15.1167 15.2167 15.2084 15.3333 15.2084H16.6666C16.7833 15.2084 16.875 15.1167 16.875 15V2.50002C16.875 2.38335 16.7833 2.29169 16.6666 2.29169H15.3333Z" fill="currentColor"/>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.49956 12.3789L15.3936 5.48413L16.4548 6.54463L8.49956 14.4999L3.72656 9.72688L4.78706 8.66638L8.49956 12.3789Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.6673 5L7.50065 14.1667L3.33398 10" stroke="currentColor" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 448 512">
2
+ <path d="M32 0C49.7 0 64 14.3 64 32V48l69-17.2c38.1-9.5 78.3-5.1 113.5 12.5c46.3 23.2 100.8 23.2 147.1 0l9.6-4.8C423.8 28.1 448 43.1 448 66.1V345.8c0 13.3-8.3 25.3-20.8 30l-34.7 13c-46.2 17.3-97.6 14.6-141.7-7.4c-37.9-19-81.3-23.7-122.5-13.4L64 384v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V400 334 64 32C0 14.3 14.3 0 32 0zM64 187.1l64-13.9v65.5L64 252.6V318l48.8-12.2c5.1-1.3 10.1-2.4 15.2-3.3V238.7l38.9-8.4c8.3-1.8 16.7-2.5 25.1-2.1l0-64c13.6 .4 27.2 2.6 40.4 6.4l23.6 6.9v66.7l-41.7-12.3c-7.3-2.1-14.8-3.4-22.3-3.8v71.4c21.8 1.9 43.3 6.7 64 14.4V244.2l22.7 6.7c13.5 4 27.3 6.4 41.3 7.4V194c-7.8-.8-15.6-2.3-23.2-4.5l-40.8-12v-62c-13-3.8-25.8-8.8-38.2-15c-8.2-4.1-16.9-7-25.8-8.8v72.4c-13-.4-26 .8-38.7 3.6L128 173.2V98L64 114v73.1zM320 335.7c16.8 1.5 33.9-.7 50-6.8l14-5.2V251.9l-7.9 1.8c-18.4 4.3-37.3 5.7-56.1 4.5v77.4zm64-149.4V115.4c-20.9 6.1-42.4 9.1-64 9.1V194c13.9 1.4 28 .5 41.7-2.6l22.3-5.2z"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M18.5001 18H3.50394C3.22808 18 3.00444 18.2236 3.00392 18.4995L3.00195 19.9575C3.00149 20.5029 3.21336 21.0156 3.59863 21.4013C3.98436 21.7876 4.49656 22 5.042 22H16.96C18.085 22 19 21.0849 19 19.9599V18.5C19 18.2236 18.7764 18 18.5001 18Z" fill="currentColor"/>
3
+ <path opacity="0.4" d="M16.5 2.00002C16.1939 2.00002 15.8794 2.03077 15.5464 2.09278C14.4024 0.758766 12.7627 0 11 0C7.69144 0 5.00002 2.69142 5.00002 6C5.00002 6.27586 4.77591 6.50002 4.5 6.50002C4.22414 6.50002 3.99999 6.27591 3.99999 6C3.99999 4.91747 4.24903 3.8701 4.74024 2.88722C4.82766 2.71242 4.80516 2.50294 4.6831 2.3506C4.56103 2.19924 4.3613 2.13183 4.17188 2.17824C1.71535 2.79103 0 4.97949 0 7.50001C0 9.57812 1.17188 11.4673 3.01172 12.4014L3.00633 16.4995C3.00633 16.6318 3.0586 16.7593 3.15235 16.8535C3.24656 16.9472 3.37355 17 3.50635 17H18.5C18.7764 17 19 16.7763 19 16.5V12.394C20.833 11.4575 22 9.57123 22 7.49996C22 4.46728 19.5327 2.00002 16.5 2.00002ZM7.31738 13.8867C7.2241 13.9629 7.11183 14 7.0005 14C6.85599 14 6.71241 13.9375 6.61332 13.8174C6.44827 13.6157 5.00002 11.813 5.00002 10.5C5.00002 10.2236 5.22366 9.99999 5.50004 9.99999C5.77641 9.99999 6.00005 10.2236 6.00005 10.5C6.00005 11.2237 6.85065 12.5293 7.38676 13.1826C7.56151 13.3965 7.53076 13.7114 7.31738 13.8867ZM11.5 13.5C11.5 13.7764 11.2764 14 11 14C10.7236 14 10.5 13.7764 10.5 13.5V10.5C10.5 10.2236 10.7236 9.99999 11 9.99999C11.2764 9.99999 11.5 10.2236 11.5 10.5V13.5H11.5ZM15.3867 13.8174C15.2876 13.9375 15.1445 14 15 14C14.8882 14 14.7759 13.9629 14.6831 13.8867C14.4698 13.7114 14.4385 13.3965 14.6133 13.1831C15.1494 12.5283 16 11.2212 16 10.5C16 10.2236 16.2236 9.99999 16.5 9.99999C16.7764 9.99999 17 10.2236 17 10.5C17 11.813 15.5518 13.6157 15.3867 13.8174Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 22 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.4988 21.8625C21.3113 21.6 21.0488 21.45 20.7488 21.45H11.4863C12.3488 21.9 12.9113 22.7625 12.9113 23.775V24H21.8363V22.9875C21.8363 22.5375 21.7238 22.1625 21.4988 21.8625Z" fill="currentColor"/>
3
+ <path opacity="0.4" d="M10.3246 21.9375H1.99961C0.987109 21.9375 0.162109 22.7625 0.162109 23.775V24H12.1621V23.775C12.1621 22.7625 11.3371 21.9375 10.3246 21.9375Z" fill="currentColor"/>
4
+ <path opacity="0.4" d="M2.00051 21.15H10.3255H10.438C11.338 18.9375 10.4755 17.1375 9.57551 15.225C8.78801 13.5375 7.96301 11.8125 8.26301 9.67499H4.02551C4.32551 11.8125 3.50051 13.5375 2.71301 15.225C1.81301 17.1375 0.988005 18.9375 1.85051 21.15H2.00051Z" fill="currentColor"/>
5
+ <path opacity="0.4" d="M2.41211 6.86249H9.91211V8.88749H2.41211V6.86249Z" fill="currentColor"/>
6
+ <path opacity="0.4" d="M6.64579 6.03462C8.30155 5.76621 9.42622 4.20637 9.15781 2.55061C8.8894 0.894853 7.32955 -0.229813 5.67379 0.0385971C4.01804 0.307008 2.89337 1.86685 3.16178 3.52261C3.43019 5.17837 4.99004 6.30303 6.64579 6.03462Z" fill="currentColor"/>
7
+ <path d="M8.44922 6.07497H10.2867C10.5117 6.07497 10.6617 6.26247 10.6617 6.44997V9.26247C10.6617 9.48747 10.4742 9.63747 10.2867 9.63747H9.04922C8.74922 11.625 9.49922 13.2 10.2867 14.8875C11.1117 16.65 11.9742 18.4875 11.4117 20.6625H19.9992C20.2242 16.8375 18.1992 14.925 16.2867 13.275C14.7867 11.9625 13.5867 10.95 15.0117 8.81247C16.1367 10.3875 17.8992 9.97497 17.8992 9.97497C18.0117 9.97497 18.1242 10.0125 18.1992 10.05L19.4742 11.1H20.4867L21.7617 10.0875V8.77497L18.7617 5.39997C18.6867 5.32497 18.6492 5.21247 18.6492 5.09997C18.6492 4.98747 18.7242 4.87497 18.7992 4.83747L19.3617 4.46247L17.9742 2.96247L16.5117 2.24997C16.3992 2.21247 16.2867 2.09997 16.2867 1.94997L16.0992 0.637471C16.0992 0.524971 15.9492 0.487471 15.8742 0.599971L15.0867 1.64997C15.0117 1.76247 14.8617 1.83747 14.7117 1.79997C14.6742 1.79997 12.1242 1.38747 9.91172 2.54997C9.94922 2.69997 9.94922 2.84997 9.94922 3.03747C9.98672 4.27497 9.38672 5.39997 8.44922 6.07497ZM15.9867 4.27497C16.1367 4.12497 16.3992 4.12497 16.5492 4.27497L17.1117 4.79997C17.2617 4.94997 17.2617 5.21247 17.1117 5.36247C17.0367 5.43747 16.9242 5.47497 16.8117 5.47497C16.6992 5.47497 16.6242 5.43747 16.5492 5.36247L15.9867 4.83747C15.8367 4.68747 15.8367 4.46247 15.9867 4.27497Z" 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="M6 9L12 15L18 9" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
3
+ 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="M15 18L9 12L15 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
3
+ 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="M9 18L15 12L9 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
3
+ 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="M18 15L12 9L6 15" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
3
+ 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="M7 13L12 18L17 13M7 6L12 11L17 6" stroke="currentColor" stroke-width="2"
3
+ 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="M11 17L6 12L11 7M18 17L13 12L18 7" stroke="currentColor" stroke-width="2"
3
+ 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="M13 17L18 12L13 7M6 17L11 12L6 7" stroke="currentColor" stroke-width="2"
3
+ 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="M17 11L12 6L7 11M17 18L12 13L7 18" stroke="currentColor" stroke-width="2"
3
+ stroke-linecap="round" stroke-linejoin="round" />
4
+ </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 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"/>
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="M5.25 6.04C3.85 7.63 3 9.72 3 12C3 16.97 7.03 21 12 21C16.97 21 21 16.97 21 12C21 7.03 16.97 3 12 3C11.29 3 10.6 3.08 9.94 3.24" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
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="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </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="M13.89 2.88002L9.19999 2.14002C5.28999 1.53002 3.47999 2.85002 2.85999 6.76002L2.11999 11.45C1.71999 14.01 2.13999 15.67 3.58999 16.68C4.34999 17.22 5.38999 17.58 6.73999 17.79L11.43 18.53C15.34 19.14 17.15 17.82 17.77 13.91L18.5 9.22002C18.62 8.45002 18.67 7.76002 18.63 7.15002C18.5 4.65002 17.03 3.37002 13.89 2.88002ZM8.23999 9.35002C7.06999 9.35002 6.11999 8.40002 6.11999 7.24002C6.11999 6.07002 7.06999 5.12002 8.23999 5.12002C9.39999 5.12002 10.35 6.07002 10.35 7.24002C10.35 8.40002 9.39999 9.35002 8.23999 9.35002Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M20.5001 13.47L19.0001 17.98C17.7501 21.74 15.7501 22.74 11.9901 21.49L7.48014 19.99C6.07014 19.52 5.05014 18.94 4.39014 18.21C5.02014 18.46 5.75014 18.65 6.58014 18.78L11.2801 19.52C11.9201 19.62 12.5201 19.67 13.0801 19.67C16.3801 19.67 18.1501 17.89 18.7601 14.06L19.4901 9.37C19.5901 8.79 19.6301 8.28 19.6301 7.81C21.1501 9.06 21.3701 10.84 20.5001 13.47Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4"
3
+ d="M13.89 2.88002L9.19999 2.14002C5.28999 1.53002 3.47999 2.85002 2.85999 6.76002L2.11999 11.45C1.71999 14.01 2.13999 15.67 3.58999 16.68C4.34999 17.22 5.38999 17.58 6.73999 17.79L11.43 18.53C15.34 19.14 17.15 17.82 17.77 13.91L18.5 9.22002C18.62 8.45002 18.67 7.76002 18.63 7.15002C18.5 4.65002 17.03 3.37002 13.89 2.88002ZM8.23999 9.35002C7.06999 9.35002 6.11999 8.40002 6.11999 7.24002C6.11999 6.07002 7.06999 5.12002 8.23999 5.12002C9.39999 5.12002 10.35 6.07002 10.35 7.24002C10.35 8.40002 9.39999 9.35002 8.23999 9.35002Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M20.4998 13.47L18.9998 17.98C17.7498 21.74 15.7498 22.74 11.9898 21.49L7.47984 19.99C5.20984 19.24 3.94984 18.2 3.58984 16.68C4.34984 17.22 5.38984 17.58 6.73984 17.79L11.4298 18.53C15.3398 19.14 17.1498 17.82 17.7698 13.91L18.4998 9.22002C18.6198 8.45002 18.6698 7.76002 18.6298 7.15002C21.0198 8.42002 21.5398 10.34 20.4998 13.47Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M10.3501 7.24C10.3501 8.39999 9.40012 9.35 8.24012 9.35C7.07012 9.35 6.12012 8.39999 6.12012 7.24C6.12012 6.07 7.07012 5.12 8.24012 5.12C9.40012 5.12 10.3501 6.07 10.3501 7.24Z"
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 opacity="0.4" d="M16.24 3.65002H7.76004C5.29004 3.65002 3.29004 5.66002 3.29004 8.12002V17.53C3.29004 19.99 5.30004 22 7.76004 22H16.23C18.7 22 20.7 19.99 20.7 17.53V8.12002C20.71 5.65002 18.7 3.65002 16.24 3.65002Z" fill="currentColor"/>
3
+ <path d="M14.3498 2H9.64977C8.60977 2 7.75977 2.84 7.75977 3.88V4.82C7.75977 5.86 8.59977 6.7 9.63977 6.7H14.3498C15.3898 6.7 16.2298 5.86 16.2298 4.82V3.88C16.2398 2.84 15.3898 2 14.3498 2Z" fill="currentColor"/>
4
+ <path d="M14.5299 15.62L13.0799 14.17L14.4799 12.77C14.7699 12.48 14.7699 12 14.4799 11.71C14.1899 11.42 13.7099 11.42 13.4199 11.71L12.0199 13.11L10.5699 11.66C10.2799 11.37 9.79994 11.37 9.50994 11.66C9.21994 11.95 9.21994 12.43 9.50994 12.72L10.9599 14.17L9.46994 15.66C9.17994 15.95 9.17994 16.43 9.46994 16.72C9.61994 16.87 9.80994 16.94 9.99994 16.94C10.1899 16.94 10.3799 16.87 10.5299 16.72L12.0199 15.23L13.4699 16.68C13.6199 16.83 13.8099 16.9 13.9999 16.9C14.1899 16.9 14.3799 16.83 14.5299 16.68C14.8199 16.39 14.8199 15.92 14.5299 15.62Z" fill="currentColor"/>
5
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14 16.16L10.04 12.2" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M13.96 12.24L10 16.2" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M10 6H14C16 6 16 5 16 4C16 2 15 2 14 2H10C9 2 8 2 8 4C8 6 9 6 10 6Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M16 4.02002C19.33 4.20002 21 5.43002 21 10V16C21 20 20 22 15 22H9C4 22 3 20 3 16V10C3 5.44002 4.67 4.20002 8 4.02002" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </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="M16.24 3.65002H7.76004C5.29004 3.65002 3.29004 5.66002 3.29004 8.12002V17.53C3.29004 19.99 5.30004 22 7.76004 22H16.23C18.7 22 20.7 19.99 20.7 17.53V8.12002C20.71 5.65002 18.7 3.65002 16.24 3.65002Z" fill="currentColor"/>
3
+ <path d="M14.3498 2H9.64977C8.60977 2 7.75977 2.84 7.75977 3.88V4.82C7.75977 5.86 8.59977 6.7 9.63977 6.7H14.3498C15.3898 6.7 16.2298 5.86 16.2298 4.82V3.88C16.2398 2.84 15.3898 2 14.3498 2Z" fill="currentColor"/>
4
+ <path d="M10.81 16.95C10.62 16.95 10.43 16.88 10.28 16.73L8.78 15.23C8.49 14.94 8.49 14.46 8.78 14.17C9.07 13.88 9.55 13.88 9.84 14.17L10.81 15.14L14.28 11.67C14.57 11.38 15.05 11.38 15.34 11.67C15.63 11.96 15.63 12.44 15.34 12.73L11.34 16.73C11.2 16.88 11 16.95 10.81 16.95Z" 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="M9.31006 14.7L10.8101 16.2L14.8101 12.2" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M10 6H14C16 6 16 5 16 4C16 2 15 2 14 2H10C9 2 8 2 8 4C8 6 9 6 10 6Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M16 4.02002C19.33 4.20002 21 5.43002 21 10V16C21 20 20 22 15 22H9C4 22 3 20 3 16V10C3 5.44002 4.67 4.20002 8 4.02002" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </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="M18.63 7.15002C18.67 7.76002 18.62 8.45002 18.5 9.22002L17.77 13.91C17.15 17.82 15.34 19.14 11.43 18.53L6.73999 17.79C5.38999 17.58 4.34999 17.22 3.58999 16.68C2.13999 15.67 1.71999 14.01 2.11999 11.45L2.85999 6.76002C3.47999 2.85002 5.28999 1.53002 9.19999 2.14002L13.89 2.88002C17.03 3.37002 18.5 4.65002 18.63 7.15002Z"
4
+ stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
5
+ <path
6
+ d="M20.4998 13.47L18.9998 17.98C17.7498 21.74 15.7498 22.74 11.9898 21.49L7.47984 19.99C5.20984 19.24 3.94984 18.2 3.58984 16.68C4.34984 17.22 5.38984 17.58 6.73984 17.79L11.4298 18.53C15.3398 19.14 17.1498 17.82 17.7698 13.91L18.4998 9.22002C18.6198 8.45002 18.6698 7.76002 18.6298 7.15002C21.0198 8.42002 21.5398 10.34 20.4998 13.47Z"
7
+ stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
8
+ <path
9
+ d="M8.24 8.98C9.20098 8.98 9.98 8.20098 9.98 7.24C9.98 6.27902 9.20098 5.5 8.24 5.5C7.27902 5.5 6.5 6.27902 6.5 7.24C6.5 8.20098 7.27902 8.98 8.24 8.98Z"
10
+ stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
11
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 2C6.49 2 2 6.49 2 12C2 17.51 6.49 22 12 22C17.51 22 22 17.51 22 12C22 6.49 17.51 2 12 2ZM16.35 15.57C16.21 15.81 15.96 15.94 15.7 15.94C15.57 15.94 15.44 15.91 15.32 15.83L12.22 13.98C11.45 13.52 10.88 12.51 10.88 11.62V7.52C10.88 7.11 11.22 6.77 11.63 6.77C12.04 6.77 12.38 7.11 12.38 7.52V11.62C12.38 11.98 12.68 12.51 12.99 12.69L16.09 14.54C16.45 14.75 16.57 15.21 16.35 15.57Z" 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="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" fill="currentColor"/>
3
+ <path d="M15.71 15.93C15.58 15.93 15.45 15.9 15.33 15.82L12.23 13.97C11.46 13.51 10.89 12.5 10.89 11.61V7.51001C10.89 7.10001 11.23 6.76001 11.64 6.76001C12.05 6.76001 12.39 7.10001 12.39 7.51001V11.61C12.39 11.97 12.69 12.5 13 12.68L16.1 14.53C16.46 14.74 16.57 15.2 16.36 15.56C16.21 15.8 15.96 15.93 15.71 15.93Z" 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="M22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2C17.52 2 22 6.48 22 12Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M15.71 15.18L12.61 13.33C12.07 13.01 11.63 12.24 11.63 11.61V7.51001" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512">
2
+ <path d="M288 448H64V224h64V160H64c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H288v64zm-64-96H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64z"/>
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="M12 2C6.49 2 2 6.49 2 12C2 17.51 6.49 22 12 22C17.51 22 22 17.51 22 12C22 6.49 17.51 2 12 2ZM15.36 14.3C15.65 14.59 15.65 15.07 15.36 15.36C15.21 15.51 15.02 15.58 14.83 15.58C14.64 15.58 14.45 15.51 14.3 15.36L12 13.06L9.7 15.36C9.55 15.51 9.36 15.58 9.17 15.58C8.98 15.58 8.79 15.51 8.64 15.36C8.35 15.07 8.35 14.59 8.64 14.3L10.94 12L8.64 9.7C8.35 9.41 8.35 8.93 8.64 8.64C8.93 8.35 9.41 8.35 9.7 8.64L12 10.94L14.3 8.64C14.59 8.35 15.07 8.35 15.36 8.64C15.65 8.93 15.65 9.41 15.36 9.7L13.06 12L15.36 14.3Z" fill="currentColor"/>
3
+ </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="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"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M13.0599 12.0001L15.3599 9.70011C15.6499 9.41011 15.6499 8.93011 15.3599 8.64011C15.0699 8.35011 14.5899 8.35011 14.2999 8.64011L11.9999 10.9401L9.69986 8.64011C9.40986 8.35011 8.92986 8.35011 8.63986 8.64011C8.34986 8.93011 8.34986 9.41011 8.63986 9.70011L10.9399 12.0001L8.63986 14.3001C8.34986 14.5901 8.34986 15.0701 8.63986 15.3601C8.78986 15.5101 8.97986 15.5801 9.16986 15.5801C9.35986 15.5801 9.54986 15.5101 9.69986 15.3601L11.9999 13.0601L14.2999 15.3601C14.4499 15.5101 14.6399 15.5801 14.8299 15.5801C15.0199 15.5801 15.2099 15.5101 15.3599 15.3601C15.6499 15.0701 15.6499 14.5901 15.3599 14.3001L13.0599 12.0001Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg class="no-color" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.647727" y="0.647727" width="14.7045" height="14.7045" rx="7.35227" fill="#EAECF0"/>
3
+ <path d="M10.5114 6.2442C10.7197 6.03596 10.7197 5.69779 10.5114 5.48955C10.3032 5.28132 9.96502 5.28132 9.75678 5.48955L8.0026 7.24539L6.24676 5.49122C6.03852 5.28298 5.70035 5.28298 5.49211 5.49122C5.28388 5.69945 5.28388 6.03763 5.49211 6.24586L7.24796 8.00004L5.49378 9.75588C5.28554 9.96412 5.28554 10.3023 5.49378 10.5105C5.70202 10.7188 6.04019 10.7188 6.24843 10.5105L8.0026 8.75469L9.75845 10.5089C9.96668 10.7171 10.3049 10.7171 10.5131 10.5089C10.7213 10.3006 10.7213 9.96245 10.5131 9.75422L8.75725 8.00004L10.5114 6.2442Z" fill="#1D2939"/>
4
+ <rect x="0.647727" y="0.647727" width="14.7045" height="14.7045" rx="7.35227" stroke="white" stroke-width="1.29545"/>
5
+ </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 2ZM15.36 14.3C15.65 14.59 15.65 15.07 15.36 15.36C15.21 15.51 15.02 15.58 14.83 15.58C14.64 15.58 14.45 15.51 14.3 15.36L12 13.06L9.7 15.36C9.55 15.51 9.36 15.58 9.17 15.58C8.98 15.58 8.79 15.51 8.64 15.36C8.35 15.07 8.35 14.59 8.64 14.3L10.94 12L8.64 9.7C8.35 9.41 8.35 8.93 8.64 8.64C8.93 8.35 9.41 8.35 9.7 8.64L12 10.94L14.3 8.64C14.59 8.35 15.07 8.35 15.36 8.64C15.65 8.93 15.65 9.41 15.36 9.7L13.06 12L15.36 14.3Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.16992 14.8299L14.8299 9.16992" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M14.8299 14.8299L9.16992 9.16992" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-x"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M18 6l-12 12" /><path d="M6 6l12 12" /></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="M20.61 10.83C19.84 9.90996 18.85 9.30996 17.7 9.04996C17.44 7.88996 16.99 6.88996 16.33 6.05996C16.31 6.02996 16.29 5.99996 16.27 5.97996C14.07 3.31996 10.47 3.32996 8.04001 4.70996C5.96001 5.89996 4.19001 8.40996 5.12001 11.99C2.99001 12.51 2.01001 14.37 2.01001 16.05C2.01001 17.93 3.24001 20.04 5.98001 20.24H16.32C16.33 20.24 16.35 20.24 16.36 20.24C17.78 20.24 19.14 19.71 20.19 18.75C22.7 16.53 22.37 12.91 20.61 10.83Z" fill="currentColor"/>
3
+ <path d="M21.76 8.74001C21.76 9.64001 21.44 10.5 20.86 11.16C20.79 11.05 20.7 10.94 20.61 10.83C19.85 9.92001 18.85 9.30001 17.7 9.05001C17.45 7.89001 16.99 6.90001 16.33 6.07001C16.32 6.04001 16.29 6.01001 16.27 5.99001C16.17 5.87001 16.06 5.76001 15.96 5.65001C16.57 5.23001 17.27 5.01001 18.03 5.01001C20.09 5.01001 21.76 6.68001 21.76 8.74001Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 640 512">
2
+ <path d="M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z"/>
3
+ </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.6" d="M17.79 10.47V12H2V10.47C2 8.15001 3.89 6.26001 6.21 6.26001H13.58C15.9 6.26001 17.79 8.15001 17.79 10.47Z" fill="currentColor"/>
3
+ <path opacity="0.4" d="M17.79 12V17.79C17.79 20.11 15.9 22 13.58 22H6.21C3.89 22 2 20.11 2 17.79V12H17.79Z" fill="currentColor"/>
4
+ <path d="M5.5 5.12012C5.09 5.12012 4.75 4.78012 4.75 4.37012V2.62012C4.75 2.21012 5.09 1.87012 5.5 1.87012C5.91 1.87012 6.25 2.21012 6.25 2.62012V4.37012C6.25 4.79012 5.91 5.12012 5.5 5.12012Z" fill="currentColor"/>
5
+ <path d="M9.5 5.12012C9.09 5.12012 8.75 4.78012 8.75 4.37012V2.62012C8.75 2.21012 9.09 1.87012 9.5 1.87012C9.91 1.87012 10.25 2.21012 10.25 2.62012V4.37012C10.25 4.79012 9.91 5.12012 9.5 5.12012Z" fill="currentColor"/>
6
+ <path d="M13.5 5.12012C13.09 5.12012 12.75 4.78012 12.75 4.37012V2.62012C12.75 2.21012 13.09 1.87012 13.5 1.87012C13.91 1.87012 14.25 2.21012 14.25 2.62012V4.37012C14.25 4.79012 13.91 5.12012 13.5 5.12012Z" fill="currentColor"/>
7
+ <path d="M21.6498 14.3199C21.6498 16.4699 19.9098 18.2099 17.7598 18.2099V10.4199C19.8998 10.4199 21.6498 12.1699 21.6498 14.3199Z" fill="currentColor"/>
8
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 640 512">
2
+ <path d="M308.5 135.3c7.1-6.3 9.9-16.2 6.2-25c-2.3-5.3-4.8-10.5-7.6-15.5L304 89.4c-3-5-6.3-9.9-9.8-14.6c-5.7-7.6-15.7-10.1-24.7-7.1l-28.2 9.3c-10.7-8.8-23-16-36.2-20.9L199 27.1c-1.9-9.3-9.1-16.7-18.5-17.8C173.9 8.4 167.2 8 160.4 8h-.7c-6.8 0-13.5 .4-20.1 1.2c-9.4 1.1-16.6 8.6-18.5 17.8L115 56.1c-13.3 5-25.5 12.1-36.2 20.9L50.5 67.8c-9-3-19-.5-24.7 7.1c-3.5 4.7-6.8 9.6-9.9 14.6l-3 5.3c-2.8 5-5.3 10.2-7.6 15.6c-3.7 8.7-.9 18.6 6.2 25l22.2 19.8C32.6 161.9 32 168.9 32 176s.6 14.1 1.7 20.9L11.5 216.7c-7.1 6.3-9.9 16.2-6.2 25c2.3 5.3 4.8 10.5 7.6 15.6l3 5.2c3 5.1 6.3 9.9 9.9 14.6c5.7 7.6 15.7 10.1 24.7 7.1l28.2-9.3c10.7 8.8 23 16 36.2 20.9l6.1 29.1c1.9 9.3 9.1 16.7 18.5 17.8c6.7 .8 13.5 1.2 20.4 1.2s13.7-.4 20.4-1.2c9.4-1.1 16.6-8.6 18.5-17.8l6.1-29.1c13.3-5 25.5-12.1 36.2-20.9l28.2 9.3c9 3 19 .5 24.7-7.1c3.5-4.7 6.8-9.5 9.8-14.6l3.1-5.4c2.8-5 5.3-10.2 7.6-15.5c3.7-8.7 .9-18.6-6.2-25l-22.2-19.8c1.1-6.8 1.7-13.8 1.7-20.9s-.6-14.1-1.7-20.9l22.2-19.8zM112 176a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM504.7 500.5c6.3 7.1 16.2 9.9 25 6.2c5.3-2.3 10.5-4.8 15.5-7.6l5.4-3.1c5-3 9.9-6.3 14.6-9.8c7.6-5.7 10.1-15.7 7.1-24.7l-9.3-28.2c8.8-10.7 16-23 20.9-36.2l29.1-6.1c9.3-1.9 16.7-9.1 17.8-18.5c.8-6.7 1.2-13.5 1.2-20.4s-.4-13.7-1.2-20.4c-1.1-9.4-8.6-16.6-17.8-18.5L583.9 307c-5-13.3-12.1-25.5-20.9-36.2l9.3-28.2c3-9 .5-19-7.1-24.7c-4.7-3.5-9.6-6.8-14.6-9.9l-5.3-3c-5-2.8-10.2-5.3-15.6-7.6c-8.7-3.7-18.6-.9-25 6.2l-19.8 22.2c-6.8-1.1-13.8-1.7-20.9-1.7s-14.1 .6-20.9 1.7l-19.8-22.2c-6.3-7.1-16.2-9.9-25-6.2c-5.3 2.3-10.5 4.8-15.6 7.6l-5.2 3c-5.1 3-9.9 6.3-14.6 9.9c-7.6 5.7-10.1 15.7-7.1 24.7l9.3 28.2c-8.8 10.7-16 23-20.9 36.2L315.1 313c-9.3 1.9-16.7 9.1-17.8 18.5c-.8 6.7-1.2 13.5-1.2 20.4s.4 13.7 1.2 20.4c1.1 9.4 8.6 16.6 17.8 18.5l29.1 6.1c5 13.3 12.1 25.5 20.9 36.2l-9.3 28.2c-3 9-.5 19 7.1 24.7c4.7 3.5 9.5 6.8 14.6 9.8l5.4 3.1c5 2.8 10.2 5.3 15.5 7.6c8.7 3.7 18.6 .9 25-6.2l19.8-22.2c6.8 1.1 13.8 1.7 20.9 1.7s14.1-.6 20.9-1.7l19.8 22.2zM464 304a48 48 0 1 1 0 96 48 48 0 1 1 0-96z"/>
3
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.6"
3
+ d="M9.66822 16.6758L9.6682 16.6757L9.6642 16.6794C8.86954 17.3991 7.82143 17.8333 6.6665 17.8333C4.18431 17.8333 2.1665 15.8155 2.1665 13.3333C2.1665 11.4136 3.38065 9.76307 5.07694 9.12173C5.76866 10.5059 7.02652 11.5568 8.54985 11.9735C9.01287 12.103 9.4996 12.1666 9.99984 12.1666C10.337 12.1666 10.6679 12.1377 10.9897 12.0793C11.1044 12.4761 11.1665 12.8982 11.1665 13.3333C11.1665 14.6609 10.5894 15.8594 9.66822 16.6758Z"
4
+ fill="currentColor" stroke="currentColor" />
5
+ <path
6
+ d="M14.1853 8.32378L14.1852 8.32398C13.6677 9.62893 12.557 10.6344 11.1849 11.0093L11.1849 11.0093L11.1819 11.0101C10.812 11.1137 10.4159 11.1666 10 11.1666C9.58411 11.1666 9.18802 11.1137 8.81815 11.0101L8.81512 11.0093C7.44296 10.6344 6.33227 9.62893 5.81479 8.32398L5.81471 8.32378C5.61271 7.81504 5.5 7.25259 5.5 6.66663C5.5 4.18443 7.51781 2.16663 10 2.16663C12.4822 2.16663 14.5 4.18443 14.5 6.66663C14.5 7.25259 14.3873 7.81504 14.1853 8.32378Z"
7
+ fill="currentColor" stroke="currentColor" />
8
+ <path opacity="0.4"
9
+ d="M17.8333 13.3333C17.8333 15.8155 15.8155 17.8333 13.3333 17.8333C12.369 17.8333 11.4792 17.5306 10.7492 17.0117C11.6319 16.0401 12.1667 14.7451 12.1667 13.3333C12.1667 12.8061 12.0918 12.2932 11.9528 11.8096C13.2487 11.3166 14.3089 10.3504 14.9229 9.12173C16.6192 9.76307 17.8333 11.4136 17.8333 13.3333Z"
10
+ fill="currentColor" stroke="currentColor" />
11
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13.5 4.1V19.9C13.5 21.4 14.14 22 15.73 22H19.77C21.36 22 22 21.4 22 19.9V4.1C22 2.6 21.36 2 19.77 2H15.73C14.14 2 13.5 2.6 13.5 4.1Z" fill="currentColor"/>
3
+ <path d="M2 4.1V19.9C2 21.4 2.64 22 4.23 22H8.27C9.86 22 10.5 21.4 10.5 19.9V4.1C10.5 2.6 9.86 2 8.27 2H4.23C2.64 2 2 2.6 2 4.1Z" 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="M10.5 19.9V4.1C10.5 2.6 9.86 2 8.27 2H4.23C2.64 2 2 2.6 2 4.1V19.9C2 21.4 2.64 22 4.23 22H8.27C9.86 22 10.5 21.4 10.5 19.9Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M22 19.9V4.1C22 2.6 21.36 2 19.77 2H15.73C14.14 2 13.5 2.6 13.5 4.1V19.9C13.5 21.4 14.14 22 15.73 22H19.77C21.36 22 22 21.4 22 19.9Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.9781 9.71951C10.252 9.71951 9.68909 10.2824 9.69338 11C9.70627 11.7219 10.2906 12.2976 11.0125 12.3019C11.7086 12.3062 12.2715 11.7433 12.2758 11.0472C12.2758 11.0386 12.2758 11.0301 12.2758 11.0215C12.2844 10.3082 11.7172 9.7238 11.0039 9.71521C10.9953 9.71951 10.9867 9.71951 10.9781 9.71951Z" fill="currentColor"/>
3
+ <path opacity="0.4" d="M11 0C4.92422 0 0 4.92422 0 11C0 17.0758 4.92422 22 11 22C17.0758 22 22 17.0758 22 11C22 4.92422 17.0758 0 11 0ZM16.8266 6.20898C15.8898 8.61953 14.9402 11.0215 13.9992 13.4277C13.9047 13.6898 13.7027 13.8918 13.4449 13.9906C11.0344 14.9359 8.61953 15.8855 6.20898 16.8352C6.12734 16.8652 6.0457 16.8867 5.96406 16.9039C5.31953 16.9082 4.95859 16.3539 5.17773 15.7867C5.65039 14.5621 6.13594 13.3418 6.61719 12.1215C7.08125 10.9441 7.54102 9.77109 8.00078 8.58945C8.1082 8.31016 8.28438 8.1125 8.56367 8.00508C10.9613 7.06836 13.359 6.12734 15.7566 5.18203C16.2766 4.97578 16.7578 5.18203 16.8738 5.68047C16.9039 5.85664 16.891 6.04141 16.8266 6.20898Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 448 512">
2
+ <path d="M160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32V64zM32 320c-17.7 0-32 14.3-32 32s14.3 32 32 32H96v64c0 17.7 14.3 32 32 32s32-14.3 32-32V352c0-17.7-14.3-32-32-32H32zM352 64c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V64zM320 320c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320z"/>
3
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2 9V6.5C2 4.01 4.01 2 6.5 2H9" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M15 2H17.5C19.99 2 22 4.01 22 6.5V9" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M22 16V17.5C22 19.99 19.99 22 17.5 22H16" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M9 22H6.5C4.01 22 2 19.99 2 17.5V15" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M17 9.5V14.5C17 16.5 16 17.5 14 17.5H10C8 17.5 7 16.5 7 14.5V9.5C7 7.5 8 6.5 10 6.5H14C16 6.5 17 7.5 17 9.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19 22V11" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M19 7V2" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M12 22V17" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M12 13V2" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M5 22V11" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M5 7V2" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M3 11H7" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <path d="M17 11H21" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path d="M10 13H14" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
11
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M22 5.15V8.85C22 11.1 21.1 12 18.85 12H16.15C13.9 12 13 11.1 13 8.85V5.15C13 2.9 13.9 2 16.15 2H18.85C21.1 2 22 2.9 22 5.15Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M11 15.15V18.85C11 21.1 10.1 22 7.85 22H5.15C2.9 22 2 21.1 2 18.85V15.15C2 12.9 2.9 12 5.15 12H7.85C10.1 12 11 12.9 11 15.15Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M14.78 22C14.51 22 14.26 21.85 14.13 21.62C14 21.38 14 21.1 14.14 20.86L15.11 19.24C15.32 18.88 15.78 18.77 16.14 18.98C16.5 19.19 16.61 19.65 16.4 20.01L16.22 20.31C18.69 19.67 20.51 17.43 20.51 14.77C20.51 14.36 20.85 14.02 21.26 14.02C21.67 14.02 22 14.36 22 14.78C22 18.76 18.76 22 14.78 22Z"
10
+ fill="currentColor" />
11
+ <path
12
+ d="M2.75 9.97C2.34 9.97 2 9.64 2 9.22C2 5.24 5.24 2 9.22 2C9.5 2 9.74 2.15 9.88 2.38C10.01 2.62 10.01 2.9 9.87 3.14L8.9 4.75C8.68 5.11 8.22 5.23 7.87 5.01C7.51 4.8 7.4 4.34 7.61 3.98L7.79 3.68C5.33 4.32 3.5 6.56 3.5 9.22C3.5 9.64 3.16 9.97 2.75 9.97Z"
13
+ fill="currentColor" />
14
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4"
3
+ d="M22 5.15V8.85C22 11.1 21.1 12 18.85 12H16.15C13.9 12 13 11.1 13 8.85V5.15C13 2.9 13.9 2 16.15 2H18.85C21.1 2 22 2.9 22 5.15Z"
4
+ fill="currentColor" />
5
+ <path opacity="0.4"
6
+ d="M11 15.15V18.85C11 21.1 10.1 22 7.85 22H5.15C2.9 22 2 21.1 2 18.85V15.15C2 12.9 2.9 12 5.15 12H7.85C10.1 12 11 12.9 11 15.15Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M14.78 22C14.51 22 14.26 21.85 14.13 21.62C14 21.38 14 21.1 14.14 20.86L15.11 19.24C15.32 18.88 15.78 18.77 16.14 18.98C16.5 19.19 16.61 19.65 16.4 20.01L16.22 20.31C18.69 19.67 20.51 17.43 20.51 14.77C20.51 14.36 20.85 14.02 21.26 14.02C21.67 14.02 22 14.36 22 14.78C22 18.76 18.76 22 14.78 22Z"
10
+ fill="currentColor" />
11
+ <path
12
+ d="M2.75 9.97C2.34 9.97 2 9.64 2 9.22C2 5.24 5.24 2 9.22 2C9.5 2 9.74 2.15 9.88 2.38C10.01 2.62 10.01 2.9 9.87 3.14L8.9 4.75C8.68 5.11 8.22 5.23 7.87 5.01C7.51 4.8 7.4 4.34 7.61 3.98L7.79 3.68C5.33 4.32 3.5 6.56 3.5 9.22C3.5 9.64 3.16 9.97 2.75 9.97Z"
13
+ fill="currentColor" />
14
+ </svg>