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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1123) hide show
  1. package/package.json +3 -2
  2. package/src/Configuration.mdx +36 -0
  3. package/src/Introduction.mdx +36 -0
  4. package/src/assets/fonts/EuclidCircularABold.ttf +0 -0
  5. package/src/assets/fonts/EuclidCircularABold.woff +0 -0
  6. package/src/assets/fonts/EuclidCircularABold.woff2 +0 -0
  7. package/src/assets/fonts/EuclidCircularABoldItalic.ttf +0 -0
  8. package/src/assets/fonts/EuclidCircularAItalic.ttf +0 -0
  9. package/src/assets/fonts/EuclidCircularAItalic.woff +0 -0
  10. package/src/assets/fonts/EuclidCircularAItalic.woff2 +0 -0
  11. package/src/assets/fonts/EuclidCircularALight.ttf +0 -0
  12. package/src/assets/fonts/EuclidCircularALightItalic.ttf +0 -0
  13. package/src/assets/fonts/EuclidCircularAMedium.ttf +0 -0
  14. package/src/assets/fonts/EuclidCircularAMedium.woff +0 -0
  15. package/src/assets/fonts/EuclidCircularAMedium.woff2 +0 -0
  16. package/src/assets/fonts/EuclidCircularAMediumItalic.ttf +0 -0
  17. package/src/assets/fonts/EuclidCircularARegular.ttf +0 -0
  18. package/src/assets/fonts/EuclidCircularARegular.woff +0 -0
  19. package/src/assets/fonts/EuclidCircularARegular.woff2 +0 -0
  20. package/src/assets/fonts/EuclidCircularASemiBold.ttf +0 -0
  21. package/src/assets/fonts/EuclidCircularASemiBold.woff +0 -0
  22. package/src/assets/fonts/EuclidCircularASemiBold.woff2 +0 -0
  23. package/src/assets/fonts/EuclidCircularASemiBoldItalic.ttf +0 -0
  24. package/src/assets/fonts.scss +84 -0
  25. package/src/assets/typography-classes.css +295 -0
  26. package/src/assets/typography.css +412 -0
  27. package/src/components/alert/alert.test.ts +36 -0
  28. package/src/components/alert/index.vue +72 -0
  29. package/src/components/alert/stories/blue.stories.ts +63 -0
  30. package/src/components/alert/stories/constants.ts +60 -0
  31. package/src/components/alert/stories/dark.stories.ts +71 -0
  32. package/src/components/alert/stories/green.stories.ts +41 -0
  33. package/src/components/alert/stories/orange.stories.ts +41 -0
  34. package/src/components/alert/stories/red.stories.ts +41 -0
  35. package/src/components/alert/styles.scss +125 -0
  36. package/src/components/alert/types.ts +15 -0
  37. package/src/components/animation/index.vue +93 -0
  38. package/src/components/animation/stories/animation.stories.ts +31 -0
  39. package/src/components/animation/stories/constants.ts +46 -0
  40. package/src/components/animation/types.ts +13 -0
  41. package/src/components/app-icon/assets/styles.scss +229 -0
  42. package/src/components/app-icon/index.vue +181 -0
  43. package/src/components/app-icon/stories/constants.ts +46 -0
  44. package/src/components/app-icon/stories/default.stories.ts +78 -0
  45. package/src/components/app-icon/types.ts +16 -0
  46. package/src/components/app-track-button/assets/styles.scss +76 -0
  47. package/src/components/app-track-button/index.vue +98 -0
  48. package/src/components/app-track-button/stories/constants.ts +47 -0
  49. package/src/components/app-track-button/stories/default.stories.ts +64 -0
  50. package/src/components/avatar/avatar.test.ts +47 -0
  51. package/src/components/avatar/index.vue +100 -0
  52. package/src/components/avatar/stories/constants.ts +45 -0
  53. package/src/components/avatar/stories/default.stories.ts +20 -0
  54. package/src/components/avatar/styles.scss +116 -0
  55. package/src/components/avatar/types.ts +24 -0
  56. package/src/components/badge/badge.test.ts +97 -0
  57. package/src/components/badge/index.vue +52 -0
  58. package/src/components/badge/stories/basic.stories.ts +54 -0
  59. package/src/components/badge/stories/blue.stories.ts +60 -0
  60. package/src/components/badge/stories/constants.ts +81 -0
  61. package/src/components/badge/stories/dark.stories.ts +54 -0
  62. package/src/components/badge/stories/green.stories.ts +59 -0
  63. package/src/components/badge/stories/orange.stories.ts +59 -0
  64. package/src/components/badge/stories/pink.stories.ts +59 -0
  65. package/src/components/badge/stories/purple.stories.ts +59 -0
  66. package/src/components/badge/stories/red.stories.ts +58 -0
  67. package/src/components/badge/stories/status-example.mdx +14 -0
  68. package/src/components/badge/stories/status.stories.ts +17 -0
  69. package/src/components/badge/stories/teal.stories.ts +58 -0
  70. package/src/components/badge/stories/yellow.stories.ts +59 -0
  71. package/src/components/badge/styles.scss +198 -0
  72. package/src/components/badge/types.ts +43 -0
  73. package/src/components/button/assets/link.scss +72 -0
  74. package/src/components/button/assets/mixins.scss +82 -0
  75. package/src/components/button/assets/regular.scss +188 -0
  76. package/src/components/button/assets/social.scss +98 -0
  77. package/src/components/button/assets/styles.scss +31 -0
  78. package/src/components/button/button.test.ts +126 -0
  79. package/src/components/button/index.vue +107 -0
  80. package/src/components/button/link-button/index.vue +92 -0
  81. package/src/components/button/link-button/stories/constants.ts +67 -0
  82. package/src/components/button/link-button/stories/link.stories.ts +74 -0
  83. package/src/components/button/link-button/types.ts +15 -0
  84. package/src/components/button/social-button/index.vue +88 -0
  85. package/src/components/button/social-button/stories/constants.ts +63 -0
  86. package/src/components/button/social-button/stories/social.stories.ts +109 -0
  87. package/src/components/button/social-button/types.ts +15 -0
  88. package/src/components/button/stories/constants.ts +89 -0
  89. package/src/components/button/stories/filled.stories.ts +113 -0
  90. package/src/components/button/stories/ghost.stories.ts +113 -0
  91. package/src/components/button/stories/lighter.stories.ts +113 -0
  92. package/src/components/button/stories/stroke.stories.ts +113 -0
  93. package/src/components/button/types.ts +52 -0
  94. package/src/components/button/utils.ts +28 -0
  95. package/src/components/card/assets/styles.scss +121 -0
  96. package/src/components/card/index.vue +240 -0
  97. package/src/components/card/stories/constants.ts +111 -0
  98. package/src/components/card/stories/default.stories.ts +130 -0
  99. package/src/components/card/stories/examples.mdx +37 -0
  100. package/src/components/card/stories/footer.stories.ts +122 -0
  101. package/src/components/card/stories/header.stories.ts +129 -0
  102. package/src/components/card/types.ts +21 -0
  103. package/src/components/cascader/assets/styles.scss +162 -0
  104. package/src/components/cascader/cascader.test.ts +163 -0
  105. package/src/components/cascader/components/option.vue +138 -0
  106. package/src/components/cascader/components/options.vue +97 -0
  107. package/src/components/cascader/composables/useCascaderOverflow.ts +35 -0
  108. package/src/components/cascader/composables/usePopoverAttributeWatcher.ts +50 -0
  109. package/src/components/cascader/index.vue +215 -0
  110. package/src/components/cascader/stories/constants.ts +82 -0
  111. package/src/components/cascader/stories/default.stories.ts +161 -0
  112. package/src/components/cascader/stories/options.json +80 -0
  113. package/src/components/cascader/types.ts +17 -0
  114. package/src/components/cascader/utils/index.test.ts +56 -0
  115. package/src/components/cascader/utils/index.ts +66 -0
  116. package/src/components/checkbox/group.vue +64 -0
  117. package/src/components/checkbox/index.vue +58 -0
  118. package/src/components/checkbox/stories/constants.ts +134 -0
  119. package/src/components/checkbox/stories/default.stories.ts +26 -0
  120. package/src/components/checkbox/stories/group.stories.ts +20 -0
  121. package/src/components/checkbox/stories/indeterminate.stories.ts +26 -0
  122. package/src/components/checkbox/styles.scss +221 -0
  123. package/src/components/checkbox/types.ts +6 -0
  124. package/src/components/collapse/assets/styles.scss +25 -0
  125. package/src/components/collapse/collapse.test.ts +86 -0
  126. package/src/components/collapse/components/CollapseContent.vue +11 -0
  127. package/src/components/collapse/components/CollapseHeader.vue +49 -0
  128. package/src/components/collapse/components/CollapseItem.vue +62 -0
  129. package/src/components/collapse/index.vue +119 -0
  130. package/src/components/collapse/stories/constants.ts +141 -0
  131. package/src/components/collapse/stories/default.stories.ts +42 -0
  132. package/src/components/collapse/types.ts +29 -0
  133. package/src/components/content-scroller/assets/styles.scss +111 -0
  134. package/src/components/content-scroller/index.vue +102 -0
  135. package/src/components/content-scroller/stories/constants.ts +47 -0
  136. package/src/components/content-scroller/stories/default.stories.ts +16 -0
  137. package/src/components/content-scroller/types.ts +13 -0
  138. package/src/components/country-radio/assets/styles.scss +30 -0
  139. package/src/components/country-radio/index.vue +66 -0
  140. package/src/components/country-radio/stories/constants.ts +51 -0
  141. package/src/components/country-radio/stories/default.stories.ts +26 -0
  142. package/src/components/country-radio/stories/examples.mdx +29 -0
  143. package/src/components/country-select/assets/styles.scss +48 -0
  144. package/src/components/country-select/components/multiCountrySelect.vue +135 -0
  145. package/src/components/country-select/components/singleCountrySelect.vue +96 -0
  146. package/src/components/country-select/index.vue +87 -0
  147. package/src/components/country-select/stories/constants.ts +46 -0
  148. package/src/components/country-select/stories/countries.json +342 -0
  149. package/src/components/country-select/stories/default.stories.ts +69 -0
  150. package/src/components/country-select/types.ts +5 -0
  151. package/src/components/date-picker/assets/animations.scss +107 -0
  152. package/src/components/date-picker/assets/styles.scss +872 -0
  153. package/src/components/date-picker/index.vue +340 -0
  154. package/src/components/date-picker/stories/constants.ts +95 -0
  155. package/src/components/date-picker/stories/default.stories.ts +108 -0
  156. package/src/components/date-picker/stories/range.stories.ts +137 -0
  157. package/src/components/date-picker/types.ts +19 -0
  158. package/src/components/date-picker-2/assets/calendar.scss +43 -0
  159. package/src/components/date-picker-2/assets/datepicker-menu.scss +242 -0
  160. package/src/components/date-picker-2/assets/input.scss +130 -0
  161. package/src/components/date-picker-2/assets/quarter-picker.scss +44 -0
  162. package/src/components/date-picker-2/assets/selection-overlay.scss +124 -0
  163. package/src/components/date-picker-2/assets/styles.scss +6 -0
  164. package/src/components/date-picker-2/assets/transitions.scss +61 -0
  165. package/src/components/date-picker-2/components/calendarSelect.vue +49 -0
  166. package/src/components/date-picker-2/composables/useDatePickerFormat.ts +80 -0
  167. package/src/components/date-picker-2/composables/utils.ts +49 -0
  168. package/src/components/date-picker-2/date-picker.test.ts +340 -0
  169. package/src/components/date-picker-2/index.vue +302 -0
  170. package/src/components/date-picker-2/stories/constants.ts +116 -0
  171. package/src/components/date-picker-2/stories/default.stories.ts +172 -0
  172. package/src/components/date-picker-2/stories/range.stories.ts +232 -0
  173. package/src/components/date-picker-2/types.ts +256 -0
  174. package/src/components/drawer/assets/styles.scss +163 -0
  175. package/src/components/drawer/drawer.test.ts +188 -0
  176. package/src/components/drawer/index.vue +312 -0
  177. package/src/components/drawer/stories/drawer.stories.ts +489 -0
  178. package/src/components/dropdown/assets/animations.scss +107 -0
  179. package/src/components/dropdown/assets/styles.scss +84 -0
  180. package/src/components/dropdown/index.vue +66 -0
  181. package/src/components/dropdown/stories/constants.ts +108 -0
  182. package/src/components/dropdown/stories/default.stories.ts +44 -0
  183. package/src/components/dropdown/types.ts +17 -0
  184. package/src/components/ellipsis/assets/styles.scss +7 -0
  185. package/src/components/ellipsis/index.vue +141 -0
  186. package/src/components/ellipsis/stories/constants.ts +34 -0
  187. package/src/components/ellipsis/stories/default.stories.ts +25 -0
  188. package/src/components/empty/assets/styles.scss +76 -0
  189. package/src/components/empty/index.vue +54 -0
  190. package/src/components/empty/stories/animation.stories.ts +35 -0
  191. package/src/components/empty/stories/constants.ts +40 -0
  192. package/src/components/empty/stories/default.stories.ts +19 -0
  193. package/src/components/empty/types.ts +24 -0
  194. package/src/components/form/assets/styles.scss +486 -0
  195. package/src/components/form/components/nonHSFormsIgnore.vue +15 -0
  196. package/src/components/form/index.vue +51 -0
  197. package/src/components/form/stories/constants.ts +20 -0
  198. package/src/components/form/stories/default.stories.ts +240 -0
  199. package/src/components/form/types.ts +7 -0
  200. package/src/components/form-item/index.vue +20 -0
  201. package/src/components/icon/components/flagIcon.vue +84 -0
  202. package/src/components/icon/components/maIcon.vue +47 -0
  203. package/src/components/icon/composables/useUniqueIds.ts +62 -0
  204. package/src/components/icon/flags.json +230 -0
  205. package/src/components/icon/icon.test.ts +89 -0
  206. package/src/components/icon/icons/403.svg +29 -0
  207. package/src/components/icon/icons/404.svg +28 -0
  208. package/src/components/icon/icons/500.svg +29 -0
  209. package/src/components/icon/icons/activity-bulk.svg +8 -0
  210. package/src/components/icon/icons/add-app.svg +81 -0
  211. package/src/components/icon/icons/add-bold.svg +3 -0
  212. package/src/components/icon/icons/add-bulk.svg +8 -0
  213. package/src/components/icon/icons/add-button.svg +5 -0
  214. package/src/components/icon/icons/add-circle-bold.svg +3 -0
  215. package/src/components/icon/icons/add-circle-bulk.svg +8 -0
  216. package/src/components/icon/icons/add-circle.svg +8 -0
  217. package/src/components/icon/icons/add-square-bold.svg +3 -0
  218. package/src/components/icon/icons/add-square.svg +5 -0
  219. package/src/components/icon/icons/add.svg +4 -0
  220. package/src/components/icon/icons/aim-outlined.svg +1 -0
  221. package/src/components/icon/icons/airplane-bulk.svg +4 -0
  222. package/src/components/icon/icons/align-left-bold.svg +11 -0
  223. package/src/components/icon/icons/align-left-bulk.svg +11 -0
  224. package/src/components/icon/icons/align-left.svg +10 -0
  225. package/src/components/icon/icons/android-storefront.svg +8 -0
  226. package/src/components/icon/icons/android.svg +6 -0
  227. package/src/components/icon/icons/angle-double-right.svg +5 -0
  228. package/src/components/icon/icons/app-store-colorful.svg +21 -0
  229. package/src/components/icon/icons/app-store.svg +3 -0
  230. package/src/components/icon/icons/app.svg +5 -0
  231. package/src/components/icon/icons/apple-bold.svg +5 -0
  232. package/src/components/icon/icons/apple-storefront.svg +5 -0
  233. package/src/components/icon/icons/apple-vision-pro.svg +16 -0
  234. package/src/components/icon/icons/apple.svg +3 -0
  235. package/src/components/icon/icons/arcade-bulk.svg +9 -0
  236. package/src/components/icon/icons/area-chart-outlined.svg +3 -0
  237. package/src/components/icon/icons/arrow-down-bold.svg +3 -0
  238. package/src/components/icon/icons/arrow-down-circle-bold.svg +3 -0
  239. package/src/components/icon/icons/arrow-down-circle.svg +4 -0
  240. package/src/components/icon/icons/arrow-down.svg +4 -0
  241. package/src/components/icon/icons/arrow-left-bold.svg +3 -0
  242. package/src/components/icon/icons/arrow-left-bulk.svg +7 -0
  243. package/src/components/icon/icons/arrow-left-circle-bold.svg +3 -0
  244. package/src/components/icon/icons/arrow-left-circle.svg +4 -0
  245. package/src/components/icon/icons/arrow-left-down-line.svg +3 -0
  246. package/src/components/icon/icons/arrow-left.svg +4 -0
  247. package/src/components/icon/icons/arrow-right-bold.svg +3 -0
  248. package/src/components/icon/icons/arrow-right-bulk.svg +7 -0
  249. package/src/components/icon/icons/arrow-right-circle-bold.svg +3 -0
  250. package/src/components/icon/icons/arrow-right-circle.svg +4 -0
  251. package/src/components/icon/icons/arrow-right-up-line.svg +3 -0
  252. package/src/components/icon/icons/arrow-right.svg +4 -0
  253. package/src/components/icon/icons/arrow-up-bold.svg +3 -0
  254. package/src/components/icon/icons/arrow-up-circle-bold.svg +3 -0
  255. package/src/components/icon/icons/arrow-up-circle.svg +4 -0
  256. package/src/components/icon/icons/arrow-up.svg +4 -0
  257. package/src/components/icon/icons/asterisk.svg +3 -0
  258. package/src/components/icon/icons/bag-bulk.svg +4 -0
  259. package/src/components/icon/icons/bahai.svg +3 -0
  260. package/src/components/icon/icons/book-bulk.svg +6 -0
  261. package/src/components/icon/icons/book-closed-bulk.svg +6 -0
  262. package/src/components/icon/icons/book-saved-bulk.svg +5 -0
  263. package/src/components/icon/icons/book-square-bulk.svg +5 -0
  264. package/src/components/icon/icons/bookmark-bold.svg +4 -0
  265. package/src/components/icon/icons/bookmark-bulk.svg +4 -0
  266. package/src/components/icon/icons/bookmark.svg +6 -0
  267. package/src/components/icon/icons/box-empty.svg +12 -0
  268. package/src/components/icon/icons/brain.svg +3 -0
  269. package/src/components/icon/icons/broom-bold.svg +4 -0
  270. package/src/components/icon/icons/broom.svg +8 -0
  271. package/src/components/icon/icons/brush-bulk.svg +5 -0
  272. package/src/components/icon/icons/bubble-bulk.svg +5 -0
  273. package/src/components/icon/icons/bucket-bulk.svg +6 -0
  274. package/src/components/icon/icons/bullhorn.svg +3 -0
  275. package/src/components/icon/icons/bus-bulk.svg +7 -0
  276. package/src/components/icon/icons/buy-crypto.svg +11 -0
  277. package/src/components/icon/icons/calendar-alt.svg +3 -0
  278. package/src/components/icon/icons/calendar-bold.svg +4 -0
  279. package/src/components/icon/icons/calendar-bulk.svg +10 -0
  280. package/src/components/icon/icons/calendar.svg +12 -0
  281. package/src/components/icon/icons/camera-bulk.svg +5 -0
  282. package/src/components/icon/icons/car-bulk.svg +6 -0
  283. package/src/components/icon/icons/card-bold.svg +4 -0
  284. package/src/components/icon/icons/card-bulk.svg +14 -0
  285. package/src/components/icon/icons/card.svg +6 -0
  286. package/src/components/icon/icons/caret-down-bold.svg +3 -0
  287. package/src/components/icon/icons/caret-down.svg +3 -0
  288. package/src/components/icon/icons/caret-left-bold.svg +3 -0
  289. package/src/components/icon/icons/caret-left.svg +3 -0
  290. package/src/components/icon/icons/caret-right-bold.svg +3 -0
  291. package/src/components/icon/icons/caret-right.svg +3 -0
  292. package/src/components/icon/icons/caret-up-bold.svg +3 -0
  293. package/src/components/icon/icons/caret-up.svg +3 -0
  294. package/src/components/icon/icons/casino-bulk.svg +4 -0
  295. package/src/components/icon/icons/category-bold.svg +14 -0
  296. package/src/components/icon/icons/category.svg +15 -0
  297. package/src/components/icon/icons/certificate.svg +3 -0
  298. package/src/components/icon/icons/chart-2-bulk.svg +11 -0
  299. package/src/components/icon/icons/chart-2.svg +5 -0
  300. package/src/components/icon/icons/chart-area.svg +3 -0
  301. package/src/components/icon/icons/chart-bar.svg +3 -0
  302. package/src/components/icon/icons/chart-bold.svg +6 -0
  303. package/src/components/icon/icons/chart-bulk.svg +12 -0
  304. package/src/components/icon/icons/chart.svg +6 -0
  305. package/src/components/icon/icons/check-line.svg +3 -0
  306. package/src/components/icon/icons/check.svg +3 -0
  307. package/src/components/icon/icons/checkered-flag.svg +3 -0
  308. package/src/components/icon/icons/chef-bulk.svg +4 -0
  309. package/src/components/icon/icons/chess-bulk.svg +8 -0
  310. package/src/components/icon/icons/chevron-down.svg +4 -0
  311. package/src/components/icon/icons/chevron-left.svg +4 -0
  312. package/src/components/icon/icons/chevron-right.svg +4 -0
  313. package/src/components/icon/icons/chevron-up.svg +4 -0
  314. package/src/components/icon/icons/chevrons-down.svg +4 -0
  315. package/src/components/icon/icons/chevrons-left.svg +4 -0
  316. package/src/components/icon/icons/chevrons-right.svg +4 -0
  317. package/src/components/icon/icons/chevrons-up.svg +4 -0
  318. package/src/components/icon/icons/circle-exclamation.svg +3 -0
  319. package/src/components/icon/icons/circle-notch.svg +3 -0
  320. package/src/components/icon/icons/circle.svg +3 -0
  321. package/src/components/icon/icons/clipboard-bold.svg +8 -0
  322. package/src/components/icon/icons/clipboard-bulk.svg +11 -0
  323. package/src/components/icon/icons/clipboard-close-bulk.svg +5 -0
  324. package/src/components/icon/icons/clipboard-close.svg +6 -0
  325. package/src/components/icon/icons/clipboard-tick-bulk.svg +5 -0
  326. package/src/components/icon/icons/clipboard-tick.svg +5 -0
  327. package/src/components/icon/icons/clipboard.svg +11 -0
  328. package/src/components/icon/icons/clock-bold.svg +3 -0
  329. package/src/components/icon/icons/clock-bulk.svg +4 -0
  330. package/src/components/icon/icons/clock.svg +4 -0
  331. package/src/components/icon/icons/clone.svg +3 -0
  332. package/src/components/icon/icons/close-circle-bold.svg +3 -0
  333. package/src/components/icon/icons/close-circle-bulk.svg +8 -0
  334. package/src/components/icon/icons/close-circle.svg +5 -0
  335. package/src/components/icon/icons/close-square-bold.svg +3 -0
  336. package/src/components/icon/icons/close-square.svg +5 -0
  337. package/src/components/icon/icons/close.svg +1 -0
  338. package/src/components/icon/icons/cloud-sunny-bulk.svg +4 -0
  339. package/src/components/icon/icons/cloud-upload.svg +3 -0
  340. package/src/components/icon/icons/coffee-bulk.svg +8 -0
  341. package/src/components/icon/icons/cogs.svg +3 -0
  342. package/src/components/icon/icons/color-filter.svg +11 -0
  343. package/src/components/icon/icons/columns-bold.svg +4 -0
  344. package/src/components/icon/icons/columns.svg +4 -0
  345. package/src/components/icon/icons/compass-bulk.svg +4 -0
  346. package/src/components/icon/icons/compress.svg +3 -0
  347. package/src/components/icon/icons/contains-linear.svg +7 -0
  348. package/src/components/icon/icons/control.svg +11 -0
  349. package/src/components/icon/icons/convert-shape-bold.svg +14 -0
  350. package/src/components/icon/icons/convert-shape-bulk.svg +14 -0
  351. package/src/components/icon/icons/convert-shape.svg +12 -0
  352. package/src/components/icon/icons/copy-bold.svg +4 -0
  353. package/src/components/icon/icons/copy-bulk.svg +8 -0
  354. package/src/components/icon/icons/copy.svg +4 -0
  355. package/src/components/icon/icons/crosshairs.svg +3 -0
  356. package/src/components/icon/icons/crown-bold.svg +3 -0
  357. package/src/components/icon/icons/crown.svg +4 -0
  358. package/src/components/icon/icons/cup-bold.svg +8 -0
  359. package/src/components/icon/icons/cup-bulk.svg +17 -0
  360. package/src/components/icon/icons/cup.svg +18 -0
  361. package/src/components/icon/icons/danger-bold.svg +3 -0
  362. package/src/components/icon/icons/danger-bulk.svg +5 -0
  363. package/src/components/icon/icons/danger.svg +5 -0
  364. package/src/components/icon/icons/dashboard.svg +3 -0
  365. package/src/components/icon/icons/data-bold.svg +17 -0
  366. package/src/components/icon/icons/data-bulk.svg +17 -0
  367. package/src/components/icon/icons/data.svg +18 -0
  368. package/src/components/icon/icons/devices.svg +11 -0
  369. package/src/components/icon/icons/diagram.svg +4 -0
  370. package/src/components/icon/icons/direct-inbox-bold.svg +10 -0
  371. package/src/components/icon/icons/direct-inbox-bulk.svg +11 -0
  372. package/src/components/icon/icons/direct-inbox.svg +12 -0
  373. package/src/components/icon/icons/direct-normal-bulk.svg +4 -0
  374. package/src/components/icon/icons/direct-normal.svg +4 -0
  375. package/src/components/icon/icons/dislike-bold.svg +4 -0
  376. package/src/components/icon/icons/dislike.svg +4 -0
  377. package/src/components/icon/icons/document-bold.svg +4 -0
  378. package/src/components/icon/icons/document-bulk.svg +14 -0
  379. package/src/components/icon/icons/document.svg +6 -0
  380. package/src/components/icon/icons/dollar-circle.svg +5 -0
  381. package/src/components/icon/icons/dot.svg +3 -0
  382. package/src/components/icon/icons/download-bold.svg +8 -0
  383. package/src/components/icon/icons/download-bulk.svg +11 -0
  384. package/src/components/icon/icons/download.svg +6 -0
  385. package/src/components/icon/icons/drag.svg +8 -0
  386. package/src/components/icon/icons/driving-bulk.svg +10 -0
  387. package/src/components/icon/icons/edit-2-bold.svg +11 -0
  388. package/src/components/icon/icons/edit-2-bulk.svg +5 -0
  389. package/src/components/icon/icons/edit-2.svg +5 -0
  390. package/src/components/icon/icons/edit-bold.svg +3 -0
  391. package/src/components/icon/icons/edit.svg +5 -0
  392. package/src/components/icon/icons/element-2-bulk.svg +6 -0
  393. package/src/components/icon/icons/element-3-bulk.svg +5 -0
  394. package/src/components/icon/icons/element-bulk.svg +6 -0
  395. package/src/components/icon/icons/element-plus-bold.svg +14 -0
  396. package/src/components/icon/icons/element-plus.svg +13 -0
  397. package/src/components/icon/icons/ellipsis-horizontal.svg +3 -0
  398. package/src/components/icon/icons/ellipsis-vertical.svg +3 -0
  399. package/src/components/icon/icons/empty-table.svg +31 -0
  400. package/src/components/icon/icons/equal.svg +4 -0
  401. package/src/components/icon/icons/expand-left-line.svg +5 -0
  402. package/src/components/icon/icons/expand-right-line.svg +5 -0
  403. package/src/components/icon/icons/expand.svg +6 -0
  404. package/src/components/icon/icons/export-2-bold.svg +8 -0
  405. package/src/components/icon/icons/export-2-bulk.svg +8 -0
  406. package/src/components/icon/icons/export-2.svg +9 -0
  407. package/src/components/icon/icons/export-bold.svg +3 -0
  408. package/src/components/icon/icons/export-bulk.svg +4 -0
  409. package/src/components/icon/icons/export.svg +5 -0
  410. package/src/components/icon/icons/eye-bold.svg +4 -0
  411. package/src/components/icon/icons/eye-bulk.svg +8 -0
  412. package/src/components/icon/icons/eye-slash-bold.svg +7 -0
  413. package/src/components/icon/icons/eye-slash.svg +8 -0
  414. package/src/components/icon/icons/eye.svg +4 -0
  415. package/src/components/icon/icons/facebook.svg +4 -0
  416. package/src/components/icon/icons/fatrows-bold.svg +8 -0
  417. package/src/components/icon/icons/fatrows-bulk.svg +8 -0
  418. package/src/components/icon/icons/fatrows.svg +8 -0
  419. package/src/components/icon/icons/favorite-chart-bold.svg +4 -0
  420. package/src/components/icon/icons/favorite-chart-bulk.svg +5 -0
  421. package/src/components/icon/icons/favorite-chart.svg +5 -0
  422. package/src/components/icon/icons/file-pdf.svg +3 -0
  423. package/src/components/icon/icons/filled-flag.svg +3 -0
  424. package/src/components/icon/icons/filter-bold.svg +4 -0
  425. package/src/components/icon/icons/filter-bulk.svg +8 -0
  426. package/src/components/icon/icons/filter.svg +4 -0
  427. package/src/components/icon/icons/flag.svg +4 -0
  428. package/src/components/icon/icons/flash-circle-bold.svg +5 -0
  429. package/src/components/icon/icons/flash-circle-bulk.svg +8 -0
  430. package/src/components/icon/icons/flash-circle.svg +10 -0
  431. package/src/components/icon/icons/flash.svg +5 -0
  432. package/src/components/icon/icons/folder-open-bold.svg +4 -0
  433. package/src/components/icon/icons/folder-open.svg +5 -0
  434. package/src/components/icon/icons/folder.svg +5 -0
  435. package/src/components/icon/icons/font.svg +3 -0
  436. package/src/components/icon/icons/gallery-bulk.svg +5 -0
  437. package/src/components/icon/icons/game-bulk.svg +9 -0
  438. package/src/components/icon/icons/glass-bold.svg +8 -0
  439. package/src/components/icon/icons/glass-bulk.svg +8 -0
  440. package/src/components/icon/icons/glass.svg +8 -0
  441. package/src/components/icon/icons/global.svg +7 -0
  442. package/src/components/icon/icons/google-colored.svg +12 -0
  443. package/src/components/icon/icons/google.svg +6 -0
  444. package/src/components/icon/icons/gps-linear.svg +8 -0
  445. package/src/components/icon/icons/graduation-cap-bold.svg +4 -0
  446. package/src/components/icon/icons/graduation-cap.svg +5 -0
  447. package/src/components/icon/icons/graph-bold.svg +4 -0
  448. package/src/components/icon/icons/graph.svg +4 -0
  449. package/src/components/icon/icons/grid-2.svg +6 -0
  450. package/src/components/icon/icons/grid-bold.svg +6 -0
  451. package/src/components/icon/icons/grid-bulk.svg +14 -0
  452. package/src/components/icon/icons/grid.svg +6 -0
  453. package/src/components/icon/icons/hamburger.svg +5 -0
  454. package/src/components/icon/icons/headset.svg +3 -0
  455. package/src/components/icon/icons/health-bulk.svg +5 -0
  456. package/src/components/icon/icons/history.svg +3 -0
  457. package/src/components/icon/icons/home-bold.svg +3 -0
  458. package/src/components/icon/icons/home-bulk.svg +8 -0
  459. package/src/components/icon/icons/home.svg +4 -0
  460. package/src/components/icon/icons/hospital-bulk.svg +6 -0
  461. package/src/components/icon/icons/house-bulk.svg +8 -0
  462. package/src/components/icon/icons/import-bold.svg +4 -0
  463. package/src/components/icon/icons/import.svg +11 -0
  464. package/src/components/icon/icons/in-range-bold.svg +5 -0
  465. package/src/components/icon/icons/in-range.svg +5 -0
  466. package/src/components/icon/icons/indent.svg +3 -0
  467. package/src/components/icon/icons/info-circle-2-bold.svg +5 -0
  468. package/src/components/icon/icons/info-circle-2-bulk.svg +11 -0
  469. package/src/components/icon/icons/info-circle-2.svg +9 -0
  470. package/src/components/icon/icons/info-circle-bold.svg +3 -0
  471. package/src/components/icon/icons/info-circle.svg +8 -0
  472. package/src/components/icon/icons/info.svg +3 -0
  473. package/src/components/icon/icons/ipad.svg +4 -0
  474. package/src/components/icon/icons/iphone.svg +3 -0
  475. package/src/components/icon/icons/judge-outline.svg +6 -0
  476. package/src/components/icon/icons/justify-right.svg +10 -0
  477. package/src/components/icon/icons/key.svg +5 -0
  478. package/src/components/icon/icons/lamp-charge-bulk.svg +5 -0
  479. package/src/components/icon/icons/lamp-charge.svg +5 -0
  480. package/src/components/icon/icons/layer-bold.svg +5 -0
  481. package/src/components/icon/icons/layer-bulk.svg +11 -0
  482. package/src/components/icon/icons/layer.svg +5 -0
  483. package/src/components/icon/icons/level-linear.svg +5 -0
  484. package/src/components/icon/icons/like-bold.svg +4 -0
  485. package/src/components/icon/icons/like.svg +4 -0
  486. package/src/components/icon/icons/link.svg +4 -0
  487. package/src/components/icon/icons/linkedin.svg +5 -0
  488. package/src/components/icon/icons/list.svg +3 -0
  489. package/src/components/icon/icons/loader.svg +10 -0
  490. package/src/components/icon/icons/loading.svg +3 -0
  491. package/src/components/icon/icons/location-bulk.svg +4 -0
  492. package/src/components/icon/icons/location.svg +8 -0
  493. package/src/components/icon/icons/lock-bold.svg +4 -0
  494. package/src/components/icon/icons/lock-bulk.svg +11 -0
  495. package/src/components/icon/icons/lock-slash-bulk.svg +7 -0
  496. package/src/components/icon/icons/lock-slash.svg +6 -0
  497. package/src/components/icon/icons/lock.svg +5 -0
  498. package/src/components/icon/icons/logout-bold.svg +4 -0
  499. package/src/components/icon/icons/logout.svg +5 -0
  500. package/src/components/icon/icons/lovely-bulk.svg +4 -0
  501. package/src/components/icon/icons/magic-pen-bold.svg +17 -0
  502. package/src/components/icon/icons/magic-pen.svg +13 -0
  503. package/src/components/icon/icons/map-bulk.svg +5 -0
  504. package/src/components/icon/icons/map-marker-bold.svg +3 -0
  505. package/src/components/icon/icons/map-marker.svg +4 -0
  506. package/src/components/icon/icons/maximize-linear.svg +6 -0
  507. package/src/components/icon/icons/med-kit.svg +3 -0
  508. package/src/components/icon/icons/medal-bold.svg +4 -0
  509. package/src/components/icon/icons/medal.svg +4 -0
  510. package/src/components/icon/icons/menu-bold.svg +3 -0
  511. package/src/components/icon/icons/menu.svg +5 -0
  512. package/src/components/icon/icons/message-bold.svg +5 -0
  513. package/src/components/icon/icons/message-bulk.svg +14 -0
  514. package/src/components/icon/icons/message-notif.svg +7 -0
  515. package/src/components/icon/icons/message-text.svg +5 -0
  516. package/src/components/icon/icons/message.svg +12 -0
  517. package/src/components/icon/icons/messages-2-bulk.svg +5 -0
  518. package/src/components/icon/icons/messages-bold.svg +8 -0
  519. package/src/components/icon/icons/messages-bulk.svg +8 -0
  520. package/src/components/icon/icons/messages.svg +8 -0
  521. package/src/components/icon/icons/microscope-bold.svg +14 -0
  522. package/src/components/icon/icons/microscope-bulk.svg +14 -0
  523. package/src/components/icon/icons/microscope.svg +14 -0
  524. package/src/components/icon/icons/milk-bulk.svg +5 -0
  525. package/src/components/icon/icons/minus-bold.svg +3 -0
  526. package/src/components/icon/icons/minus-square-bold.svg +3 -0
  527. package/src/components/icon/icons/minus-square.svg +4 -0
  528. package/src/components/icon/icons/minus.svg +3 -0
  529. package/src/components/icon/icons/mobile-action.svg +37 -0
  530. package/src/components/icon/icons/mobile-bold.svg +3 -0
  531. package/src/components/icon/icons/mobile-bulk.svg +11 -0
  532. package/src/components/icon/icons/mobile.svg +5 -0
  533. package/src/components/icon/icons/money-bill.svg +8 -0
  534. package/src/components/icon/icons/money-send.svg +11 -0
  535. package/src/components/icon/icons/moneys-bold.svg +8 -0
  536. package/src/components/icon/icons/moneys-bulk.svg +17 -0
  537. package/src/components/icon/icons/moneys.svg +18 -0
  538. package/src/components/icon/icons/more-bold.svg +3 -0
  539. package/src/components/icon/icons/more-bulk.svg +6 -0
  540. package/src/components/icon/icons/more-circle.svg +6 -0
  541. package/src/components/icon/icons/more-vertical.svg +3 -0
  542. package/src/components/icon/icons/more.svg +5 -0
  543. package/src/components/icon/icons/mouse-square-bold.svg +8 -0
  544. package/src/components/icon/icons/mouse-square-bulk.svg +8 -0
  545. package/src/components/icon/icons/mouse-square.svg +7 -0
  546. package/src/components/icon/icons/music-bulk.svg +5 -0
  547. package/src/components/icon/icons/musicnote-bulk.svg +4 -0
  548. package/src/components/icon/icons/not-contains-linear.svg +8 -0
  549. package/src/components/icon/icons/not-equal.svg +5 -0
  550. package/src/components/icon/icons/not-in-range.svg +6 -0
  551. package/src/components/icon/icons/notification-bold.svg +4 -0
  552. package/src/components/icon/icons/notification.svg +5 -0
  553. package/src/components/icon/icons/outdent.svg +3 -0
  554. package/src/components/icon/icons/outline-linear.svg +5 -0
  555. package/src/components/icon/icons/outline-lock-bulk.svg +5 -0
  556. package/src/components/icon/icons/outline-lock.svg +5 -0
  557. package/src/components/icon/icons/paper-plane.svg +3 -0
  558. package/src/components/icon/icons/parenting-bulk.svg +164 -0
  559. package/src/components/icon/icons/password-check.svg +7 -0
  560. package/src/components/icon/icons/pause-bold.svg +4 -0
  561. package/src/components/icon/icons/pause-circle-bold.svg +3 -0
  562. package/src/components/icon/icons/pause-circle-bulk.svg +5 -0
  563. package/src/components/icon/icons/pause-circle.svg +5 -0
  564. package/src/components/icon/icons/pause.svg +4 -0
  565. package/src/components/icon/icons/pay/affirm.svg +6 -0
  566. package/src/components/icon/icons/pay/alipay.svg +8 -0
  567. package/src/components/icon/icons/pay/amazon.svg +6 -0
  568. package/src/components/icon/icons/pay/amex-2.svg +7 -0
  569. package/src/components/icon/icons/pay/amex.svg +5 -0
  570. package/src/components/icon/icons/pay/applepay.svg +5 -0
  571. package/src/components/icon/icons/pay/bancontact.svg +7 -0
  572. package/src/components/icon/icons/pay/bitcoin.svg +5 -0
  573. package/src/components/icon/icons/pay/bitcoincash.svg +5 -0
  574. package/src/components/icon/icons/pay/bitpay.svg +5 -0
  575. package/src/components/icon/icons/pay/citadele.svg +5 -0
  576. package/src/components/icon/icons/pay/dinersclub.svg +5 -0
  577. package/src/components/icon/icons/pay/discover.svg +7 -0
  578. package/src/components/icon/icons/pay/elo.svg +8 -0
  579. package/src/components/icon/icons/pay/etherium.svg +11 -0
  580. package/src/components/icon/icons/pay/forbrugsforeningen.svg +5 -0
  581. package/src/components/icon/icons/pay/giropay.svg +7 -0
  582. package/src/components/icon/icons/pay/googlepay.svg +9 -0
  583. package/src/components/icon/icons/pay/ideal.svg +6 -0
  584. package/src/components/icon/icons/pay/interac.svg +7 -0
  585. package/src/components/icon/icons/pay/jcb.svg +21 -0
  586. package/src/components/icon/icons/pay/klarna.svg +5 -0
  587. package/src/components/icon/icons/pay/lightcoin.svg +5 -0
  588. package/src/components/icon/icons/pay/maestro-2.svg +5 -0
  589. package/src/components/icon/icons/pay/maestro.svg +7 -0
  590. package/src/components/icon/icons/pay/mastercard-2.svg +5 -0
  591. package/src/components/icon/icons/pay/mastercard.svg +7 -0
  592. package/src/components/icon/icons/pay/payoneer.svg +6 -0
  593. package/src/components/icon/icons/pay/paypal.svg +8 -0
  594. package/src/components/icon/icons/pay/paysafe.svg +7 -0
  595. package/src/components/icon/icons/pay/qiwi.svg +5 -0
  596. package/src/components/icon/icons/pay/quickbooks.svg +9 -0
  597. package/src/components/icon/icons/pay/sepa.svg +6 -0
  598. package/src/components/icon/icons/pay/shop-pay.svg +5 -0
  599. package/src/components/icon/icons/pay/skrill.svg +5 -0
  600. package/src/components/icon/icons/pay/sofort.svg +5 -0
  601. package/src/components/icon/icons/pay/stripe-2.svg +30 -0
  602. package/src/components/icon/icons/pay/stripe.svg +5 -0
  603. package/src/components/icon/icons/pay/unionpay.svg +8 -0
  604. package/src/components/icon/icons/pay/verifone.svg +6 -0
  605. package/src/components/icon/icons/pay/visa-2.svg +4 -0
  606. package/src/components/icon/icons/pay/visa.svg +5 -0
  607. package/src/components/icon/icons/pay/webmoney.svg +5 -0
  608. package/src/components/icon/icons/pay/wechat.svg +5 -0
  609. package/src/components/icon/icons/pay/yandex.svg +5 -0
  610. package/src/components/icon/icons/pen-square.svg +5 -0
  611. package/src/components/icon/icons/pencil.svg +3 -0
  612. package/src/components/icon/icons/people-bold.svg +8 -0
  613. package/src/components/icon/icons/people-bulk.svg +8 -0
  614. package/src/components/icon/icons/people.svg +8 -0
  615. package/src/components/icon/icons/percentage-square-bold.svg +3 -0
  616. package/src/components/icon/icons/percentage-square.svg +6 -0
  617. package/src/components/icon/icons/play-bold.svg +3 -0
  618. package/src/components/icon/icons/play-bulk.svg +4 -0
  619. package/src/components/icon/icons/play-circle-bold.svg +7 -0
  620. package/src/components/icon/icons/play-circle.svg +7 -0
  621. package/src/components/icon/icons/play-store-colorful.svg +14 -0
  622. package/src/components/icon/icons/play.svg +4 -0
  623. package/src/components/icon/icons/plug-bold.svg +5 -0
  624. package/src/components/icon/icons/plug.svg +11 -0
  625. package/src/components/icon/icons/poker-cards-bulk.svg +11 -0
  626. package/src/components/icon/icons/presentation-chart-bulk.svg +13 -0
  627. package/src/components/icon/icons/profile-2user-colored-bulk.svg +16 -0
  628. package/src/components/icon/icons/programming-arrows-bulk.svg +14 -0
  629. package/src/components/icon/icons/project-bold.svg +3 -0
  630. package/src/components/icon/icons/puzzle-bulk.svg +17 -0
  631. package/src/components/icon/icons/question-bold.svg +3 -0
  632. package/src/components/icon/icons/question.svg +5 -0
  633. package/src/components/icon/icons/radar-bold.svg +12 -0
  634. package/src/components/icon/icons/radar-bulk.svg +8 -0
  635. package/src/components/icon/icons/radar.svg +10 -0
  636. package/src/components/icon/icons/rank-bold.svg +14 -0
  637. package/src/components/icon/icons/rank-bulk.svg +11 -0
  638. package/src/components/icon/icons/rank.svg +14 -0
  639. package/src/components/icon/icons/ranking-bold.svg +14 -0
  640. package/src/components/icon/icons/ranking-bulk.svg +14 -0
  641. package/src/components/icon/icons/ranking.svg +11 -0
  642. package/src/components/icon/icons/record-circle.svg +3 -0
  643. package/src/components/icon/icons/redo-bold.svg +3 -0
  644. package/src/components/icon/icons/redo.svg +4 -0
  645. package/src/components/icon/icons/refresh-2.svg +3 -0
  646. package/src/components/icon/icons/refresh.svg +4 -0
  647. package/src/components/icon/icons/reply.svg +3 -0
  648. package/src/components/icon/icons/rocket-bulk.svg +11 -0
  649. package/src/components/icon/icons/rocket.svg +12 -0
  650. package/src/components/icon/icons/rotate-left.svg +5 -0
  651. package/src/components/icon/icons/rotate-right.svg +5 -0
  652. package/src/components/icon/icons/save-bold.svg +8 -0
  653. package/src/components/icon/icons/save.svg +11 -0
  654. package/src/components/icon/icons/scale-balanced.svg +3 -0
  655. package/src/components/icon/icons/search-2-line.svg +5 -0
  656. package/src/components/icon/icons/search-dollar.svg +3 -0
  657. package/src/components/icon/icons/search-normal-bold.svg +4 -0
  658. package/src/components/icon/icons/search-normal.svg +4 -0
  659. package/src/components/icon/icons/search-zoom-in-bold.svg +8 -0
  660. package/src/components/icon/icons/search-zoom-in-bulk.svg +11 -0
  661. package/src/components/icon/icons/search-zoom-in.svg +11 -0
  662. package/src/components/icon/icons/security-card-bold.svg +5 -0
  663. package/src/components/icon/icons/security-card.svg +7 -0
  664. package/src/components/icon/icons/selection.svg +48 -0
  665. package/src/components/icon/icons/send.svg +5 -0
  666. package/src/components/icon/icons/setting-2-linear.svg +8 -0
  667. package/src/components/icon/icons/setting-bulk.svg +8 -0
  668. package/src/components/icon/icons/settings-bold.svg +3 -0
  669. package/src/components/icon/icons/settings-bulk.svg +8 -0
  670. package/src/components/icon/icons/settings.svg +4 -0
  671. package/src/components/icon/icons/share-bold.svg +20 -0
  672. package/src/components/icon/icons/share-bulk.svg +20 -0
  673. package/src/components/icon/icons/share.svg +8 -0
  674. package/src/components/icon/icons/shopping-cart-bold.svg +6 -0
  675. package/src/components/icon/icons/shopping-cart.svg +6 -0
  676. package/src/components/icon/icons/sidebar-left-bold.svg +8 -0
  677. package/src/components/icon/icons/sidebar-left-bulk.svg +11 -0
  678. package/src/components/icon/icons/sidebar-left.svg +9 -0
  679. package/src/components/icon/icons/sidebar-right-bold.svg +8 -0
  680. package/src/components/icon/icons/sidebar-right-bulk.svg +11 -0
  681. package/src/components/icon/icons/sidebar-right.svg +9 -0
  682. package/src/components/icon/icons/slack.svg +8 -0
  683. package/src/components/icon/icons/slash-bold.svg +5 -0
  684. package/src/components/icon/icons/slash.svg +4 -0
  685. package/src/components/icon/icons/slider-horizontal-bold.svg +8 -0
  686. package/src/components/icon/icons/slider-horizontal.svg +8 -0
  687. package/src/components/icon/icons/smart-notification-bold.svg +8 -0
  688. package/src/components/icon/icons/smart-notification-bulk.svg +8 -0
  689. package/src/components/icon/icons/smart-notification.svg +8 -0
  690. package/src/components/icon/icons/sms-bold.svg +3 -0
  691. package/src/components/icon/icons/sms.svg +4 -0
  692. package/src/components/icon/icons/soccer-bulk.svg +9 -0
  693. package/src/components/icon/icons/social-facebook.svg +4 -0
  694. package/src/components/icon/icons/social-linkedin.svg +5 -0
  695. package/src/components/icon/icons/social-x.svg +4 -0
  696. package/src/components/icon/icons/sort-amount-down.svg +3 -0
  697. package/src/components/icon/icons/sort-bold.svg +5 -0
  698. package/src/components/icon/icons/sort-bulk.svg +14 -0
  699. package/src/components/icon/icons/sort.svg +5 -0
  700. package/src/components/icon/icons/speedometer.svg +5 -0
  701. package/src/components/icon/icons/spin-dots.svg +14 -0
  702. package/src/components/icon/icons/spin-round.svg +4 -0
  703. package/src/components/icon/icons/spin-three-circles.svg +11 -0
  704. package/src/components/icon/icons/spin-three-dots.svg +5 -0
  705. package/src/components/icon/icons/spinner.svg +3 -0
  706. package/src/components/icon/icons/square.svg +3 -0
  707. package/src/components/icon/icons/star-bold.svg +3 -0
  708. package/src/components/icon/icons/star-bulk.svg +14 -0
  709. package/src/components/icon/icons/star-half-colored.svg +4 -0
  710. package/src/components/icon/icons/star.svg +3 -0
  711. package/src/components/icon/icons/status-up.svg +17 -0
  712. package/src/components/icon/icons/steering-wheel-bulk.svg +4 -0
  713. package/src/components/icon/icons/stop-bold.svg +4 -0
  714. package/src/components/icon/icons/stop.svg +3 -0
  715. package/src/components/icon/icons/story.svg +14 -0
  716. package/src/components/icon/icons/stream.svg +7 -0
  717. package/src/components/icon/icons/swap-bold.svg +3 -0
  718. package/src/components/icon/icons/swap.svg +6 -0
  719. package/src/components/icon/icons/sword-bulk.svg +7 -0
  720. package/src/components/icon/icons/sync.svg +3 -0
  721. package/src/components/icon/icons/table-list.svg +3 -0
  722. package/src/components/icon/icons/tag-2-bold.svg +3 -0
  723. package/src/components/icon/icons/tag-2.svg +5 -0
  724. package/src/components/icon/icons/tag-bold.svg +3 -0
  725. package/src/components/icon/icons/tag-bulk.svg +8 -0
  726. package/src/components/icon/icons/tag-user.svg +5 -0
  727. package/src/components/icon/icons/tag.svg +4 -0
  728. package/src/components/icon/icons/teacher-bulk.svg +4 -0
  729. package/src/components/icon/icons/thumbtack.svg +3 -0
  730. package/src/components/icon/icons/tick-circle-bold.svg +5 -0
  731. package/src/components/icon/icons/tick-circle-bulk.svg +8 -0
  732. package/src/components/icon/icons/tick-circle.svg +4 -0
  733. package/src/components/icon/icons/tick-square-bold.svg +3 -0
  734. package/src/components/icon/icons/tick-square.svg +4 -0
  735. package/src/components/icon/icons/tick.svg +3 -0
  736. package/src/components/icon/icons/timer.svg +5 -0
  737. package/src/components/icon/icons/toggle-off-bold.svg +3 -0
  738. package/src/components/icon/icons/toggle-off.svg +4 -0
  739. package/src/components/icon/icons/toggle-on-bold.svg +3 -0
  740. package/src/components/icon/icons/toggle-on.svg +4 -0
  741. package/src/components/icon/icons/transgender.svg +3 -0
  742. package/src/components/icon/icons/translate-bold.svg +24 -0
  743. package/src/components/icon/icons/translate-bulk.svg +20 -0
  744. package/src/components/icon/icons/translate.svg +24 -0
  745. package/src/components/icon/icons/trash-bold.svg +4 -0
  746. package/src/components/icon/icons/trash-bulk.svg +14 -0
  747. package/src/components/icon/icons/trash.svg +7 -0
  748. package/src/components/icon/icons/trend-up-bold.svg +5 -0
  749. package/src/components/icon/icons/trend-up-bulk.svg +8 -0
  750. package/src/components/icon/icons/trend-up.svg +5 -0
  751. package/src/components/icon/icons/twitter.svg +3 -0
  752. package/src/components/icon/icons/undo-bold.svg +3 -0
  753. package/src/components/icon/icons/undo.svg +4 -0
  754. package/src/components/icon/icons/unlock-bold.svg +4 -0
  755. package/src/components/icon/icons/unlock.svg +5 -0
  756. package/src/components/icon/icons/upload-bulk.svg +11 -0
  757. package/src/components/icon/icons/upload.svg +6 -0
  758. package/src/components/icon/icons/user-avatar.svg +67 -0
  759. package/src/components/icon/icons/user-default.svg +3 -0
  760. package/src/components/icon/icons/user-outline.svg +4 -0
  761. package/src/components/icon/icons/user-settings.svg +3 -0
  762. package/src/components/icon/icons/user-square.svg +5 -0
  763. package/src/components/icon/icons/user.svg +5 -0
  764. package/src/components/icon/icons/video-bulk.svg +5 -0
  765. package/src/components/icon/icons/video-play-bulk.svg +5 -0
  766. package/src/components/icon/icons/video-remove.svg +7 -0
  767. package/src/components/icon/icons/video-square-bulk.svg +4 -0
  768. package/src/components/icon/icons/volume-low.svg +11 -0
  769. package/src/components/icon/icons/warning-2-bold.svg +3 -0
  770. package/src/components/icon/icons/warning-2-bulk.svg +5 -0
  771. package/src/components/icon/icons/warning-2.svg +5 -0
  772. package/src/components/icon/icons/warning.svg +3 -0
  773. package/src/components/icon/icons/watch-bulk.svg +6 -0
  774. package/src/components/icon/icons/wifi.svg +6 -0
  775. package/src/components/icon/icons/woman.svg +5 -0
  776. package/src/components/icon/icons/x.svg +5 -0
  777. package/src/components/icon/icons/zoom-in.svg +11 -0
  778. package/src/components/icon/icons/zoom-out.svg +9 -0
  779. package/src/components/icon/icons.json +524 -0
  780. package/src/components/icon/index.vue +48 -0
  781. package/src/components/icon/payment.json +47 -0
  782. package/src/components/icon/stories/icon.stories.ts +205 -0
  783. package/src/components/icon/styles.scss +18 -0
  784. package/src/components/icon/types.ts +17 -0
  785. package/src/components/icon-button/assets/styles.scss +143 -0
  786. package/src/components/icon-button/components/button.vue +87 -0
  787. package/src/components/icon-button/index.vue +95 -0
  788. package/src/components/icon-button/stories/constants.ts +47 -0
  789. package/src/components/icon-button/stories/primary.stories.ts +106 -0
  790. package/src/components/icon-button/stories/secondary.stories.ts +108 -0
  791. package/src/components/icon-button/types.ts +21 -0
  792. package/src/components/image/assets/styles.scss +153 -0
  793. package/src/components/image/group.vue +33 -0
  794. package/src/components/image/index.vue +51 -0
  795. package/src/components/image/stories/constants.ts +73 -0
  796. package/src/components/image/stories/default.stories.ts +27 -0
  797. package/src/components/image-2/assets/fallback.png +0 -0
  798. package/src/components/image-2/assets/styles.scss +57 -0
  799. package/src/components/image-2/group.vue +120 -0
  800. package/src/components/image-2/image2.test.ts +347 -0
  801. package/src/components/image-2/index.vue +103 -0
  802. package/src/components/image-2/preview.vue +244 -0
  803. package/src/components/image-2/stories/constants.ts +83 -0
  804. package/src/components/image-2/stories/default.stories.ts +91 -0
  805. package/src/components/input/index.vue +250 -0
  806. package/src/components/input/stories/amount.stories.ts +68 -0
  807. package/src/components/input/stories/constants.ts +81 -0
  808. package/src/components/input/stories/credit-card.stories.ts +76 -0
  809. package/src/components/input/stories/default.stories.ts +71 -0
  810. package/src/components/input/stories/email.stories.ts +76 -0
  811. package/src/components/input/stories/password.stories.ts +70 -0
  812. package/src/components/input/stories/textarea.stories.ts +70 -0
  813. package/src/components/input/stories/url.stories.ts +70 -0
  814. package/src/components/input/stories/user-info.stories.ts +76 -0
  815. package/src/components/input/styles.scss +282 -0
  816. package/src/components/input/types.ts +47 -0
  817. package/src/components/input-number/assets/styles.scss +622 -0
  818. package/src/components/input-number/index.vue +142 -0
  819. package/src/components/input-number/stories/constants.ts +145 -0
  820. package/src/components/input-number/stories/default.stories.ts +80 -0
  821. package/src/components/input-number/stories/formatter.mdx +13 -0
  822. package/src/components/input-number/stories/with-select.stories.ts +30 -0
  823. package/src/components/input-number/stories/withselect.mdx +23 -0
  824. package/src/components/input-number/types.ts +26 -0
  825. package/src/components/keyword-group-selection/assets/styles.scss +205 -0
  826. package/src/components/keyword-group-selection/components/kwGroupForm.vue +89 -0
  827. package/src/components/keyword-group-selection/components/kwGroupItem.vue +89 -0
  828. package/src/components/keyword-group-selection/composables/index.ts +19 -0
  829. package/src/components/keyword-group-selection/data/keywordGroups.json +136 -0
  830. package/src/components/keyword-group-selection/index.vue +326 -0
  831. package/src/components/keyword-group-selection/stories/constants.ts +178 -0
  832. package/src/components/keyword-group-selection/stories/default.stories.ts +97 -0
  833. package/src/components/keyword-group-selection/stories/example.mdx +110 -0
  834. package/src/components/keyword-group-selection/types.ts +43 -0
  835. package/src/components/menu/assets/styles.scss +3 -0
  836. package/src/components/menu/components/MenuItem.vue +45 -0
  837. package/src/components/menu/index.vue +28 -0
  838. package/src/components/menu/stories/constants.ts +67 -0
  839. package/src/components/menu/stories/default.stories1.ts +22 -0
  840. package/src/components/menu/stories/listData.stories1.mdx +33 -0
  841. package/src/components/modal/assets/effects.scss +602 -0
  842. package/src/components/modal/assets/styles.scss +131 -0
  843. package/src/components/modal/assets/with-tab.scss +8 -0
  844. package/src/components/modal/components/renderContent.vue +15 -0
  845. package/src/components/modal/index.ts +54 -0
  846. package/src/components/modal/index.vue +205 -0
  847. package/src/components/modal/stories/constants.ts +213 -0
  848. package/src/components/modal/stories/default.stories.ts +74 -0
  849. package/src/components/modal/stories/functions.stories.ts +82 -0
  850. package/src/components/modal/types.ts +43 -0
  851. package/src/components/notification/assets/styles.scss +251 -0
  852. package/src/components/notification/components/notification.vue +118 -0
  853. package/src/components/notification/components/notificationContainer.vue +72 -0
  854. package/src/components/notification/composables/useNotificationAnimation.ts +48 -0
  855. package/src/components/notification/index.ts +53 -0
  856. package/src/components/notification/notification.test.ts +120 -0
  857. package/src/components/notification/stories/commonStories.ts +126 -0
  858. package/src/components/notification/stories/constants.ts +67 -0
  859. package/src/components/notification/stories/docs.mdx +100 -0
  860. package/src/components/notification/stories/filled.stories.ts +23 -0
  861. package/src/components/notification/stories/light.stories.ts +23 -0
  862. package/src/components/notification/stories/stroke.stories.ts +23 -0
  863. package/src/components/notification/types.ts +56 -0
  864. package/src/components/numeric-input/assets/styles.scss +53 -0
  865. package/src/components/numeric-input/components/singleNumericInput.vue +46 -0
  866. package/src/components/numeric-input/index.vue +148 -0
  867. package/src/components/numeric-input/stories/constants.ts +40 -0
  868. package/src/components/numeric-input/stories/default.stories.ts +46 -0
  869. package/src/components/numeric-input/types.ts +7 -0
  870. package/src/components/pagination/assets/styles.scss +131 -0
  871. package/src/components/pagination/index.vue +379 -0
  872. package/src/components/pagination/pagination.test.ts +361 -0
  873. package/src/components/pagination/stories/constants.ts +50 -0
  874. package/src/components/pagination/stories/default.stories.ts +17 -0
  875. package/src/components/pagination/types.ts +31 -0
  876. package/src/components/popconfirm/assets/styles.scss +22 -0
  877. package/src/components/popconfirm/index.vue +129 -0
  878. package/src/components/popconfirm/stories/constants.ts +53 -0
  879. package/src/components/popconfirm/stories/default.stories.ts +19 -0
  880. package/src/components/popconfirm/types.ts +16 -0
  881. package/src/components/popover/assets/styles.scss +214 -0
  882. package/src/components/popover/index.vue +73 -0
  883. package/src/components/popover/stories/apps.json +47 -0
  884. package/src/components/popover/stories/constants.ts +120 -0
  885. package/src/components/popover/stories/default.stories.ts +33 -0
  886. package/src/components/popover/types.ts +30 -0
  887. package/src/components/popover-2/assets/styles.scss +171 -0
  888. package/src/components/popover-2/index.vue +103 -0
  889. package/src/components/popover-2/popover2.test.ts +96 -0
  890. package/src/components/popover-2/stories/constants.ts +142 -0
  891. package/src/components/popover-2/stories/default.stories.ts +32 -0
  892. package/src/components/popover-2/types.ts +26 -0
  893. package/src/components/progress/assets/styles.scss +241 -0
  894. package/src/components/progress/components/circle.vue +94 -0
  895. package/src/components/progress/components/halfCircle.vue +92 -0
  896. package/src/components/progress/components/line.vue +49 -0
  897. package/src/components/progress/components/stepLine.vue +48 -0
  898. package/src/components/progress/index.vue +90 -0
  899. package/src/components/progress/stories/circle.stories.ts +77 -0
  900. package/src/components/progress/stories/constants.ts +57 -0
  901. package/src/components/progress/stories/half-circle.stories.ts +67 -0
  902. package/src/components/progress/stories/line-step.stories.ts +73 -0
  903. package/src/components/progress/stories/line.stories.ts +90 -0
  904. package/src/components/progress/types.ts +42 -0
  905. package/src/components/radio/assets/checked-disabled.svg +11 -0
  906. package/src/components/radio/assets/checked.svg +11 -0
  907. package/src/components/radio/group.vue +26 -0
  908. package/src/components/radio/index.vue +67 -0
  909. package/src/components/radio/stories/constants.ts +54 -0
  910. package/src/components/radio/stories/default.stories.ts +38 -0
  911. package/src/components/radio/styles.scss +454 -0
  912. package/src/components/radio/types.ts +5 -0
  913. package/src/components/radio-card/assets/styles.scss +57 -0
  914. package/src/components/radio-card/index.vue +56 -0
  915. package/src/components/radio-card/stories/assets/iphone-half.svg +61 -0
  916. package/src/components/radio-card/stories/constants.ts +98 -0
  917. package/src/components/radio-card/stories/default.stories.ts +33 -0
  918. package/src/components/radio-card/stories/example.mdx +17 -0
  919. package/src/components/rate/assets/styles.scss +43 -0
  920. package/src/components/rate/components/star.vue +39 -0
  921. package/src/components/rate/index.vue +124 -0
  922. package/src/components/rate/stories/constants.ts +40 -0
  923. package/src/components/rate/stories/default.stories.ts +55 -0
  924. package/src/components/rate/types.ts +14 -0
  925. package/src/components/result/assets/styles.scss +53 -0
  926. package/src/components/result/index.vue +71 -0
  927. package/src/components/result/stories/constants.ts +70 -0
  928. package/src/components/result/stories/default.stories.ts +27 -0
  929. package/src/components/result/types.ts +11 -0
  930. package/src/components/select/assets/styles.scss +601 -0
  931. package/src/components/select/components/dropdownRender.vue +70 -0
  932. package/src/components/select/components/option.vue +19 -0
  933. package/src/components/select/components/optionCheckbox.vue +31 -0
  934. package/src/components/select/index.vue +506 -0
  935. package/src/components/select/stories/constants.ts +85 -0
  936. package/src/components/select/stories/countries.json +342 -0
  937. package/src/components/select/stories/countriesWithDescription.json +57 -0
  938. package/src/components/select/stories/countryGroups.json +47 -0
  939. package/src/components/select/stories/default.stories.ts +190 -0
  940. package/src/components/select/stories/group.stories.ts +55 -0
  941. package/src/components/select/stories/multi-select.stories.ts +158 -0
  942. package/src/components/select/stories/options.json +204 -0
  943. package/src/components/select/stories/single.stories.ts +42 -0
  944. package/src/components/select/types.ts +35 -0
  945. package/src/components/select-2/assets/borderless.scss +30 -0
  946. package/src/components/select-2/assets/compact.scss +5 -0
  947. package/src/components/select-2/assets/default.scss +139 -0
  948. package/src/components/select-2/assets/dropdown.scss +56 -0
  949. package/src/components/select-2/assets/inline.scss +49 -0
  950. package/src/components/select-2/assets/option-group.scss +6 -0
  951. package/src/components/select-2/assets/option.scss +50 -0
  952. package/src/components/select-2/assets/styles.scss +8 -0
  953. package/src/components/select-2/components/selectOption.vue +108 -0
  954. package/src/components/select-2/components/selectOptionGroup.vue +17 -0
  955. package/src/components/select-2/composables/use-keyboard-navigation.ts +81 -0
  956. package/src/components/select-2/composables/use-options-registry.ts +23 -0
  957. package/src/components/select-2/index.vue +449 -0
  958. package/src/components/select-2/select.test.ts +322 -0
  959. package/src/components/select-2/stories/borderless.stories.ts +38 -0
  960. package/src/components/select-2/stories/constants.ts +184 -0
  961. package/src/components/select-2/stories/data/countries.json +342 -0
  962. package/src/components/select-2/stories/data/users.json +204 -0
  963. package/src/components/select-2/stories/inline.stories.ts +38 -0
  964. package/src/components/select-2/stories/multiple.stories.ts +71 -0
  965. package/src/components/select-2/stories/select-option-group.stories.ts +70 -0
  966. package/src/components/select-2/stories/select-option.stories.ts +64 -0
  967. package/src/components/select-2/stories/single.stories.ts +169 -0
  968. package/src/components/select-2/types.ts +231 -0
  969. package/src/components/side-menu/add-new-app-button/assets/styles.scss +18 -0
  970. package/src/components/side-menu/add-new-app-button/index.vue +35 -0
  971. package/src/components/side-menu/add-new-app-button/stories/constants.ts +39 -0
  972. package/src/components/side-menu/add-new-app-button/stories/default.stories.ts +23 -0
  973. package/src/components/side-menu/app-button/assets/styles.scss +51 -0
  974. package/src/components/side-menu/app-button/index.vue +42 -0
  975. package/src/components/side-menu/app-button/stories/constants.ts +34 -0
  976. package/src/components/side-menu/app-button/stories/default.stories.ts +28 -0
  977. package/src/components/side-menu/button/assets/styles.scss +42 -0
  978. package/src/components/side-menu/button/index.vue +70 -0
  979. package/src/components/side-menu/button/stories/constants.ts +58 -0
  980. package/src/components/side-menu/button/stories/default.stories.ts +44 -0
  981. package/src/components/side-menu/icon-button/assets/styles.scss +49 -0
  982. package/src/components/side-menu/icon-button/index.vue +78 -0
  983. package/src/components/side-menu/icon-button/stories/constants.ts +48 -0
  984. package/src/components/side-menu/icon-button/stories/default.stories.ts +33 -0
  985. package/src/components/side-menu/menu-item/assets/styles.scss +66 -0
  986. package/src/components/side-menu/menu-item/index.vue +90 -0
  987. package/src/components/side-menu/menu-item/stories/constants.ts +59 -0
  988. package/src/components/side-menu/menu-item/stories/default.stories.ts +191 -0
  989. package/src/components/side-menu/menu-item/types.ts +12 -0
  990. package/src/components/side-menu/round-icon-button/assets/styles.scss +29 -0
  991. package/src/components/side-menu/round-icon-button/index.vue +27 -0
  992. package/src/components/side-menu/round-icon-button/stories/constants.ts +39 -0
  993. package/src/components/side-menu/round-icon-button/stories/default.stories.ts +18 -0
  994. package/src/components/side-menu-2/menu-button/assets/styles.scss +36 -0
  995. package/src/components/side-menu-2/menu-button/index.vue +77 -0
  996. package/src/components/side-menu-2/menu-button/stories/constants.ts +55 -0
  997. package/src/components/side-menu-2/menu-button/stories/default.stories.ts +49 -0
  998. package/src/components/side-menu-2/menu-button/types.ts +6 -0
  999. package/src/components/side-menu-2/menu-item/assets/styles.scss +43 -0
  1000. package/src/components/side-menu-2/menu-item/index.vue +54 -0
  1001. package/src/components/side-menu-2/menu-item/stories/constants.ts +39 -0
  1002. package/src/components/side-menu-2/menu-item/stories/default.stories.ts +83 -0
  1003. package/src/components/side-menu-2/side-menu-2.test.ts +64 -0
  1004. package/src/components/slider/assets/styles.scss +222 -0
  1005. package/src/components/slider/index.vue +100 -0
  1006. package/src/components/slider/stories/constants.ts +104 -0
  1007. package/src/components/slider/stories/default.stories.ts +22 -0
  1008. package/src/components/slider/stories/example.mdx +69 -0
  1009. package/src/components/slider/types.ts +12 -0
  1010. package/src/components/spin/assets/styles.scss +127 -0
  1011. package/src/components/spin/index.vue +55 -0
  1012. package/src/components/spin/stories/constants.ts +70 -0
  1013. package/src/components/spin/stories/container.stories.ts +30 -0
  1014. package/src/components/spin/stories/default.stories.ts +26 -0
  1015. package/src/components/spin/types.ts +17 -0
  1016. package/src/components/step-items/assets/styles.scss +57 -0
  1017. package/src/components/step-items/components/index.vue +81 -0
  1018. package/src/components/step-items/index.vue +68 -0
  1019. package/src/components/step-items/stories/constants.ts +77 -0
  1020. package/src/components/step-items/stories/default.stories.ts +18 -0
  1021. package/src/components/step-items/stories/examples.mdx +25 -0
  1022. package/src/components/step-items/stories/step-item.stories.ts +19 -0
  1023. package/src/components/steps/assets/styles.scss +79 -0
  1024. package/src/components/steps/components/index.vue +78 -0
  1025. package/src/components/steps/index.vue +72 -0
  1026. package/src/components/steps/stories/constants.ts +132 -0
  1027. package/src/components/steps/stories/default.stories.ts +56 -0
  1028. package/src/components/steps/stories/examples.mdx +27 -0
  1029. package/src/components/steps/stories/step.stories.ts +19 -0
  1030. package/src/components/steps/types.ts +6 -0
  1031. package/src/components/switch/assets/styles.scss +107 -0
  1032. package/src/components/switch/index.vue +142 -0
  1033. package/src/components/switch/stories/constants.ts +43 -0
  1034. package/src/components/switch/stories/default.stories.ts +133 -0
  1035. package/src/components/switch/switch.test.ts +90 -0
  1036. package/src/components/switch/types.ts +12 -0
  1037. package/src/components/table/assets/table.scss +167 -0
  1038. package/src/components/table/preview.vue +140 -0
  1039. package/src/components/table/row-detail.vue +19 -0
  1040. package/src/components/table/stories/data/data.json +1089 -0
  1041. package/src/components/table/stories/data/fields.ts +110 -0
  1042. package/src/components/table/stories/default.stories.ts +25 -0
  1043. package/src/components/table/stories/table.mdx +51 -0
  1044. package/src/components/tabs/assets/styles.scss +435 -0
  1045. package/src/components/tabs/components/tabPane.vue +11 -0
  1046. package/src/components/tabs/index.vue +65 -0
  1047. package/src/components/tabs/stories/card.stories.ts +85 -0
  1048. package/src/components/tabs/stories/constants.ts +124 -0
  1049. package/src/components/tabs/stories/default.mdx +72 -0
  1050. package/src/components/tabs/stories/line.stories.ts +85 -0
  1051. package/src/components/tabs/types.ts +20 -0
  1052. package/src/components/tabs-2/assets/styles.scss +40 -0
  1053. package/src/components/tabs-2/assets/tab-button.scss +89 -0
  1054. package/src/components/tabs-2/components/tabButton.vue +70 -0
  1055. package/src/components/tabs-2/components/tabPane.vue +33 -0
  1056. package/src/components/tabs-2/index.vue +110 -0
  1057. package/src/components/tabs-2/stories/default.stories.ts +147 -0
  1058. package/src/components/tabs-2/stories/tab-button.stories.ts +71 -0
  1059. package/src/components/tabs-2/stories/tab-pane.stories.ts +62 -0
  1060. package/src/components/tabs-2/tabButton.test.ts +84 -0
  1061. package/src/components/tabs-2/tabs.test.ts +178 -0
  1062. package/src/components/tabs-2/types.ts +106 -0
  1063. package/src/components/tag-input/assets/styles.scss +99 -0
  1064. package/src/components/tag-input/index.vue +185 -0
  1065. package/src/components/tag-input/stories/constants.ts +50 -0
  1066. package/src/components/tag-input/stories/default.stories.ts +76 -0
  1067. package/src/components/tag-input/types.ts +3 -0
  1068. package/src/components/toggle/assets/styles.scss +122 -0
  1069. package/src/components/toggle/index.vue +80 -0
  1070. package/src/components/toggle/stories/constants.ts +73 -0
  1071. package/src/components/toggle/stories/default.stories.ts +32 -0
  1072. package/src/components/toggle/types.ts +7 -0
  1073. package/src/components/tooltip/assets/styles.scss +207 -0
  1074. package/src/components/tooltip/index.vue +101 -0
  1075. package/src/components/tooltip/stories/constants.ts +67 -0
  1076. package/src/components/tooltip/stories/default.stories.ts +143 -0
  1077. package/src/components/tooltip/tooltip.test.ts +157 -0
  1078. package/src/components/tooltip/types.ts +30 -0
  1079. package/src/components/track-button/assets/style.scss +94 -0
  1080. package/src/components/track-button/index.vue +77 -0
  1081. package/src/components/track-button/stories/constants.ts +63 -0
  1082. package/src/components/track-button/stories/default.stories.ts +123 -0
  1083. package/src/components/track-button/track-button.test.ts +91 -0
  1084. package/src/components/track-button/types.ts +8 -0
  1085. package/src/components/tree/assets/styles.scss +35 -0
  1086. package/src/components/tree/components/treeNode.vue +238 -0
  1087. package/src/components/tree/index.vue +257 -0
  1088. package/src/components/tree/stories/constants.ts +93 -0
  1089. package/src/components/tree/stories/default.stories.ts +173 -0
  1090. package/src/components/tree/stories/useTreeData.ts +41 -0
  1091. package/src/components/tree/tree.test.ts +104 -0
  1092. package/src/components/tree/types.ts +19 -0
  1093. package/src/components/typography/assets/styles.scss +0 -0
  1094. package/src/components/typography/index.vue +40 -0
  1095. package/src/components/typography/stories/constants.ts +115 -0
  1096. package/src/components/typography/stories/default.stories.ts +114 -0
  1097. package/src/components/typography/types.ts +39 -0
  1098. package/src/components/typography/typography.test.ts +56 -0
  1099. package/src/components/upload/assets/styles.scss +120 -0
  1100. package/src/components/upload/composables/file.ts +114 -0
  1101. package/src/components/upload/index.vue +386 -0
  1102. package/src/components/upload/singleFile.vue +62 -0
  1103. package/src/components/upload/stories/box.stories.ts +76 -0
  1104. package/src/components/upload/stories/button.stories.ts +20 -0
  1105. package/src/components/upload/stories/constants.ts +159 -0
  1106. package/src/components/upload/stories/small-box.stories.ts +21 -0
  1107. package/src/components/upload/types.ts +31 -0
  1108. package/src/components/watchlist-button/assets/styles.scss +116 -0
  1109. package/src/components/watchlist-button/components/button.vue +105 -0
  1110. package/src/components/watchlist-button/index.vue +88 -0
  1111. package/src/components/watchlist-button/stories/constants.ts +54 -0
  1112. package/src/components/watchlist-button/stories/dashed.stories.ts +30 -0
  1113. package/src/components/watchlist-button/stories/default.stories.ts +55 -0
  1114. package/src/components/watchlist-button/types.ts +13 -0
  1115. package/src/composables/config.ts +6 -0
  1116. package/src/composables/ssr.ts +10 -0
  1117. package/src/index.ts +172 -0
  1118. package/src/services/config.ts +32 -0
  1119. package/src/shims-vue-virtual-scroller.d.ts +77 -0
  1120. package/src/tailwind.scss +6 -0
  1121. package/src/utils/breakpoints.test.ts +21 -0
  1122. package/src/utils/breakpoints.ts +31 -0
  1123. package/src/utils/slots.ts +21 -0
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M18.0001 7.16C17.9401 7.15 17.8701 7.15 17.8101 7.16C16.4301 7.11 15.3301 5.98 15.3301 4.58C15.3301 3.15 16.4801 2 17.9101 2C19.3401 2 20.4901 3.16 20.4901 4.58C20.4801 5.98 19.3801 7.11 18.0001 7.16Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M16.9702 14.44C18.3402 14.67 19.8502 14.43 20.9102 13.72C22.3202 12.78 22.3202 11.24 20.9102 10.3C19.8402 9.59004 18.3102 9.35003 16.9402 9.59003" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M5.96998 7.16C6.02998 7.15 6.09998 7.15 6.15998 7.16C7.53998 7.11 8.63998 5.98 8.63998 4.58C8.63998 3.15 7.48998 2 6.05998 2C4.62998 2 3.47998 3.16 3.47998 4.58C3.48998 5.98 4.58998 7.11 5.96998 7.16Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M6.99994 14.44C5.62994 14.67 4.11994 14.43 3.05994 13.72C1.64994 12.78 1.64994 11.24 3.05994 10.3C4.12994 9.59004 5.65994 9.35003 7.02994 9.59003" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M12.0001 14.63C11.9401 14.62 11.8701 14.62 11.8101 14.63C10.4301 14.58 9.33008 13.45 9.33008 12.05C9.33008 10.62 10.4801 9.46997 11.9101 9.46997C13.3401 9.46997 14.4901 10.63 14.4901 12.05C14.4801 13.45 13.3801 14.59 12.0001 14.63Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M9.08997 17.78C7.67997 18.72 7.67997 20.26 9.08997 21.2C10.69 22.27 13.31 22.27 14.91 21.2C16.32 20.26 16.32 18.72 14.91 17.78C13.32 16.72 10.69 16.72 9.08997 17.78Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.2034 2H7.82343C4.18343 2 2.01343 4.17 2.01343 7.81V16.18C2.01343 19.83 4.18343 22 7.82343 22H16.1934C19.8334 22 22.0034 19.83 22.0034 16.19V7.81C22.0134 4.17 19.8434 2 16.2034 2ZM7.76343 9.14C7.76343 8.33 8.42343 7.66 9.24343 7.66C10.0534 7.66 10.7234 8.32 10.7234 9.14C10.7234 9.95 10.0634 10.62 9.24343 10.62C8.42343 10.61 7.76343 9.95 7.76343 9.14ZM8.83343 16.02C8.64343 16.02 8.45343 15.95 8.30343 15.8C8.01343 15.51 8.01343 15.04 8.30343 14.74L14.8534 8.19C15.1434 7.9 15.6234 7.9 15.9134 8.19C16.2034 8.48 16.2034 8.96 15.9134 9.25L9.36343 15.8C9.21343 15.95 9.02343 16.02 8.83343 16.02ZM15.7834 16.34C14.9734 16.34 14.3034 15.68 14.3034 14.86C14.3034 14.05 14.9634 13.38 15.7834 13.38C16.5934 13.38 17.2634 14.04 17.2634 14.86C17.2634 15.68 16.6034 16.34 15.7834 16.34Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.01196 2H15.012C20.012 2 22.012 4 22.012 9V15C22.012 20 20.012 22 15.012 22H9.01196C4.01196 22 2.01196 20 2.01196 15V9C2.01196 4 4.01196 2 9.01196 2Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M8.58203 15.27L15.122 8.72998" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M8.99197 10.37C9.67128 10.37 10.222 9.81936 10.222 9.14005C10.222 8.46073 9.67128 7.91003 8.99197 7.91003C8.31266 7.91003 7.76196 8.46073 7.76196 9.14005C7.76196 9.81936 8.31266 10.37 8.99197 10.37Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M15.532 16.09C16.2113 16.09 16.762 15.5393 16.762 14.86C16.762 14.1807 16.2113 13.63 15.532 13.63C14.8527 13.63 14.302 14.1807 14.302 14.86C14.302 15.5393 14.8527 16.09 15.532 16.09Z" 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="M11.97 2C6.44997 2 1.96997 6.48 1.96997 12C1.96997 17.52 6.44997 22 11.97 22C17.49 22 21.97 17.52 21.97 12C21.97 6.48 17.5 2 11.97 2ZM14.97 14.23L12.07 15.9C11.71 16.11 11.31 16.21 10.92 16.21C10.52 16.21 10.13 16.11 9.76997 15.9C9.04997 15.48 8.61997 14.74 8.61997 13.9V10.55C8.61997 9.72 9.04997 8.97 9.76997 8.55C10.49 8.13 11.35 8.13 12.08 8.55L14.98 10.22C15.7 10.64 16.13 11.38 16.13 12.22C16.13 13.06 15.7 13.81 14.97 14.23Z" 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="M11.97 22C17.4928 22 21.97 17.5228 21.97 12C21.97 6.47715 17.4928 2 11.97 2C6.44712 2 1.96997 6.47715 1.96997 12C1.96997 17.5228 6.44712 22 11.97 22Z" fill="currentColor"/>
3
+ <path d="M14.97 10.23L12.07 8.56C11.35 8.14 10.48 8.14 9.75999 8.56C9.03999 8.98 8.60999 9.72 8.60999 10.56V13.91C8.60999 14.74 9.03999 15.49 9.75999 15.91C10.12 16.12 10.52 16.22 10.91 16.22C11.31 16.22 11.7 16.12 12.06 15.91L14.96 14.24C15.68 13.82 16.11 13.08 16.11 12.24C16.13 11.4 15.7 10.65 14.97 10.23Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.07 19.8201C18.88 19.8201 18.69 19.7501 18.54 19.6001C18.25 19.3101 18.25 18.8301 18.54 18.5401C22.15 14.9301 22.15 9.06012 18.54 5.46012C18.25 5.17012 18.25 4.69012 18.54 4.40012C18.83 4.11012 19.31 4.11012 19.6 4.40012C23.79 8.59012 23.79 15.4101 19.6 19.6001C19.45 19.7501 19.26 19.8201 19.07 19.8201Z" fill="currentColor"/>
3
+ <path d="M4.92995 19.8201C4.73995 19.8201 4.54995 19.7501 4.39995 19.6001C0.209946 15.4101 0.209946 8.59012 4.39995 4.40012C4.68995 4.11012 5.16995 4.11012 5.45995 4.40012C5.74995 4.69012 5.74995 5.17012 5.45995 5.46012C1.84995 9.07012 1.84995 14.9401 5.45995 18.5401C5.74995 18.8301 5.74995 19.3101 5.45995 19.6001C5.30995 19.7501 5.11995 19.8201 4.92995 19.8201Z" fill="currentColor"/>
4
+ <path d="M12 22.71C10.75 22.7 9.56 22.5 8.45 22.11C8.06 21.97 7.85 21.54 7.99 21.15C8.13 20.76 8.55 20.55 8.95 20.69C9.91 21.02 10.93 21.2 12.01 21.2C13.08 21.2 14.11 21.02 15.06 20.69C15.45 20.56 15.88 20.76 16.02 21.15C16.16 21.54 15.95 21.97 15.56 22.11C14.44 22.5 13.25 22.71 12 22.71Z" fill="currentColor"/>
5
+ <path d="M15.3 3.34004C15.22 3.34004 15.13 3.33004 15.05 3.30004C14.1 2.96004 13.07 2.79004 12 2.79004C10.93 2.79004 9.91 2.97004 8.95 3.30004C8.55 3.43004 8.13 3.23004 7.99 2.84004C7.85 2.45004 8.06 2.02004 8.45 1.88004C9.57 1.49004 10.76 1.29004 12 1.29004C13.24 1.29004 14.44 1.49004 15.55 1.88004C15.94 2.02004 16.15 2.45004 16.01 2.84004C15.9 3.15004 15.61 3.34004 15.3 3.34004Z" fill="currentColor"/>
6
+ <path d="M8.73999 11.9999V10.3299C8.73999 8.2499 10.21 7.3999 12.01 8.4399L13.46 9.2799L14.91 10.1199C16.71 11.1599 16.71 12.8599 14.91 13.8999L13.46 14.7399L12.01 15.5799C10.21 16.6199 8.73999 15.7699 8.73999 13.6899V11.9999Z" fill="currentColor"/>
7
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.0701 19.0699C22.9801 15.1599 22.9801 8.82993 19.0701 4.92993" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M4.93006 4.92993C1.02006 8.83993 1.02006 15.1699 4.93006 19.0699" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M8.69995 21.4099C9.76995 21.7799 10.8799 21.96 11.9999 21.96C13.1199 21.95 14.2299 21.7799 15.2999 21.4099" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M8.69995 2.59009C9.76995 2.22009 10.8799 2.04004 11.9999 2.04004C13.1199 2.04004 14.2299 2.22009 15.2999 2.59009" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M8.73999 12.0001V10.3302C8.73999 8.25016 10.21 7.40014 12.01 8.44014L13.46 9.28017L14.91 10.1201C16.71 11.1601 16.71 12.8602 14.91 13.9002L13.46 14.7401L12.01 15.5802C10.21 16.6202 8.73999 15.7701 8.73999 13.6901V12.0001Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M5.81318 2.26643C4.80588 1.70408 3.6135 2.17893 3.18164 3.13052L9.79078 9.74003L13.1612 6.36966L5.81318 2.26643Z"
4
+ fill="#4CAF50" />
5
+ <path
6
+ d="M13.1612 13.1104L9.79078 9.73999L3.18164 16.3495C3.61387 17.3015 4.80626 17.7759 5.81318 17.214L13.1612 13.1104Z"
7
+ fill="#F44336" />
8
+ <path
9
+ d="M16.2569 11.3826C16.9001 11.0236 17.2216 10.382 17.222 9.74C17.2216 9.09801 16.9001 8.45602 16.2569 8.09744L13.1614 6.36963L9.79102 9.74L13.1614 13.1104L16.2569 11.3826Z"
10
+ fill="#FFC107" />
11
+ <path
12
+ d="M3.18193 3.13062C3.07649 3.36431 3.01367 3.62753 3.01367 3.91021V15.5682C3.01367 15.8527 3.07499 16.1152 3.18193 16.3496L9.79032 9.739L3.18193 3.13062Z"
13
+ fill="#2196F3" />
14
+ </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.97 22C17.4928 22 21.97 17.5228 21.97 12C21.97 6.47715 17.4928 2 11.97 2C6.44712 2 1.96997 6.47715 1.96997 12C1.96997 17.5228 6.44712 22 11.97 22Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M8.73999 12.23V10.56C8.73999 8.48 10.21 7.63 12.01 8.67L13.46 9.51L14.91 10.35C16.71 11.39 16.71 13.09 14.91 14.13L13.46 14.97L12.01 15.81C10.21 16.85 8.73999 16 8.73999 13.92V12.23Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M15.59 5H15.25V2C15.25 1.59 14.91 1.25 14.5 1.25C14.09 1.25 13.75 1.59 13.75 2V5H10.25V2C10.25 1.59 9.91 1.25 9.5 1.25C9.09 1.25 8.75 1.59 8.75 2V5H8.41C7.36 5 6.5 5.86 6.5 6.91V12C6.5 14.2 8 16 10.5 16H11.25V22C11.25 22.41 11.59 22.75 12 22.75C12.41 22.75 12.75 22.41 12.75 22V16H13.5C16 16 17.5 14.2 17.5 12V6.91C17.5 5.86 16.64 5 15.59 5Z"
4
+ fill="currentColor" />
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="M10.5 16H13.5C16 16 17.5 14.2 17.5 12V6.91C17.5 5.86 16.64 5 15.59 5H8.42C7.37 5 6.51 5.86 6.51 6.91V12C6.5 14.2 7.99999 16 10.5 16Z"
4
+ stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
5
+ <path d="M9.5 2V5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
6
+ stroke-linejoin="round" />
7
+ <path d="M14.5 2V5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
8
+ stroke-linejoin="round" />
9
+ <path d="M12 22V16" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
10
+ stroke-linejoin="round" />
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_595_105943)">
3
+ <path d="M22.4522 1.62451L13.4021 0.0287451C12.3843 -0.150739 11.4136 0.528948 11.2341 1.54684L11.1484 2.0326C12.4572 2.19385 13.563 3.1367 13.9111 4.43584L14.4642 6.49998C14.757 6.37299 15.089 6.32724 15.4269 6.38682C16.068 6.49989 16.5598 6.96128 16.7431 7.54192C17.1138 7.05896 17.7339 6.7936 18.375 6.90667C19.2925 7.06848 19.9052 7.94349 19.7434 8.86107C19.3919 10.8549 17.2524 12.4574 16.237 13.1165L17.7872 18.9019C17.8703 19.2121 17.905 19.5238 17.8973 19.8296L19.2016 20.0596C20.2195 20.239 21.1901 19.5594 21.3696 18.5415L23.9702 3.79267C24.1498 2.77468 23.4701 1.80399 22.4522 1.62451Z" fill="currentColor"/>
4
+ <path opacity="0.4" d="M12.5563 4.79915C12.3322 3.963 11.5761 3.41151 10.7497 3.41156C10.5894 3.41156 10.4264 3.43233 10.2641 3.47578L1.38761 5.85422C0.389217 6.12173 -0.203282 7.14797 0.0642332 8.14636L3.94037 22.6124C4.16444 23.4486 4.92058 24 5.74694 24C5.90725 24 6.07028 23.9792 6.23247 23.9358L15.109 21.5573C16.1074 21.2898 16.6999 20.2635 16.4324 19.2652L12.5563 4.79915ZM5.64892 14.6875C5.4984 14.5551 5.4422 14.3452 5.50633 14.1553L6.86364 10.1363C6.97717 9.80015 7.39633 9.68784 7.66276 9.92222L10.8477 12.7241C10.9982 12.8565 11.0545 13.0664 10.9903 13.2563L9.63301 17.2753C9.51948 17.6115 9.10033 17.7238 8.83389 17.4894L5.64892 14.6875Z" fill="currentColor"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_595_105943">
8
+ <rect width="24" height="24" fill="currentColor"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4" d="M21 2V14.1C21 16 20 17 18.1 17H5.89999C3.99999 17 3 16 3 14.1V2H21Z"
3
+ fill="currentColor" />
4
+ <path
5
+ d="M22 2.75H2C1.59 2.75 1.25 2.41 1.25 2C1.25 1.59 1.59 1.25 2 1.25H22C22.41 1.25 22.75 1.59 22.75 2C22.75 2.41 22.41 2.75 22 2.75Z"
6
+ fill="currentColor" />
7
+ <path
8
+ d="M16.67 22.34C16.54 22.6 16.27 22.75 16 22.75C15.89 22.75 15.77 22.72 15.67 22.67L12 20.84L8.33001 22.67C8.23001 22.72 8.11002 22.75 8.00002 22.75C7.73002 22.75 7.46001 22.6 7.33001 22.34C7.14001 21.96 7.29004 21.51 7.67004 21.33L11.25 19.54V17H12.75V19.54L16.33 21.33C16.71 21.51 16.86 21.96 16.67 22.34Z"
9
+ fill="currentColor" />
10
+ <path
11
+ d="M7.49993 11.7499C7.28993 11.7499 7.06994 11.6599 6.91994 11.4799C6.64994 11.1599 6.69992 10.6899 7.01992 10.4199L10.1699 7.78993C10.4599 7.54993 10.8299 7.44994 11.1799 7.50994C11.5399 7.56994 11.8499 7.78991 12.0399 8.10991L13.0899 9.85991L16.0199 7.41994C16.3399 7.14994 16.8099 7.19992 17.0799 7.51992C17.3499 7.83992 17.2999 8.30991 16.9799 8.57991L13.8299 11.2099C13.5399 11.4499 13.1699 11.5499 12.8199 11.4899C12.4599 11.4299 12.1499 11.2099 11.9599 10.8899L10.9099 9.13994L7.97994 11.5799C7.83994 11.6899 7.66993 11.7499 7.49993 11.7499Z"
12
+ fill="currentColor" />
13
+ </svg>
@@ -0,0 +1,16 @@
1
+ <svg viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="profile-2user">
3
+ <g id="vuesax/bulk/profile-2user">
4
+ <g id="profile-2user_2">
5
+ <path id="Vector" opacity="0.4" d="M5.25033 1.40186C3.72199 1.40186 2.47949 2.64436 2.47949 4.17269C2.47949 5.67186 3.65199 6.88519 5.18033 6.93769C5.22699 6.93186 5.27366 6.93186 5.30866 6.93769C5.32033 6.93769 5.32616 6.93769 5.33783 6.93769C5.34366 6.93769 5.34366 6.93769 5.34949 6.93769C6.84283 6.88519 8.01533 5.67186 8.02116 4.17269C8.02116 2.64436 6.77866 1.40186 5.25033 1.40186Z" fill="#F97066"/>
6
+ <path id="Vector_2" opacity="0.4" d="M11.43 4.51691C11.5233 5.64858 10.7183 6.64025 9.60417 6.77441C9.59833 6.77441 9.59833 6.77441 9.5925 6.77441H9.575C9.54 6.77441 9.505 6.77441 9.47583 6.78608C8.91 6.81525 8.39083 6.63441 8 6.30191C8.60083 5.76525 8.945 4.96025 8.875 4.08525C8.83417 3.61275 8.67083 3.18108 8.42583 2.81358C8.6475 2.70275 8.90417 2.63275 9.16667 2.60941C10.31 2.51025 11.3308 3.36191 11.43 4.51691Z" fill="#F97066"/>
7
+ <path id="Vector_3" d="M13.2388 10.5836C13.3903 11.8965 12.5653 11.8612 11.9586 12.1937C11.3753 12.5146 10.4945 12.9404 9.7653 12.9229C10.1853 12.5438 10.4303 10.9046 10.477 10.4029C10.5353 9.67959 10.1911 8.98542 9.5028 8.43125C9.11197 8.12209 8.65697 7.87709 8.16113 7.69625C9.4503 7.32292 11.072 7.57375 12.0695 8.37875C12.6061 8.81042 13.0946 9.33399 13.2388 10.5836Z" fill="#F97066"/>
8
+ <path id="Ellipse 186" fill-rule="evenodd" clip-rule="evenodd" d="M10.1383 13.0687C10.396 13.0687 10.6069 12.8591 10.5864 12.6022C10.3597 9.75982 8.08062 7.52686 5.30248 7.52686C2.52435 7.52686 0.245218 9.75982 0.018525 12.6022C-0.00196546 12.8591 0.208935 13.0687 0.466668 13.0687H10.1383Z" fill="#F97066"/>
9
+ <g id="plus">
10
+ <path id="Vector_4" d="M12.7817 10.0112C12.3617 9.53286 11.7375 9.23535 11.0492 9.23535C10.3958 9.23535 9.80082 9.5037 9.37499 9.9412C8.96666 10.3612 8.71582 10.9387 8.71582 11.5687C8.71582 12.0062 8.83831 12.4204 9.05415 12.7703C9.17081 12.9687 9.32248 13.1495 9.49748 13.3012C9.90582 13.6745 10.4483 13.902 11.0492 13.902C11.9008 13.902 12.6417 13.447 13.0442 12.7703C13.1667 12.572 13.26 12.3445 13.3125 12.1112C13.3592 11.9362 13.3825 11.7554 13.3825 11.5687C13.3825 10.9737 13.155 10.4254 12.7817 10.0112ZM11.9242 11.9945H11.4867V12.4495C11.4867 12.6887 11.2883 12.887 11.0492 12.887C10.81 12.887 10.6117 12.6887 10.6117 12.4495V11.9945H10.1742C9.93499 11.9945 9.73665 11.7962 9.73665 11.557C9.73665 11.3178 9.93499 11.1195 10.1742 11.1195H10.6117V10.7054C10.6117 10.4662 10.81 10.2679 11.0492 10.2679C11.2883 10.2679 11.4867 10.4662 11.4867 10.7054V11.1195H11.9242C12.1633 11.1195 12.3617 11.3178 12.3617 11.557C12.3617 11.7962 12.1633 11.9945 11.9242 11.9945Z" fill="#FCB4AF"/>
11
+ <path id="Vector_5" d="M11.9242 11.9945H11.4867V12.4495C11.4867 12.6887 11.2883 12.887 11.0492 12.887C10.81 12.887 10.6117 12.6887 10.6117 12.4495V11.9945H10.1742C9.93499 11.9945 9.73665 11.7962 9.73665 11.557C9.73665 11.3178 9.93499 11.1195 10.1742 11.1195H10.6117V10.7054C10.6117 10.4662 10.81 10.2679 11.0492 10.2679C11.2883 10.2679 11.4867 10.4662 11.4867 10.7054V11.1195H11.9242C12.1633 11.1195 12.3617 11.3178 12.3617 11.557C12.3617 11.7962 12.1633 11.9945 11.9242 11.9945Z" fill="#FEE2E0"/>
12
+ </g>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </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="M17 3.74999H13.07L14.48 2.58001C14.8 2.31001 14.84 1.84001 14.58 1.52001C14.31 1.20001 13.84 1.15998 13.52 1.41998L10.52 3.91998C10.35 4.05998 10.25 4.26999 10.25 4.49999C10.25 4.72999 10.35 4.93001 10.52 5.08001L13.52 7.58001C13.66 7.70001 13.83 7.74999 14 7.74999C14.21 7.74999 14.43 7.65997 14.58 7.47997C14.85 7.15997 14.8 6.68998 14.48 6.41998L13.07 5.24999H17C17.69 5.24999 18.25 5.80999 18.25 6.49999V16C18.25 16.41 18.59 16.75 19 16.75C19.41 16.75 19.75 16.41 19.75 16V6.49999C19.75 4.97999 18.52 3.74999 17 3.74999Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M19 22C20.6569 22 22 20.6569 22 19C22 17.3431 20.6569 16 19 16C17.3431 16 16 17.3431 16 19C16 20.6569 17.3431 22 19 22Z"
7
+ fill="currentColor" />
8
+ <path opacity="0.4"
9
+ d="M13.48 18.92L10.48 16.42C10.16 16.15 9.69001 16.2 9.42001 16.52C9.15001 16.84 9.19999 17.31 9.51999 17.58L10.93 18.75H7C6.31 18.75 5.75 18.19 5.75 17.5V8C5.75 7.59 5.41 7.25 5 7.25C4.59 7.25 4.25 7.59 4.25 8V17.5C4.25 19.02 5.48 20.25 7 20.25H10.93L9.51999 21.42C9.19999 21.69 9.16001 22.16 9.42001 22.48C9.57001 22.66 9.78 22.75 10 22.75C10.17 22.75 10.34 22.69 10.48 22.58L13.48 20.08C13.65 19.94 13.75 19.73 13.75 19.5C13.75 19.27 13.65 19.07 13.48 18.92Z"
10
+ fill="currentColor" />
11
+ <path
12
+ d="M5 8C6.65685 8 8 6.65685 8 5C8 3.34315 6.65685 2 5 2C3.34315 2 2 3.34315 2 5C2 6.65685 3.34315 8 5 8Z"
13
+ fill="currentColor" />
14
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg fill="currentColor" viewBox="64 64 896 896">
2
+ <path d="M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32zM368 744c0 4.4-3.6 8-8 8h-80c-4.4 0-8-3.6-8-8V280c0-4.4 3.6-8 8-8h80c4.4 0 8 3.6 8 8v464zm192-280c0 4.4-3.6 8-8 8h-80c-4.4 0-8-3.6-8-8V280c0-4.4 3.6-8 8-8h80c4.4 0 8 3.6 8 8v184zm192 72c0 4.4-3.6 8-8 8h-80c-4.4 0-8-3.6-8-8V280c0-4.4 3.6-8 8-8h80c4.4 0 8 3.6 8 8v256z"></path>
3
+ </svg>
@@ -0,0 +1,17 @@
1
+ <svg viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_595_105879)">
3
+ <g opacity="0.4">
4
+ <path d="M20.0664 0H11.6445V3.34684C11.8535 3.29334 12.07 3.26562 12.2891 3.26562C13.7103 3.26562 14.8672 4.42187 14.8672 5.84375C14.8672 7.26563 13.7103 8.42188 12.2891 8.42188C12.07 8.42188 11.8535 8.39416 11.6445 8.34066V10.3555H14.7123C15.2633 10.3555 15.5521 11.0249 15.1945 11.4287C14.9805 11.6685 14.8672 11.9662 14.8672 12.2891C14.8672 12.9997 15.445 13.5781 16.1562 13.5781C16.8675 13.5781 17.4453 12.9997 17.4453 12.2891C17.4453 11.9662 17.332 11.6685 17.118 11.4287C16.7495 11.0134 17.045 10.3555 17.6002 10.3555H22V1.93359C22 0.867367 21.1326 0 20.0664 0Z" fill="currentColor"/>
5
+ </g>
6
+ <path d="M12.2891 4.55469C11.9706 4.55469 11.6647 4.67049 11.428 4.88138C11.0174 5.24958 10.3555 4.95816 10.3555 4.39983V0H1.93359C0.867367 0 0 0.867367 0 1.93359V10.3555H3.34744C3.29334 10.1465 3.26562 9.92999 3.26562 9.71094C3.26562 8.28906 4.42252 7.13281 5.84375 7.13281C7.26498 7.13281 8.42188 8.28906 8.42188 9.71094C8.42188 9.92999 8.39416 10.1465 8.34006 10.3555H10.3555V7.28767C10.3555 6.72929 11.0174 6.43796 11.428 6.80616C11.6647 7.01701 11.9706 7.13281 12.2891 7.13281C13.0003 7.13281 13.5781 6.55437 13.5781 5.84375C13.5781 5.13313 13.0003 4.55469 12.2891 4.55469Z" fill="currentColor"/>
7
+ <g opacity="0.4">
8
+ <path d="M9.71094 13.5781C9.92999 13.5781 10.1465 13.6058 10.3555 13.6599V11.6445H7.28767C6.73252 11.6445 6.43702 10.9866 6.80552 10.5713C7.0195 10.3315 7.13281 10.0338 7.13281 9.71094C7.13281 9.00032 6.55501 8.42188 5.84375 8.42188C5.13249 8.42188 4.55469 9.00032 4.55469 9.71094C4.55469 10.0338 4.668 10.3315 4.88198 10.5713C5.25052 10.9865 4.95498 11.6445 4.39983 11.6445H0V20.0664C0 21.1326 0.867367 22 1.93359 22H10.3555V18.6526C10.1465 18.7067 9.92999 18.7344 9.71094 18.7344C8.2897 18.7344 7.13281 17.5781 7.13281 16.1562C7.13281 14.7344 8.2897 13.5781 9.71094 13.5781Z" fill="currentColor"/>
9
+ </g>
10
+ <path d="M18.6526 11.6445C18.7067 11.8535 18.7344 12.07 18.7344 12.2891C18.7344 13.7109 17.5775 14.8672 16.1562 14.8672C14.735 14.8672 13.5781 13.7109 13.5781 12.2891C13.5781 12.0687 13.6157 11.8543 13.6698 11.6445H11.6445V14.7123C11.6445 15.2672 10.987 15.5628 10.572 15.1945C10.3303 14.9805 10.0332 14.8672 9.71094 14.8672C8.99968 14.8672 8.42188 15.4456 8.42188 16.1562C8.42188 16.8669 8.99968 17.4453 9.71094 17.4453C10.0332 17.4453 10.3303 17.332 10.572 17.118C10.9879 16.7503 11.6445 17.0451 11.6445 17.6002V22H20.0664C21.1326 22 22 21.1326 22 20.0664V11.6445H18.6526Z" fill="currentColor"/>
11
+ </g>
12
+ <defs>
13
+ <clipPath id="clip0_595_105879">
14
+ <rect width="22" height="22" fill="currentColor"/>
15
+ </clipPath>
16
+ </defs>
17
+ </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 2.42993H7C4 2.42993 2 4.42993 2 7.42993V13.4299C2 16.4299 4 18.4299 7 18.4299V20.5599C7 21.3599 7.89 21.8399 8.55 21.3899L13 18.4299H17C20 18.4299 22 16.4299 22 13.4299V7.42993C22 4.42993 20 2.42993 17 2.42993ZM12 14.5999C11.58 14.5999 11.25 14.2599 11.25 13.8499C11.25 13.4399 11.58 13.0999 12 13.0999C12.42 13.0999 12.75 13.4399 12.75 13.8499C12.75 14.2599 12.42 14.5999 12 14.5999ZM13.26 10.4499C12.87 10.7099 12.75 10.8799 12.75 11.1599V11.3699C12.75 11.7799 12.41 12.1199 12 12.1199C11.59 12.1199 11.25 11.7799 11.25 11.3699V11.1599C11.25 9.99993 12.1 9.42993 12.42 9.20993C12.79 8.95993 12.91 8.78993 12.91 8.52993C12.91 8.02993 12.5 7.61993 12 7.61993C11.5 7.61993 11.09 8.02993 11.09 8.52993C11.09 8.93993 10.75 9.27993 10.34 9.27993C9.93 9.27993 9.59 8.93993 9.59 8.52993C9.59 7.19993 10.67 6.11993 12 6.11993C13.33 6.11993 14.41 7.19993 14.41 8.52993C14.41 9.66993 13.57 10.2399 13.26 10.4499Z" 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="M17 18.43H13L8.54999 21.39C7.88999 21.83 7 21.36 7 20.56V18.43C4 18.43 2 16.43 2 13.43V7.42993C2 4.42993 4 2.42993 7 2.42993H17C20 2.42993 22 4.42993 22 7.42993V13.43C22 16.43 20 18.43 17 18.43Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M12.0001 11.3599V11.1499C12.0001 10.4699 12.4201 10.1099 12.8401 9.81989C13.2501 9.53989 13.66 9.1799 13.66 8.5199C13.66 7.5999 12.9201 6.85986 12.0001 6.85986C11.0801 6.85986 10.3401 7.5999 10.3401 8.5199" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M11.9955 13.75H12.0045" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1_15186)">
3
+ <path
4
+ d="M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 19.75C7.73 19.75 4.25 16.27 4.25 12C4.25 10.64 4.61 9.31 5.28 8.14C5.48 7.78 5.94 7.66 6.3 7.86L12.37 11.35C12.73 11.56 12.85 12.01 12.65 12.37C12.44 12.73 11.99 12.85 11.63 12.65L8.72 10.98C8.62 11.31 8.55 11.65 8.55 12C8.55 13.9 10.1 15.45 12 15.45C13.9 15.45 15.45 13.9 15.45 12C15.45 10.1 13.9 8.55 12 8.55C11.49 8.55 10.99 8.66 10.53 8.88C10.15 9.06 9.71 8.9 9.53 8.52C9.35 8.15 9.51 7.7 9.89 7.52C10.55 7.21 11.26 7.05 12 7.05C14.73 7.05 16.95 9.27 16.95 12C16.95 14.73 14.73 16.95 12 16.95C9.27 16.95 7.05 14.73 7.05 12C7.05 11.39 7.17 10.78 7.39 10.21L6.24 9.56C5.92 10.33 5.75 11.16 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.75C10.64 5.75 9.34 6.18 8.25 7C7.92 7.25 7.45 7.18 7.2 6.85C6.95 6.52 7.02 6.05 7.35 5.8C8.7 4.79 10.31 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"
5
+ fill="currentColor" />
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_1_15186">
9
+ <rect width="24" height="24" fill="white" />
10
+ </clipPath>
11
+ </defs>
12
+ </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="M12.0002 4.25C10.3102 4.25 8.70025 4.79 7.35025 5.8C7.02025 6.05 6.95026 6.52001 7.20026 6.85001C7.45026 7.18001 7.92024 7.25 8.25024 7C9.34024 6.18 10.6302 5.75 12.0002 5.75C15.4502 5.75 18.2502 8.55 18.2502 12C18.2502 15.45 15.4502 18.25 12.0002 18.25C8.55024 18.25 5.75024 15.45 5.75024 12C5.75024 11.16 5.92023 10.33 6.24023 9.56L7.38025 10.21C7.16025 10.78 7.04025 11.38 7.04025 12C7.04025 14.73 9.26023 16.95 11.9902 16.95C14.7202 16.95 16.9402 14.73 16.9402 12C16.9402 9.27 14.7202 7.05 11.9902 7.05C11.2502 7.05 10.5402 7.21 9.88025 7.52C9.51025 7.7 9.34023 8.14 9.52023 8.52C9.70023 8.89 10.1402 9.05 10.5202 8.88C10.9802 8.66001 11.4702 8.55 11.9902 8.55C13.8902 8.55 15.4402 10.1 15.4402 12C15.4402 13.9 13.8902 15.45 11.9902 15.45C10.0902 15.45 8.54025 13.9 8.54025 12C8.54025 11.65 8.61024 11.31 8.71024 10.98L11.6202 12.65C11.9802 12.86 12.4403 12.73 12.6403 12.37C12.8503 12.01 12.7202 11.55 12.3602 11.35L6.29025 7.86C5.93025 7.65 5.47023 7.78 5.27023 8.14C4.60023 9.31 4.24023 10.64 4.24023 12C4.24023 16.27 7.72023 19.75 11.9902 19.75C16.2602 19.75 19.7402 16.27 19.7402 12C19.7402 7.73 16.2702 4.25 12.0002 4.25Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M6 4C7.67 2.75 9.75 2 12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 10.19 2.47999 8.48999 3.32999 7.01999L12 12"
4
+ stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"
5
+ stroke-linejoin="round" />
6
+ <path
7
+ d="M6.82999 8.95999C6.29999 9.84999 6 10.89 6 12C6 15.31 8.69 18 12 18C15.31 18 18 15.31 18 12C18 8.69 15.31 6 12 6C11.09 6 10.22 6.20001 9.45001 6.57001"
8
+ stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"
9
+ stroke-linejoin="round" />
10
+ </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="M6.67 14H4C2.9 14 2 14.9 2 16V21C2 21.55 2.45 22 3 22H6.67C7.22 22 7.67 21.55 7.67 21V15C7.67 14.45 7.22 14 6.67 14Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M13.3302 10H10.6602C9.56016 10 8.66016 10.9 8.66016 12V21C8.66016 21.55 9.11016 22 9.66016 22H14.3302C14.8802 22 15.3302 21.55 15.3302 21V12C15.3302 10.9 14.4402 10 13.3302 10Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M20.0001 17H17.3301C16.7801 17 16.3301 17.45 16.3301 18V21C16.3301 21.55 16.7801 22 17.3301 22H21.0001C21.5501 22 22.0001 21.55 22.0001 21V19C22.0001 17.9 21.1001 17 20.0001 17Z"
10
+ fill="currentColor" />
11
+ <path
12
+ d="M15.0099 4.84998C15.3199 4.53998 15.4399 4.16998 15.3399 3.84998C15.2399 3.52998 14.9299 3.29998 14.4899 3.22998L13.5299 3.06998C13.4899 3.06998 13.3999 2.99998 13.3799 2.95998L12.8499 1.89998C12.4499 1.08998 11.5399 1.08998 11.1399 1.89998L10.6099 2.95998C10.5999 2.99998 10.5099 3.06998 10.4699 3.06998L9.50994 3.22998C9.06994 3.29998 8.76994 3.52998 8.65994 3.84998C8.55994 4.16998 8.67994 4.53998 8.98994 4.84998L9.72994 5.59998C9.76994 5.62998 9.79994 5.74998 9.78994 5.78998L9.57994 6.70998C9.41994 7.39998 9.67994 7.70998 9.84994 7.82998C10.0199 7.94998 10.3899 8.10998 10.9999 7.74998L11.8999 7.21998C11.9399 7.18998 12.0699 7.18998 12.1099 7.21998L12.9999 7.74998C13.2799 7.91998 13.5099 7.96998 13.6899 7.96998C13.8999 7.96998 14.0499 7.88998 14.1399 7.82998C14.3099 7.70998 14.5699 7.39998 14.4099 6.70998L14.1999 5.78998C14.1899 5.73998 14.2199 5.62998 14.2599 5.59998L15.0099 4.84998Z"
13
+ fill="currentColor" />
14
+ </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" d="M8.67 14H4C2.9 14 2 14.9 2 16V22H8.67V14Z" fill="currentColor" />
3
+ <path
4
+ d="M13.3302 10H10.6602C9.56016 10 8.66016 10.9 8.66016 12V22H15.3302V12C15.3302 10.9 14.4402 10 13.3302 10Z"
5
+ fill="currentColor" />
6
+ <path opacity="0.4" d="M20.0001 17H15.3301V22H22.0001V19C22.0001 17.9 21.1001 17 20.0001 17Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M15.0102 4.84999C15.3202 4.53999 15.4402 4.16999 15.3402 3.84999C15.2402 3.52999 14.9302 3.3 14.4902 3.23L13.5302 3.06999C13.4902 3.05999 13.4002 2.99998 13.3802 2.95998L12.8502 1.89998C12.4502 1.08998 11.5402 1.08998 11.1402 1.89998L10.6102 2.95998C10.5902 2.99998 10.5002 3.05999 10.4602 3.06999L9.50017 3.23C9.06017 3.3 8.76017 3.52999 8.65017 3.84999C8.55017 4.16999 8.67017 4.53999 8.98017 4.84999L9.72017 5.59999C9.75017 5.62999 9.79017 5.75 9.78017 5.79L9.57017 6.70998C9.41017 7.38998 9.67017 7.69997 9.84017 7.82997C10.0102 7.94997 10.3802 8.10999 10.9902 7.74999L11.8902 7.21999C11.9302 7.18999 12.0602 7.18999 12.1002 7.21999L13.0002 7.74999C13.2802 7.91999 13.5102 7.96999 13.6902 7.96999C13.9002 7.96999 14.0502 7.88997 14.1402 7.82997C14.3102 7.70997 14.5702 7.39998 14.4102 6.70998L14.2002 5.79C14.1902 5.74 14.2202 5.62999 14.2602 5.59999L15.0102 4.84999Z"
10
+ fill="currentColor" />
11
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.67 14H4C2.9 14 2 14.9 2 16V22H8.67V14Z" stroke="currentColor" stroke-width="1.5"
3
+ stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
4
+ <path
5
+ d="M13.3302 10H10.6602C9.56016 10 8.66016 10.9 8.66016 12V22H15.3302V12C15.3302 10.9 14.4402 10 13.3302 10Z"
6
+ stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"
7
+ stroke-linejoin="round" />
8
+ <path d="M20.0001 17H15.3301V22H22.0001V19C22.0001 17.9 21.1001 17 20.0001 17Z"
9
+ stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"
10
+ stroke-linejoin="round" />
11
+ <path
12
+ d="M12.5202 2.07007L13.0502 3.13006C13.1202 3.28006 13.3102 3.42006 13.4702 3.44006L14.4302 3.60007C15.0402 3.70007 15.1902 4.15005 14.7502 4.58005L14.0002 5.33005C13.8702 5.46005 13.8002 5.70006 13.8402 5.87006L14.0502 6.79007C14.2202 7.52007 13.8302 7.80007 13.1902 7.42007L12.2902 6.89007C12.1302 6.79007 11.8602 6.79007 11.7002 6.89007L10.8002 7.42007C10.1602 7.80007 9.77023 7.52007 9.94023 6.79007L10.1502 5.87006C10.1902 5.70006 10.1202 5.45005 9.99023 5.33005L9.25023 4.59006C8.81023 4.15006 8.95023 3.71005 9.57023 3.61005L10.5302 3.45007C10.6902 3.42007 10.8802 3.28007 10.9502 3.14007L11.4802 2.08005C11.7702 1.50005 12.2302 1.50007 12.5202 2.07007Z"
13
+ stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
14
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M8.5681 5.55491L8.56852 5.55574L9.44852 7.31575C9.53822 7.49515 9.68904 7.6529 9.84667 7.76959C10.0031 7.88541 10.1989 7.98485 10.4008 8.01585L11.9908 8.28196C11.991 8.28199 11.9911 8.28201 11.9912 8.28203C12.4448 8.3592 12.6097 8.54 12.6503 8.66581C12.6906 8.79052 12.6635 9.03174 12.3376 9.35764L12.337 9.35827L11.0976 10.6043C11.0975 10.6044 11.0974 10.6046 11.0972 10.6047C10.9443 10.7578 10.8393 10.9656 10.7806 11.1682C10.7219 11.3713 10.6993 11.6052 10.7483 11.8205L10.7484 11.8212L11.1018 13.3612L11.1019 13.3616C11.2352 13.9393 11.1063 14.1717 11.0173 14.2368C10.9282 14.3021 10.6674 14.3545 10.1566 14.0532C10.1564 14.0531 10.1562 14.053 10.1561 14.0529L8.66351 13.1667L8.66172 13.1657C8.46238 13.049 8.22246 13 7.99999 13C7.77753 13 7.53761 13.049 7.33827 13.1657L7.33799 13.1658L5.83799 14.0458L5.83726 14.0463C5.32613 14.3479 5.06517 14.2954 4.97598 14.2302C4.88697 14.165 4.75814 13.9327 4.89146 13.355L4.89155 13.3545L5.24466 11.8155C5.2447 11.8153 5.24474 11.8152 5.24478 11.815C5.29433 11.6014 5.27111 11.3684 5.21269 11.1665C5.15407 10.9639 5.04956 10.7564 4.89941 10.6014L4.89944 10.6014L4.89569 10.5976L3.66236 9.36431C3.337 9.03895 3.30913 8.79587 3.34977 8.66971C3.39042 8.54351 3.55485 8.36287 4.00708 8.28898L4.00708 8.28898L4.00835 8.28877L5.60168 8.0221L5.60168 8.02211L5.60412 8.02168C5.80111 7.98721 5.99476 7.8901 6.15219 7.77459C6.30925 7.65934 6.46111 7.50312 6.55147 7.32241L7.43147 5.56241L7.43147 5.56241L7.43229 5.56075C7.64471 5.12992 7.8711 5.02618 8.00087 5.02584C8.13037 5.0255 8.356 5.12772 8.5681 5.55491Z"
4
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
5
+ <path
6
+ d="M4 6.16671C3.91076 6.16671 3.83333 6.08928 3.83333 6.00004V1.33337C3.83333 1.24414 3.91076 1.16671 4 1.16671C4.08924 1.16671 4.16667 1.24414 4.16667 1.33337V6.00004C4.16667 6.08928 4.08924 6.16671 4 6.16671Z"
7
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
8
+ <path
9
+ d="M12 6.16671C11.9108 6.16671 11.8333 6.08928 11.8333 6.00004V1.33337C11.8333 1.24414 11.9108 1.16671 12 1.16671C12.0892 1.16671 12.1667 1.24414 12.1667 1.33337V6.00004C12.1667 6.08928 12.0892 6.16671 12 6.16671Z"
10
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
11
+ <path
12
+ d="M8 3.16671C7.72667 3.16671 7.5 2.94004 7.5 2.66671V1.33337C7.5 1.06004 7.72667 0.833374 8 0.833374C8.27333 0.833374 8.5 1.06004 8.5 1.33337V2.66671C8.5 2.94004 8.27333 3.16671 8 3.16671Z"
13
+ fill="currentColor" />
14
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M8.56809 5.55489L8.5685 5.55572L9.44851 7.31572C9.53821 7.49512 9.68903 7.65288 9.84666 7.76956C10.0031 7.88539 10.1988 7.98482 10.4008 8.01582L11.9908 8.28193C11.9909 8.28196 11.9911 8.28198 11.9912 8.282C12.4448 8.35916 12.6097 8.53997 12.6503 8.66577C12.6906 8.79049 12.6635 9.03172 12.3376 9.35761L11.0976 10.5976C10.9445 10.7507 10.8393 10.9587 10.7806 11.1615C10.7219 11.3646 10.6993 11.5985 10.7483 11.8139L10.7484 11.8145L11.1018 13.3545L11.1019 13.3549C11.2352 13.9326 11.1064 14.165 11.0173 14.2301C10.9282 14.2954 10.6674 14.3478 10.1566 14.0466C10.1564 14.0464 10.1562 14.0463 10.1561 14.0462L8.6635 13.16L8.66171 13.159C8.46237 13.0423 8.22245 12.9933 7.99999 12.9933C7.77752 12.9933 7.53761 13.0423 7.33826 13.159L7.33648 13.16L5.84392 14.0462C5.84375 14.0463 5.84358 14.0464 5.84341 14.0465C5.33261 14.3478 5.0718 14.2954 4.98264 14.2301C4.89362 14.165 4.76479 13.9326 4.89811 13.3549L4.8982 13.3545L5.25133 11.8155C5.25137 11.8153 5.25141 11.8151 5.25145 11.815C5.301 11.6014 5.27778 11.3684 5.21936 11.1665C5.16073 10.9639 5.05622 10.7564 4.90607 10.6014L4.9061 10.6014L4.90236 10.5976L3.66237 9.35761L3.42738 9.5926L3.66237 9.35761C3.33701 9.03226 3.30913 8.78917 3.34977 8.66301C3.39042 8.53682 3.55484 8.35618 4.00707 8.28228L4.00707 8.28228L4.00834 8.28207L5.60168 8.01541L5.60168 8.01542L5.60412 8.01499C5.80112 7.98052 5.99476 7.88341 6.15219 7.7679C6.30925 7.65265 6.46111 7.49643 6.55147 7.31572L7.43147 5.55572L7.43189 5.55489C7.64387 5.12794 7.86974 5.02498 7.99999 5.02498C8.13024 5.02498 8.35611 5.12794 8.56809 5.55489Z"
4
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
5
+ <path opacity="0.4"
6
+ d="M4 6.16671C3.91076 6.16671 3.83333 6.08928 3.83333 6.00004V1.33337C3.83333 1.24414 3.91076 1.16671 4 1.16671C4.08924 1.16671 4.16667 1.24414 4.16667 1.33337V6.00004C4.16667 6.08928 4.08924 6.16671 4 6.16671Z"
7
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
8
+ <path opacity="0.4"
9
+ d="M12 6.16671C11.9108 6.16671 11.8333 6.08928 11.8333 6.00004V1.33337C11.8333 1.24414 11.9108 1.16671 12 1.16671C12.0892 1.16671 12.1667 1.24414 12.1667 1.33337V6.00004C12.1667 6.08928 12.0892 6.16671 12 6.16671Z"
10
+ fill="currentColor" stroke="currentColor" stroke-width="0.666667" />
11
+ <path opacity="0.4"
12
+ d="M8 3.16671C7.72667 3.16671 7.5 2.94004 7.5 2.66671V1.33337C7.5 1.06004 7.72667 0.833374 8 0.833374C8.27333 0.833374 8.5 1.06004 8.5 1.33337V2.66671C8.5 2.94004 8.27333 3.16671 8 3.16671Z"
13
+ fill="currentColor" />
14
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M8.86665 5.40665L9.74665 7.16665C9.86665 7.40665 10.1866 7.64665 10.4533 7.68665L12.0467 7.95331C13.0667 8.12665 13.3066 8.85998 12.5733 9.59332L11.3333 10.8333C11.1267 11.04 11.0066 11.4467 11.0733 11.74L11.4267 13.28C11.7067 14.4933 11.06 14.9667 9.98666 14.3333L8.49331 13.4466C8.21998 13.2866 7.77999 13.2866 7.50666 13.4466L6.01331 14.3333C4.93998 14.9667 4.29331 14.4933 4.57331 13.28L4.92666 11.74C4.99333 11.4533 4.87332 11.0467 4.66665 10.8333L3.42666 9.59332C2.69333 8.85998 2.93332 8.11998 3.95332 7.95331L5.54666 7.68665C5.81333 7.63998 6.13332 7.40665 6.25332 7.16665L7.13333 5.40665C7.60666 4.45332 8.39331 4.45332 8.86665 5.40665Z"
4
+ stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" />
5
+ <path d="M4 6.00004V1.33337" stroke="currentColor" stroke-linecap="round"
6
+ stroke-linejoin="round" />
7
+ <path d="M12 6.00004V1.33337" stroke="currentColor" stroke-linecap="round"
8
+ stroke-linejoin="round" />
9
+ <path d="M8 2.66671V1.33337" stroke="currentColor" stroke-linecap="round"
10
+ 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="M11.97 2C6.44997 2 1.96997 6.48 1.96997 12C1.96997 17.52 6.44997 22 11.97 22C17.49 22 21.97 17.52 21.97 12C21.97 6.48 17.5 2 11.97 2ZM12 16.23C9.65997 16.23 7.76997 14.34 7.76997 12C7.76997 9.66 9.65997 7.77 12 7.77C14.34 7.77 16.23 9.66 16.23 12C16.23 14.34 14.34 16.23 12 16.23Z" 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="M16.19 2H7.81C4.17 2 2 4.17 2 7.81V16.18C2 19.83 4.17 22 7.81 22H16.18C19.82 22 21.99 19.83 21.99 16.19V7.81C22 4.17 19.83 2 16.19 2ZM17.53 10.22L15.96 11.79C15.81 11.94 15.62 12.01 15.43 12.01C15.24 12.01 15.05 11.94 14.9 11.79C14.61 11.5 14.61 11.02 14.9 10.73L15.16 10.47H10.08C8.8 10.47 7.75 11.51 7.75 12.8C7.75 14.09 8.79 15.13 10.08 15.13H15C15.41 15.13 15.75 15.47 15.75 15.88C15.75 16.29 15.41 16.63 15 16.63H10.08C7.97 16.63 6.25 14.91 6.25 12.8C6.25 10.69 7.97 8.97 10.08 8.97H15.23L14.9 8.65C14.61 8.36 14.61 7.88 14.9 7.59C15.19 7.3 15.67 7.3 15.96 7.59L17.53 9.16C17.82 9.46 17.82 9.93 17.53 10.22Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.8701 18.3101H8.87012C6.11012 18.3101 3.87012 16.0701 3.87012 13.3101C3.87012 10.5501 6.11012 8.31006 8.87012 8.31006H19.8701" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M17.5701 10.8099L20.1301 8.24994L17.5701 5.68994" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,3 @@
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 3.11 16.44 3.11 16.44M3.11 16.44H7.63M3.11 16.44V21.44M2 12C2 6.48 6.44 2 12 2C18.67 2 22 7.56 22 7.56M22 7.56V2.56M22 7.56H17.56" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="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"/>
3
+ <path d="M17.5 12C17.5 15.04 15.04 17.5 12 17.5C8.96 17.5 7.10999 14.44 7.10999 14.44M7.10999 14.44H9.59M7.10999 14.44V17.19M6.5 12C6.5 8.96 8.94 6.5 12 6.5C15.67 6.5 17.5 9.56 17.5 9.56M17.5 9.56V6.81M17.5 9.56H15.06" 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="M205 34.8c11.5 5.1 19 16.6 19 29.2v64H336c97.2 0 176 78.8 176 176c0 113.3-81.5 163.9-100.2 174.1c-2.5 1.4-5.3 1.9-8.1 1.9c-10.9 0-19.7-8.9-19.7-19.7c0-7.5 4.3-14.4 9.8-19.5c9.4-8.8 22.2-26.4 22.2-56.7c0-53-43-96-96-96H224v64c0 12.6-7.4 24.1-19 29.2s-25 3-34.4-5.4l-160-144C3.9 225.7 0 217.1 0 208s3.9-17.7 10.6-23.8l160-144c9.4-8.5 22.9-10.6 34.4-5.4z"/>
3
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_599_81354)">
3
+ <path d="M21.5487 0.00277459C17.2541 -0.0742254 12.3564 2.17069 9.2562 5.65311C6.29354 5.70902 3.40879 6.92361 1.28487 9.04752C1.16112 9.16944 1.11712 9.35186 1.1712 9.51686C1.2262 9.68277 1.3692 9.80286 1.54154 9.82761L5.07437 10.3336L4.63804 10.8222C4.47579 11.0037 4.48404 11.2796 4.65637 11.4519L10.5478 17.3434C10.6367 17.4323 10.754 17.4772 10.8723 17.4772C10.9814 17.4772 11.0905 17.4387 11.1775 17.3608L11.6661 16.9244L12.1721 20.4573C12.1969 20.6296 12.3325 20.7561 12.4966 20.8111C12.5388 20.8249 12.5828 20.8313 12.6277 20.8313C12.7579 20.8313 12.8908 20.7744 12.9825 20.6837C15.077 18.5891 16.2916 15.7044 16.3475 12.7417C19.8336 9.63511 22.0969 4.73919 21.997 0.450108C21.9905 0.206275 21.7935 0.00919125 21.5487 0.00277459ZM17.3247 7.91544C16.8783 8.36186 16.2916 8.58552 15.704 8.58552C15.1165 8.58552 14.5298 8.36186 14.0834 7.91544C13.1905 7.02169 13.1905 5.56786 14.0834 4.67411C14.9771 3.78036 16.431 3.78036 17.3247 4.67411C18.2185 5.56786 18.2185 7.02261 17.3247 7.91544Z" fill="currentColor"/>
4
+ <path opacity="0.4" d="M2.49705 15.4962C1.51622 16.4771 0.169636 20.9082 0.0193026 21.4097C-0.0292807 21.571 0.015636 21.7461 0.133886 21.8652C0.221886 21.9532 0.338303 22 0.458386 22C0.502386 22 0.546386 21.9936 0.590386 21.9807C1.0918 21.8304 5.52297 20.4838 6.5038 19.503C7.60839 18.3984 7.60839 16.6008 6.5038 15.4962C5.3983 14.3917 3.60164 14.3926 2.49705 15.4962Z" fill="currentColor"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_599_81354">
8
+ <rect fill="currentColor"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg viewBox="0 0 26 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_533_189794)">
3
+ <path
4
+ d="M62.7272 10.0686C64.1676 10.0364 65.5852 10.4178 66.7988 11.164C68.0124 11.9103 68.9669 12.9875 69.5401 14.2578C70.1133 15.5282 70.2793 16.934 70.0167 18.2955C69.7542 19.657 69.075 20.9123 68.0662 21.9009C67.0574 22.8894 65.7647 23.5664 64.3534 23.8451C62.9421 24.1238 61.4765 23.9916 60.1438 23.4654C58.8111 22.9393 57.672 22.043 56.8721 20.8913C56.0722 19.7397 55.648 18.3849 55.6535 17.0002C55.6506 15.1839 56.3906 13.4393 57.7139 12.1426C59.0371 10.8459 60.8377 10.101 62.7272 10.0686ZM62.7272 20.4156C63.6376 20.384 64.4976 20.0064 65.1185 19.3658C65.7394 18.7252 66.0704 17.8739 66.0387 16.999C65.9929 16.379 65.7598 15.7854 65.368 15.291C64.9761 14.7966 64.4425 14.4229 63.8328 14.2159C63.223 14.0088 62.5636 13.9774 61.9355 14.1255C61.3075 14.2737 60.7381 14.5948 60.2973 15.0496C59.8565 15.5044 59.5635 16.073 59.4543 16.6856C59.3451 17.2982 59.4243 17.9281 59.6824 18.498C59.9405 19.0679 60.3661 19.5529 60.907 19.8936C61.4479 20.2342 62.0805 20.4157 62.7272 20.4156ZM71.4678 1.08247C71.4733 0.918166 71.5431 0.761895 71.6632 0.644876C71.7834 0.527858 71.945 0.458707 72.1159 0.451237H75.049C75.221 0.456916 75.3843 0.525118 75.506 0.642064C75.6277 0.759011 75.6987 0.915984 75.7046 1.08127V10.665C76.6795 10.2792 77.722 10.0756 78.7763 10.065C82.8819 10.065 85.6077 13.1492 85.6077 17.0254C85.6525 17.9015 85.5162 18.7774 85.2067 19.6026C84.8972 20.4277 84.4207 21.1858 83.8047 21.833C83.1887 22.4801 82.4453 23.0036 81.6176 23.3731C80.7899 23.7426 79.8942 23.9509 78.9823 23.9858C78.1255 23.9806 77.2795 23.8008 76.5004 23.4583C75.7212 23.1157 75.0265 22.6181 74.4621 21.9985L74.1175 23.0257C74.0139 23.3858 73.7716 23.6558 73.462 23.6558H72.1159C71.9438 23.6504 71.7803 23.5823 71.6586 23.4653C71.5368 23.3482 71.466 23.1911 71.4604 23.0257V1.08247H71.4678ZM78.4716 20.4156C78.9104 20.3965 79.3407 20.2931 79.7373 20.1117C80.1339 19.9302 80.4886 19.6743 80.7807 19.3591C81.0728 19.0438 81.2962 18.6755 81.4379 18.276C81.5796 17.8764 81.6367 17.4537 81.6057 17.0326C81.6229 16.5979 81.5494 16.1644 81.3895 15.7575C81.2296 15.3506 80.9865 14.9786 80.6746 14.6634C80.3627 14.3482 79.9884 14.0962 79.5735 13.9223C79.1587 13.7484 78.7119 13.6561 78.2593 13.6508C77.3002 13.62 76.3563 13.8867 75.5672 14.4116V18.2591C75.7356 18.8761 76.1117 19.4222 76.6368 19.8123C77.162 20.2023 77.8066 20.4145 78.4703 20.4156H78.4716ZM87.2747 6.00635C87.2714 5.70776 87.3296 5.4115 87.4459 5.1346C87.5622 4.85771 87.7343 4.60566 87.9524 4.39296C88.1704 4.18025 88.4301 4.0111 88.7165 3.89523C89.0028 3.77937 89.3102 3.71907 89.6209 3.71782C89.9381 3.71084 90.2536 3.76486 90.5487 3.8767C90.8439 3.98854 91.1129 4.15595 91.3398 4.3691C91.5667 4.58224 91.747 4.83682 91.8701 5.11788C91.9932 5.39894 92.0566 5.70081 92.0566 6.00575C92.0566 6.3107 91.9932 6.61257 91.8701 6.89363C91.747 7.17469 91.5667 7.42927 91.3398 7.64241C91.1129 7.85556 90.8439 8.02297 90.5487 8.13481C90.2536 8.24665 89.9381 8.30067 89.6209 8.29369C89.3102 8.29244 89.0028 8.23214 88.7165 8.11628C88.4301 8.00041 88.1704 7.83126 87.9524 7.61855C87.7343 7.40585 87.5622 7.1538 87.4459 6.87691C87.3296 6.60001 87.2714 6.30375 87.2747 6.00516V6.00635ZM87.5856 11.031C87.5856 10.8639 87.6546 10.7037 87.7776 10.5855C87.9005 10.4674 88.0673 10.401 88.2411 10.401H91.1056C91.2794 10.401 91.4462 10.4674 91.5691 10.5855C91.692 10.7037 91.7611 10.8639 91.7611 11.031V23.0317C91.7555 23.1972 91.6847 23.3545 91.563 23.4717C91.4412 23.5889 91.2777 23.6573 91.1056 23.663H88.2399C88.0677 23.6573 87.9042 23.5889 87.7825 23.4717C87.6608 23.3545 87.5899 23.1972 87.5843 23.0317V11.031H87.5856ZM94.4969 1.08247C94.5028 0.917184 94.5738 0.76021 94.6955 0.643264C94.8172 0.526317 94.9805 0.458116 95.1525 0.452437H98.0506C98.2226 0.458116 98.3859 0.526317 98.5076 0.643264C98.6293 0.76021 98.7002 0.917184 98.7062 1.08247V23.0341C98.7003 23.1995 98.6293 23.3566 98.5077 23.4738C98.386 23.5909 98.2227 23.6594 98.0506 23.6654H95.1525C94.9804 23.6594 94.817 23.5909 94.6954 23.4738C94.5737 23.3566 94.5028 23.1995 94.4969 23.0341V1.08247ZM107.982 10.0686C108.832 10.0524 109.675 10.2006 110.464 10.5045C111.252 10.8083 111.968 11.2615 112.571 11.8371C113.173 12.4127 113.648 13.0989 113.969 13.8548C114.289 14.6107 114.448 15.4208 114.436 16.2369C114.43 16.5364 114.408 16.8353 114.367 17.1322C114.348 17.2868 114.271 17.4293 114.15 17.533C114.029 17.6367 113.873 17.6943 113.711 17.695H104.881C104.953 18.4886 105.335 19.2266 105.949 19.7617C106.563 20.2967 107.365 20.5894 108.193 20.5812C109.157 20.5707 110.095 20.2813 110.886 19.7507C111.23 19.5515 111.544 19.4855 111.783 19.7507L113.199 21.3108C113.266 21.3645 113.318 21.4321 113.354 21.5083C113.389 21.5845 113.405 21.6675 113.402 21.7508C113.399 21.8341 113.376 21.9156 113.335 21.989C113.294 22.0625 113.236 22.1261 113.166 22.1749C111.757 23.391 109.917 24.0431 108.024 23.9978C107.079 24.0032 106.143 23.8256 105.271 23.4757C104.399 23.1257 103.609 22.6106 102.949 21.961C102.289 21.3114 101.772 20.5406 101.428 19.6947C101.085 18.8488 100.922 17.945 100.95 17.0374C100.926 16.1339 101.091 15.235 101.433 14.3933C101.776 13.5516 102.29 12.7842 102.945 12.1359C103.6 11.4876 104.384 10.9716 105.249 10.618C106.114 10.2645 107.045 10.0805 107.985 10.077L107.982 10.0686ZM110.399 15.3765C110.342 14.7681 110.053 14.2012 109.588 13.7847C109.123 13.3682 108.514 13.1312 107.879 13.1192C107.222 13.1204 106.588 13.3495 106.094 13.7643C105.599 14.179 105.277 14.7516 105.187 15.3765H110.399ZM144.744 10.0686C145.728 10.0507 146.703 10.2541 147.591 10.6625C148.479 11.0708 149.255 11.6729 149.858 12.4207C149.915 12.4906 149.957 12.5715 149.979 12.6579C150.002 12.7444 150.005 12.8344 149.988 12.9222C149.972 13.0099 149.936 13.0932 149.884 13.1667C149.831 13.2402 149.763 13.3021 149.684 13.3484L148.096 14.8077C147.784 15.0729 147.471 14.9085 147.232 14.7069C146.934 14.3806 146.568 14.1178 146.158 13.9351C145.748 13.7524 145.303 13.654 144.852 13.646C143.938 13.6665 143.069 14.0335 142.435 14.667C141.802 15.3005 141.454 16.1491 141.469 17.0278C141.455 17.4619 141.53 17.8945 141.691 18.3004C141.852 18.7063 142.095 19.0774 142.407 19.3922C142.718 19.7069 143.092 19.9591 143.505 20.1339C143.919 20.3088 144.365 20.4029 144.817 20.4108C145.345 20.4092 145.867 20.2953 146.344 20.0772C146.821 19.8592 147.243 19.5424 147.578 19.1495C147.683 19.0332 147.829 18.9585 147.989 18.9397C148.148 18.9208 148.309 18.9592 148.44 19.0475L149.924 20.2752C150.268 20.5404 150.408 20.8752 150.165 21.2028C149.593 22.0886 148.787 22.8131 147.829 23.3025C146.871 23.7919 145.796 24.0289 144.712 23.9894C142.781 23.9983 140.926 23.2701 139.555 21.9649C138.183 20.6597 137.406 18.8842 137.396 17.029C137.432 15.1759 138.222 13.4101 139.596 12.1093C140.97 10.8086 142.818 10.0761 144.747 10.0686H144.744ZM153.024 13.8824H151.853C151.684 13.8762 151.523 13.8065 151.407 13.6883C151.29 13.5702 151.226 13.4128 151.229 13.25V11.0274C151.224 10.9462 151.237 10.8649 151.267 10.7886C151.296 10.7123 151.342 10.6426 151.4 10.5836C151.458 10.5247 151.529 10.4778 151.607 10.4458C151.684 10.4138 151.768 10.3973 151.853 10.3974H153.024V6.71679C153.031 6.55138 153.103 6.39456 153.225 6.27772C153.347 6.16089 153.51 6.09268 153.682 6.08676L156.51 6.05316C156.679 6.0594 156.839 6.12871 156.956 6.24636C157.072 6.36402 157.137 6.52073 157.135 6.68319V10.3974H160.17C160.257 10.3946 160.344 10.4089 160.425 10.4396C160.506 10.4702 160.579 10.5165 160.64 10.5756C160.702 10.6347 160.75 10.7053 160.782 10.783C160.814 10.8607 160.829 10.9439 160.826 11.0274V13.2488C160.826 13.3317 160.809 13.4138 160.776 13.4904C160.743 13.5671 160.695 13.6367 160.634 13.6955C160.573 13.7542 160.501 13.8008 160.422 13.8327C160.342 13.8646 160.257 13.881 160.17 13.8812H157.135V19.1855C157.135 20.1144 157.652 20.2464 158.204 20.2464C158.784 20.2122 159.355 20.0907 159.896 19.8863C159.969 19.852 160.05 19.8343 160.131 19.8345C160.213 19.8347 160.294 19.8529 160.367 19.8876C160.44 19.9224 160.504 19.9728 160.554 20.0349C160.604 20.0971 160.638 20.1694 160.655 20.2464L161.344 22.3369C161.376 22.4125 161.392 22.4937 161.391 22.5755C161.389 22.6573 161.37 22.7379 161.335 22.8124C161.3 22.8869 161.25 22.9538 161.187 23.0088C161.124 23.0639 161.05 23.106 160.969 23.1325C159.659 23.6337 158.272 23.9252 156.864 23.9954C154.21 23.9954 153.033 22.4041 153.033 19.7195V13.8824H153.024ZM163.302 6.00635C163.299 5.70765 163.357 5.41133 163.474 5.13442C163.591 4.85751 163.763 4.60548 163.981 4.39281C164.2 4.18014 164.459 4.01103 164.746 3.89519C165.032 3.77935 165.34 3.71908 165.651 3.71782C165.968 3.71084 166.283 3.76486 166.579 3.8767C166.874 3.98854 167.143 4.15595 167.37 4.3691C167.596 4.58224 167.777 4.83682 167.9 5.11788C168.023 5.39894 168.086 5.70081 168.086 6.00575C168.086 6.3107 168.023 6.61257 167.9 6.89363C167.777 7.17469 167.596 7.42927 167.37 7.64241C167.143 7.85556 166.874 8.02297 166.579 8.13481C166.283 8.24665 165.968 8.30067 165.651 8.29369C165.34 8.29228 165.033 8.23191 164.747 8.11604C164.461 8.00018 164.201 7.83111 163.983 7.61855C163.766 7.40599 163.593 7.15414 163.477 6.87746C163.361 6.60078 163.303 6.30474 163.306 6.00635H163.302ZM163.612 11.031C163.612 10.9482 163.629 10.8662 163.662 10.7897C163.695 10.7131 163.743 10.6436 163.804 10.5851C163.865 10.5266 163.937 10.4802 164.017 10.4486C164.097 10.417 164.182 10.4008 164.268 10.401H167.139C167.225 10.4008 167.311 10.417 167.39 10.4486C167.47 10.4802 167.542 10.5266 167.603 10.5851C167.664 10.6436 167.713 10.7131 167.746 10.7897C167.779 10.8662 167.796 10.9482 167.796 11.031V23.0317C167.79 23.1974 167.719 23.3549 167.597 23.4721C167.475 23.5893 167.311 23.6576 167.139 23.663H164.267C164.095 23.6573 163.931 23.589 163.809 23.4718C163.687 23.3546 163.616 23.1973 163.61 23.0317V11.031H163.612ZM176.8 10.071C178.24 10.039 179.658 10.4206 180.871 11.167C182.085 11.9134 183.039 12.9907 183.612 14.2611C184.185 15.5315 184.351 16.9373 184.088 18.2987C183.825 19.6601 183.146 20.9153 182.137 21.9037C181.128 22.8922 179.836 23.569 178.424 23.8476C177.013 24.1262 175.548 23.9939 174.215 23.4677C172.882 22.9415 171.743 22.0453 170.944 20.8936C170.144 19.742 169.72 18.3872 169.725 17.0026C169.722 15.1851 170.462 13.4392 171.786 12.1418C173.111 10.8445 174.913 10.0998 176.804 10.0686L176.8 10.071ZM176.8 20.418C177.71 20.3864 178.57 20.0088 179.191 19.3682C179.812 18.7276 180.143 17.8763 180.111 17.0014C180.066 16.3811 179.833 15.787 179.441 15.2922C179.049 14.7974 178.515 14.4234 177.905 14.2161C177.295 14.0089 176.635 13.9774 176.007 14.1255C175.379 14.2736 174.809 14.595 174.368 15.05C173.927 15.505 173.634 16.074 173.524 16.6869C173.415 17.2998 173.495 17.9301 173.753 18.5002C174.011 19.0704 174.437 19.5556 174.979 19.8963C175.52 20.237 176.153 20.4183 176.8 20.418ZM186.079 11.0334C186.079 10.9507 186.096 10.8688 186.129 10.7923C186.162 10.7159 186.21 10.6464 186.271 10.5879C186.332 10.5294 186.404 10.483 186.483 10.4514C186.563 10.4197 186.648 10.4034 186.734 10.4034H188.045C188.175 10.4002 188.302 10.4373 188.407 10.5091C188.513 10.5809 188.591 10.6836 188.631 10.8018L189.114 12.0283C189.749 11.4065 190.507 10.913 191.343 10.5771C192.18 10.2411 193.078 10.0695 193.984 10.0722C198.367 10.0722 200.125 13.2212 200.125 16.6726V23.0401C200.119 23.2056 200.048 23.3628 199.926 23.4797C199.804 23.5967 199.64 23.6648 199.468 23.6702H196.641C196.555 23.6703 196.47 23.6542 196.39 23.6226C196.31 23.591 196.238 23.5446 196.176 23.4861C196.115 23.4276 196.067 23.3581 196.034 23.2816C196.001 23.2051 195.983 23.123 195.983 23.0401V16.4758C195.983 14.7501 195.052 13.6568 193.396 13.6568C192.699 13.6511 192.016 13.8475 191.437 14.2202C190.858 14.5929 190.409 15.1246 190.149 15.7461V23.0401C190.149 23.5046 189.942 23.6702 189.284 23.6702H186.731C186.559 23.6645 186.395 23.5963 186.274 23.4793C186.152 23.3624 186.081 23.2054 186.075 23.0401V11.0394L186.079 11.0334ZM10.6318 3.77183C10.6318 3.77183 0.925928 3.94824 0.625 13.712C1.21036 12.8506 1.9937 12.1298 2.91463 11.6053C3.83557 11.0808 4.86953 10.7665 5.93681 10.6866L6.10038 10.2558L6.16906 10.0806C7.10497 7.66229 8.63616 5.49771 10.6318 3.77183ZM21.67 13.8332C19.9459 15.812 17.7484 17.3595 15.2656 18.3431L15.0495 18.4439L14.6425 18.5891C14.5944 19.6157 14.3025 20.6182 13.7891 21.5197C13.2758 22.4212 12.5545 23.1979 11.6807 23.7902C21.8235 23.1637 21.67 13.8296 21.67 13.8296V13.8332ZM5.22632 15.8529C5.22632 15.8529 2.52047 16.9726 2.92379 21.7813C7.93342 22.0837 9.04847 19.4639 9.04847 19.4639L7.13677 17.6638L5.22632 15.8637V15.8529ZM25.1337 0.0120121C23.57 -0.0296097 22.0051 0.0369659 20.4513 0.211223C19.4642 0.358606 18.4898 0.575197 17.5356 0.85926C15.2422 1.52322 13.1275 2.66105 11.3398 4.19305C9.42908 5.88159 7.97239 7.98982 7.09432 10.3374C7.09432 10.3374 7.05936 10.425 7.00442 10.5774L6.95197 10.7202C6.56723 11.786 6.26956 12.879 6.06168 13.9892C5.98051 14.4212 5.90809 14.8665 5.84815 15.3249L7.69492 17.0662L9.54045 18.8099C10.0174 18.7439 10.4782 18.6647 10.9265 18.5795C12.0797 18.361 13.2132 18.0557 14.3166 17.6662C14.3703 17.6458 14.4202 17.6302 14.4639 17.6098L14.7137 17.5186C17.1393 16.6338 19.3062 15.1981 21.0294 13.334C22.5912 11.5876 23.7371 9.53446 24.387 7.31803C24.6658 6.39616 24.8745 5.45603 25.0114 4.50507C25.1643 3.01055 25.2061 1.50744 25.1362 0.0072116L25.1337 0.0120121ZM17.5668 10.4202C16.9408 10.4202 16.3288 10.2418 15.8083 9.90751C15.2877 9.57323 14.882 9.09811 14.6424 8.54222C14.4029 7.98634 14.3402 7.37466 14.4623 6.78453C14.5844 6.19441 14.8859 5.65235 15.3286 5.22689C15.7713 4.80144 16.3353 4.5117 16.9493 4.39431C17.5633 4.27693 18.1998 4.33718 18.7782 4.56743C19.3566 4.79769 19.8509 5.18761 20.1987 5.68789C20.5466 6.18817 20.7322 6.77635 20.7322 7.37803C20.7322 8.18487 20.3987 8.95866 19.8051 9.52918C19.2115 10.0997 18.4064 10.4202 17.5668 10.4202ZM31.6593 0.508841C31.6754 0.363855 31.7495 0.230576 31.866 0.137186C31.9825 0.0437963 32.1323 -0.00238344 32.2836 0.00841158H33.5697C33.6908 0.0035276 33.8108 0.0322839 33.9153 0.0912384C34.0198 0.150193 34.1045 0.236848 34.1591 0.340831L41.0554 16.0617H41.1591L48.0517 0.340831C48.1028 0.234204 48.1867 0.14519 48.2921 0.0857609C48.3975 0.026332 48.5193 -0.000661326 48.6411 0.00841158H49.9309C50.0822 -0.00238344 50.232 0.0437963 50.3485 0.137186C50.465 0.230576 50.5391 0.363855 50.5553 0.508841L54.6459 22.8985C54.679 22.9899 54.6877 23.0878 54.6711 23.1833C54.6545 23.2787 54.6133 23.3686 54.5511 23.4448C54.489 23.5209 54.4079 23.5808 54.3153 23.6189C54.2228 23.657 54.1218 23.6722 54.0215 23.663H50.8662C50.7169 23.6521 50.5744 23.5985 50.4571 23.5091C50.3398 23.4197 50.2531 23.2986 50.2081 23.1613L47.9905 10.5354H47.8856L41.9907 23.6294C41.9463 23.7431 41.8651 23.8402 41.759 23.9063C41.6529 23.9724 41.5275 24.0041 41.4013 23.9966H40.777C40.6518 23.9993 40.5286 23.9657 40.4235 23.9002C40.3184 23.8347 40.2362 23.7403 40.1876 23.6294L34.194 10.3998H34.0904L31.9377 23.1637C31.9048 23.3013 31.826 23.4246 31.7132 23.515C31.6005 23.6054 31.46 23.6578 31.3134 23.6642H28.1917C28.091 23.671 27.99 23.6546 27.8972 23.6164C27.8043 23.5783 27.7223 23.5194 27.6578 23.4446C27.5934 23.3699 27.5484 23.2815 27.5266 23.1868C27.5048 23.092 27.5068 22.9936 27.5324 22.8997L31.6593 0.508841ZM114.513 23.1301L124.914 0.708051C124.963 0.597307 125.045 0.5032 125.15 0.437935C125.256 0.372669 125.379 0.339257 125.504 0.342031H126.579C126.705 0.334077 126.83 0.365382 126.937 0.431309C127.043 0.497236 127.124 0.594276 127.168 0.708051L137.497 23.1301C137.55 23.2234 137.575 23.3286 137.571 23.4347C137.566 23.5407 137.532 23.6436 137.471 23.7324C137.411 23.8212 137.327 23.8927 137.228 23.9392C137.128 23.9857 137.018 24.0055 136.908 23.9966H133.891C133.67 24.0083 133.452 23.9492 133.269 23.8287C133.087 23.7082 132.952 23.533 132.885 23.3305L131.188 19.7303H120.824L119.124 23.3305C119.051 23.5278 118.915 23.6981 118.736 23.8175C118.557 23.937 118.343 23.9996 118.125 23.9966H115.101C114.991 24.0055 114.881 23.9857 114.781 23.9392C114.682 23.8927 114.598 23.8212 114.537 23.7324C114.477 23.6436 114.443 23.5407 114.438 23.4347C114.434 23.3286 114.459 23.2234 114.512 23.1301H114.513ZM129.488 16.0353L126.022 8.29249H125.916L122.519 16.0353H129.488Z"
5
+ fill="currentColor" />
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_533_189794">
9
+ <rect width="24.75" height="24" fill="white" transform="translate(0.625)" />
10
+ </clipPath>
11
+ </defs>
12
+ </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.11008 5.08002C9.98008 4.82002 10.9401 4.65002 12.0001 4.65002C16.7901 4.65002 20.6701 8.53002 20.6701 13.32C20.6701 18.11 16.7901 21.99 12.0001 21.99C7.21008 21.99 3.33008 18.11 3.33008 13.32C3.33008 11.54 3.87008 9.88002 4.79008 8.50002" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M7.87012 5.32L10.7601 2" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M7.87012 5.31995L11.2401 7.77995" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
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="M14.8901 5.08002C14.0201 4.82002 13.0601 4.65002 12.0001 4.65002C7.21008 4.65002 3.33008 8.53002 3.33008 13.32C3.33008 18.12 7.21008 22 12.0001 22C16.7901 22 20.6701 18.12 20.6701 13.33C20.6701 11.55 20.1301 9.89002 19.2101 8.51002" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M16.13 5.32L13.24 2" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M16.13 5.31995L12.76 7.77995" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </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="M12.89 5.87988H5.11C3.4 5.87988 2 7.27988 2 8.98988V20.3499C2 21.7999 3.04 22.4199 4.31 21.7099L8.24 19.5199C8.66 19.2899 9.34 19.2899 9.75 19.5199L13.68 21.7099C14.96 22.4099 16 21.7999 16 20.3499V8.98988C16 7.27988 14.6 5.87988 12.89 5.87988Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M22 5.11V16.47C22 17.92 20.96 18.53 19.69 17.83L17.76 16.75C17.6 16.66 17.5 16.49 17.5 16.31V8.99C17.5 6.45 15.43 4.38 12.89 4.38H8.82C8.45 4.38 8.19 3.99 8.36 3.67C8.88 2.68 9.92 2 11.11 2H18.89C20.6 2 22 3.4 22 5.11Z"
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
3
+ d="M3.30023 22.7501C2.94023 22.7501 2.59022 22.6601 2.29022 22.4801C1.62022 22.0901 1.24023 21.3101 1.24023 20.3401V8.98013C1.24023 6.85013 2.97022 5.12012 5.10022 5.12012H12.8802C15.0102 5.12012 16.7402 6.85013 16.7402 8.98013V20.3401C16.7402 21.3101 16.3602 22.0801 15.6902 22.4801C15.0202 22.8701 14.1602 22.8301 13.3102 22.3601L9.38025 20.1701C9.19025 20.0601 8.79022 20.0601 8.60022 20.1701L4.67023 22.3601C4.21023 22.6201 3.74023 22.7501 3.30023 22.7501ZM5.11023 6.63013C3.81023 6.63013 2.75024 7.69011 2.75024 8.99011V20.3501C2.75024 20.7601 2.87024 21.0801 3.06024 21.1901C3.25024 21.3001 3.59026 21.2501 3.95026 21.0501L7.88025 18.8601C8.52025 18.5101 9.48024 18.5101 10.1202 18.8601L14.0502 21.0501C14.4102 21.2501 14.7402 21.3001 14.9402 21.1901C15.1302 21.0801 15.2502 20.7601 15.2502 20.3501V8.99011C15.2502 7.69011 14.1903 6.63013 12.8903 6.63013H5.11023Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M14.69 22.7501C14.25 22.7501 13.79 22.6201 13.32 22.3701L9.39001 20.1801C9.20001 20.0801 8.78998 20.0801 8.59998 20.1801L4.67999 22.3701C3.82999 22.8401 2.95999 22.8801 2.29999 22.4901C1.62999 22.1001 1.25 21.3201 1.25 20.3601V9.00012C1.25 6.87012 2.97999 5.14014 5.10999 5.14014H12.89C15.02 5.14014 16.75 6.87012 16.75 9.00012V20.3601C16.75 21.3201 16.37 22.1001 15.7 22.4901C15.4 22.6601 15.06 22.7501 14.69 22.7501ZM9 18.6001C9.4 18.6001 9.79 18.6901 10.12 18.8701L14.05 21.0601C14.41 21.2601 14.75 21.3101 14.94 21.1901C15.13 21.0801 15.25 20.7601 15.25 20.3501V8.99011C15.25 7.69011 14.19 6.63013 12.89 6.63013H5.10999C3.80999 6.63013 2.75 7.69011 2.75 8.99011V20.3501C2.75 20.7601 2.87 21.0801 3.06 21.1901C3.25 21.3001 3.59001 21.2501 3.95001 21.0501L7.88 18.8601C8.20001 18.6901 8.6 18.6001 9 18.6001Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M20.69 18.87C20.25 18.87 19.79 18.74 19.32 18.49L15.63 16.43C15.39 16.3 15.25 16.05 15.25 15.78V9C15.25 7.7 14.19 6.64001 12.89 6.64001H8C7.59 6.64001 7.25 6.30001 7.25 5.89001V5.12C7.25 2.99 8.97999 1.26001 11.11 1.26001H18.89C21.02 1.26001 22.75 2.99 22.75 5.12V16.48C22.75 17.44 22.37 18.22 21.7 18.61C21.4 18.78 21.06 18.87 20.69 18.87ZM16.75 15.33L20.05 17.18C20.41 17.38 20.74 17.43 20.94 17.31C21.14 17.19 21.25 16.88 21.25 16.47V5.10999C21.25 3.80999 20.19 2.75 18.89 2.75H11.11C9.80999 2.75 8.75 3.80999 8.75 5.10999V5.13H12.89C15.02 5.13 16.75 6.85999 16.75 8.98999V15.33Z"
10
+ fill="currentColor" />
11
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" fill="currentColor">
2
+ <path d="M384 32H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H398.4c-5.2 25.8-22.9 47.1-46.4 57.3V448H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 128c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V153.3c-23.5-10.3-41.2-31.6-46.4-57.3H128c-17.7 0-32-14.3-32-32s14.3-32 32-32H256c14.6-19.4 37.8-32 64-32s49.4 12.6 64 32zm55.6 288H584.4L512 195.8 439.6 320zM512 416c-62.9 0-115.2-34-126-78.9c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C627.2 382 574.9 416 512 416zM126.8 195.8L54.4 320H199.3L126.8 195.8zM.9 337.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C242 382 189.7 416 126.8 416S11.7 382 .9 337.1z"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="search-2-line">
3
+ <path id="Vector" d="M9.25 2.5C12.976 2.5 16 5.524 16 9.25C16 12.976 12.976 16 9.25 16C5.524 16 2.5 12.976 2.5 9.25C2.5 5.524 5.524 2.5 9.25 2.5ZM9.25 14.5C12.1502 14.5 14.5 12.1502 14.5 9.25C14.5 6.349 12.1502 4 9.25 4C6.349 4 4 6.349 4 9.25C4 12.1502 6.349 14.5 9.25 14.5ZM15.6137 14.5532L17.7355 16.6742L16.6742 17.7355L14.5532 15.6137L15.6137 14.5532Z" fill="currentColor"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512">
2
+ <path d="M505.04 442.66l-99.71-99.69c-4.5-4.5-10.6-7-17-7h-16.3c27.6-35.3 44-79.69 44-127.99C416.03 93.09 322.92 0 208.02 0S0 93.09 0 207.98s93.11 207.98 208.02 207.98c48.3 0 92.71-16.4 128.01-44v16.3c0 6.4 2.5 12.5 7 17l99.71 99.69c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.59.1-33.99zm-297.02-90.7c-79.54 0-144-64.34-144-143.98 0-79.53 64.35-143.98 144-143.98 79.54 0 144 64.34 144 143.98 0 79.53-64.35 143.98-144 143.98zm27.11-152.54l-45.01-13.5c-5.16-1.55-8.77-6.78-8.77-12.73 0-7.27 5.3-13.19 11.8-13.19h28.11c4.56 0 8.96 1.29 12.82 3.72 3.24 2.03 7.36 1.91 10.13-.73l11.75-11.21c3.53-3.37 3.33-9.21-.57-12.14-9.1-6.83-20.08-10.77-31.37-11.35V112c0-4.42-3.58-8-8-8h-16c-4.42 0-8 3.58-8 8v16.12c-23.63.63-42.68 20.55-42.68 45.07 0 19.97 12.99 37.81 31.58 43.39l45.01 13.5c5.16 1.55 8.77 6.78 8.77 12.73 0 7.27-5.3 13.19-11.8 13.19h-28.1c-4.56 0-8.96-1.29-12.82-3.72-3.24-2.03-7.36-1.91-10.13.73l-11.75 11.21c-3.53 3.37-3.33 9.21.57 12.14 9.1 6.83 20.08 10.77 31.37 11.35V304c0 4.42 3.58 8 8 8h16c4.42 0 8-3.58 8-8v-16.12c23.63-.63 42.68-20.54 42.68-45.07 0-19.97-12.99-37.81-31.59-43.39z"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.5 21C16.7467 21 21 16.7467 21 11.5C21 6.25329 16.7467 2 11.5 2C6.25329 2 2 6.25329 2 11.5C2 16.7467 6.25329 21 11.5 21Z" fill="currentColor"/>
3
+ <path d="M21.3005 21.9996C21.1205 21.9996 20.9405 21.9296 20.8105 21.7996L18.9505 19.9396C18.6805 19.6696 18.6805 19.2296 18.9505 18.9496C19.2205 18.6796 19.6605 18.6796 19.9405 18.9496L21.8005 20.8096C22.0705 21.0796 22.0705 21.5196 21.8005 21.7996C21.6605 21.9296 21.4805 21.9996 21.3005 21.9996Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7.66732 14C11.1651 14 14.0007 11.1645 14.0007 7.66668C14.0007 4.16887 11.1651 1.33334 7.66732 1.33334C4.16951 1.33334 1.33398 4.16887 1.33398 7.66668C1.33398 11.1645 4.16951 14 7.66732 14Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M14.6673 14.6667L13.334 13.3333" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M21.3 22.0001C21.12 22.0001 20.94 21.9301 20.81 21.8001L18.95 19.9401C18.68 19.6701 18.68 19.2301 18.95 18.9501C19.22 18.6801 19.66 18.6801 19.94 18.9501L21.8 20.8101C22.07 21.0801 22.07 21.5201 21.8 21.8001C21.66 21.9301 21.48 22.0001 21.3 22.0001Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M11.5 2C6.26 2 2 6.26 2 11.5C2 16.74 6.26 21 11.5 21C16.74 21 21 16.74 21 11.5C21 6.26 16.74 2 11.5 2ZM14.2 12.45H12.45V14.2C12.45 14.61 12.11 14.95 11.7 14.95C11.29 14.95 10.95 14.61 10.95 14.2V12.45H9.2C8.79 12.45 8.45 12.11 8.45 11.7C8.45 11.29 8.79 10.95 9.2 10.95H10.95V9.2C10.95 8.79 11.29 8.45 11.7 8.45C12.11 8.45 12.45 8.79 12.45 9.2V10.95H14.2C14.61 10.95 14.95 11.29 14.95 11.7C14.95 12.11 14.61 12.45 14.2 12.45Z"
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="M11.5 21C16.7467 21 21 16.7467 21 11.5C21 6.25329 16.7467 2 11.5 2C6.25329 2 2 6.25329 2 11.5C2 16.7467 6.25329 21 11.5 21Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M21.3 22.0001C21.12 22.0001 20.94 21.9301 20.81 21.8001L18.95 19.9401C18.68 19.6701 18.68 19.2301 18.95 18.9501C19.22 18.6801 19.66 18.6801 19.94 18.9501L21.8 20.8101C22.07 21.0801 22.07 21.5201 21.8 21.8001C21.66 21.9301 21.48 22.0001 21.3 22.0001Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M14.2 10.95H12.45V9.19995C12.45 8.78995 12.11 8.44995 11.7 8.44995C11.29 8.44995 10.95 8.78995 10.95 9.19995V10.95H9.20001C8.79001 10.95 8.45001 11.29 8.45001 11.7C8.45001 12.11 8.79001 12.45 9.20001 12.45H10.95V14.2C10.95 14.61 11.29 14.95 11.7 14.95C12.11 14.95 12.45 14.61 12.45 14.2V12.45H14.2C14.61 12.45 14.95 12.11 14.95 11.7C14.95 11.29 14.61 10.95 14.2 10.95Z"
10
+ fill="currentColor" />
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.3333 19.5H23.6667" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
3
+ stroke-linejoin="round" />
4
+ <path d="M19.5 23.6667V15.3334" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
5
+ stroke-linejoin="round" />
6
+ <path
7
+ d="M19.1667 35C27.9112 35 35 27.9112 35 19.1667C35 10.4222 27.9112 3.33337 19.1667 3.33337C10.4222 3.33337 3.33333 10.4222 3.33333 19.1667C3.33333 27.9112 10.4222 35 19.1667 35Z"
8
+ stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
9
+ <path d="M36.6667 36.6667L33.3333 33.3334" stroke="currentColor" stroke-width="1.5"
10
+ stroke-linecap="round" stroke-linejoin="round" />
11
+ </svg>