@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,4 @@
1
+ <svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3.8269 10.6666C3.90023 10.3399 3.7669 9.87325 3.53357 9.63992L1.91356 8.01992C1.4069 7.51325 1.2069 6.97325 1.35356 6.50659C1.5069 6.03992 1.98023 5.71992 2.6869 5.59992L4.7669 5.25325C5.0669 5.19992 5.43356 4.93325 5.57356 4.65992L6.72023 2.35992C7.05357 1.69992 7.5069 1.33325 8.00023 1.33325C8.49357 1.33325 8.9469 1.69992 9.28023 2.35992L10.4269 4.65992C10.5136 4.83325 10.6936 4.99992 10.8869 5.11325L3.7069 12.2933C3.61356 12.3866 3.45356 12.2999 3.48023 12.1666L3.8269 10.6666Z" fill="#EAECF0"/>
3
+ <path d="M12.4672 9.64001C12.2272 9.88001 12.0939 10.34 12.1739 10.6667L12.6339 12.6733C12.8272 13.5067 12.7072 14.1333 12.2939 14.4333C12.1272 14.5533 11.9272 14.6133 11.6939 14.6133C11.3539 14.6133 10.9539 14.4867 10.5139 14.2267L8.56052 13.0667C8.25385 12.8867 7.74719 12.8867 7.44052 13.0667L5.48719 14.2267C4.74719 14.66 4.11385 14.7333 3.70719 14.4333C3.55385 14.32 3.44052 14.1667 3.36719 13.9667L11.4739 5.86001C11.7805 5.55335 12.2139 5.41335 12.6339 5.48668L13.3072 5.60001C14.0139 5.72001 14.4872 6.04001 14.6405 6.50668C14.7872 6.97335 14.5872 7.51335 14.0805 8.02001L12.4672 9.64001Z" fill="currentColor"/>
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="M13.7299 3.50989L15.4899 7.02989C15.7299 7.51989 16.3699 7.98989 16.9099 8.07989L20.0999 8.60989C22.1399 8.94989 22.6199 10.4299 21.1499 11.8899L18.6699 14.3699C18.2499 14.7899 18.0199 15.5999 18.1499 16.1799L18.8599 19.2499C19.4199 21.6799 18.1299 22.6199 15.9799 21.3499L12.9899 19.5799C12.4499 19.2599 11.5599 19.2599 11.0099 19.5799L8.01991 21.3499C5.87991 22.6199 4.57991 21.6699 5.13991 19.2499L5.84991 16.1799C5.97991 15.5999 5.74991 14.7899 5.32991 14.3699L2.84991 11.8899C1.38991 10.4299 1.85991 8.94989 3.89991 8.60989L7.08991 8.07989C7.61991 7.98989 8.25991 7.51989 8.49991 7.02989L10.2599 3.50989C11.2199 1.59989 12.7799 1.59989 13.7299 3.50989Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,17 @@
1
+ <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4"
3
+ d="M17.8248 6.50692V6.50829V13.4916C17.8248 14.9089 17.4043 15.98 16.688 16.6964C15.9716 17.4128 14.9004 17.8333 13.4832 17.8333H6.50817C5.09095 17.8333 4.01992 17.4128 3.30361 16.6956C2.58723 15.9783 2.1665 14.9051 2.1665 13.4833V6.50829C2.1665 5.09106 2.58702 4.01989 3.30339 3.30351C4.01977 2.58714 5.09094 2.16663 6.50817 2.16663H13.4915C14.9088 2.16663 15.9798 2.58718 16.695 3.30329C17.4101 4.0193 17.8287 5.09001 17.8248 6.50692Z"
4
+ fill="currentColor" stroke="currentColor" />
5
+ <path
6
+ d="M5.7334 15.2499C5.70325 15.2499 5.67197 15.2376 5.64633 15.212C5.62068 15.1863 5.6084 15.1551 5.6084 15.1249V13.3999C5.6084 13.3698 5.62068 13.3385 5.64633 13.3128C5.67197 13.2872 5.70325 13.2749 5.7334 13.2749C5.76355 13.2749 5.79483 13.2872 5.82047 13.3128C5.84611 13.3385 5.8584 13.3698 5.8584 13.3999V15.1249C5.8584 15.1944 5.80328 15.2499 5.7334 15.2499Z"
7
+ fill="currentColor" stroke="currentColor" />
8
+ <path
9
+ d="M10 15.25C9.96985 15.25 9.93857 15.2377 9.91293 15.212C9.88728 15.1864 9.875 15.1551 9.875 15.125V11.6666C9.875 11.6365 9.88728 11.6052 9.91293 11.5796C9.93857 11.5539 9.96985 11.5416 10 11.5416C10.0301 11.5416 10.0614 11.5539 10.0871 11.5796C10.1127 11.6052 10.125 11.6365 10.125 11.6666V15.125C10.125 15.1945 10.0699 15.25 10 15.25Z"
10
+ fill="currentColor" stroke="currentColor" />
11
+ <path
12
+ d="M14.2666 15.75C13.9249 15.75 13.6416 15.4667 13.6416 15.125V9.94165C13.6416 9.59998 13.9249 9.31665 14.2666 9.31665C14.6083 9.31665 14.8916 9.59998 14.8916 9.94165V15.125C14.8916 15.475 14.6166 15.75 14.2666 15.75Z"
13
+ fill="currentColor" />
14
+ <path
15
+ d="M14.8915 4.85C14.8915 4.80833 14.8748 4.75833 14.8665 4.71667C14.8582 4.68333 14.8498 4.64167 14.8415 4.60833C14.8248 4.575 14.7998 4.55 14.7832 4.51667C14.7582 4.48333 14.7332 4.44167 14.6998 4.41667C14.6915 4.40833 14.6915 4.4 14.6832 4.4C14.6582 4.38333 14.6332 4.375 14.6082 4.35833C14.5748 4.33333 14.5332 4.30833 14.4915 4.29167C14.4498 4.275 14.4082 4.275 14.3665 4.26667C14.3332 4.25833 14.3082 4.25 14.2748 4.25H11.8332C11.4915 4.25 11.2082 4.53333 11.2082 4.875C11.2082 5.21667 11.4915 5.5 11.8332 5.5H12.8748C10.8915 7.58333 8.39149 9.05 5.58315 9.75833C5.24982 9.84167 5.04149 10.1833 5.12482 10.5167C5.19149 10.8 5.44982 10.9917 5.73315 10.9917C5.78315 10.9917 5.83315 10.9833 5.88315 10.975C8.85815 10.2333 11.5165 8.69167 13.6415 6.50833V7.31667C13.6415 7.65833 13.9248 7.94167 14.2665 7.94167C14.6082 7.94167 14.8915 7.65833 14.8915 7.31667V4.875C14.8915 4.86667 14.8915 4.85833 14.8915 4.85Z"
16
+ fill="currentColor" />
17
+ </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" fill-rule="evenodd" clip-rule="evenodd" d="M12 0C18.6274 0 24 5.37256 24 12C24 18.6274 18.6274 24 12 24C5.37256 24 0 18.6274 0 12C0 5.37256 5.37256 0 12 0ZM12 2.53519C17.2273 2.53519 21.4648 6.77272 21.4648 12C21.4648 17.2273 17.2273 21.4648 12 21.4648C6.77272 21.4648 2.53519 17.2273 2.53519 12C2.53519 6.77272 6.77272 2.53519 12 2.53519Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M21.8485 11.0635C11.9663 5.38877 2.85152 10.5953 2.15371 11.0578C2.12309 11.3677 2.10742 11.3381 2.10742 12C2.10742 12.6619 2.26432 13.9751 2.55499 14.8845C3.36901 14.1826 4.85803 13.7578 6.01714 13.7578C9.3395 13.7578 12.089 18.4851 9.73619 21.6208C10.4618 21.7989 11.1512 21.8934 12.0008 21.8934C12.8504 21.8934 13.8075 21.7626 14.6473 21.5184C14.11 20.7603 13.7938 20.1884 13.7938 18.4051C13.7938 15.1297 18.4261 12.4193 21.5335 14.5969C21.7685 13.7717 21.8942 12.6083 21.8942 12C21.8942 11.3917 21.8787 11.3716 21.8485 11.0635ZM10.3952 12C10.3952 11.1132 11.114 10.3944 12.0008 10.3944C12.8876 10.3944 13.6064 11.1132 13.6064 12C13.6064 12.8868 12.8876 13.6056 12.0008 13.6056C11.114 13.6056 10.3952 12.8868 10.3952 12Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M20.36 7.78L4.54 17.28C3.93 17.65 3.11 17.28 3.03 16.57C3.01 16.38 3 16.19 3 16V8C3 5 5 3 8 3H16C19 3 20.23 4.54 20.81 6.65C20.93 7.09 20.74 7.55 20.36 7.78Z" fill="currentColor"/>
3
+ <path d="M21 11.09V16C21 19 19 21 16 21H8C7.08 21 6.21 20.75 5.47 20.31C4.83 19.94 4.87 19 5.5 18.62L19.48 10.23C20.15 9.83001 21 10.31 21 11.09Z" fill="currentColor"/>
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="M9.3 21H14.7C19.2 21 21 19.2 21 14.7V9.3C21 4.8 19.2 3 14.7 3H9.3C4.8 3 3 4.8 3 9.3V14.7C3 19.2 4.8 21 9.3 21Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M13.3296 6.97853C15.1677 8.8166 15.1677 11.8 13.3296 13.6381C11.4916 15.4761 8.50813 15.4761 6.67006 13.6381C4.83199 11.8 4.83199 8.8166 6.67006 6.97853C8.50813 5.14046 11.4916 5.14046 13.3296 6.97853Z"
4
+ fill="currentColor" stroke="currentColor" />
5
+ <path opacity="0.4"
6
+ d="M1.61227 9.24844L1.61229 9.24844L1.61285 9.24385C1.61607 9.21748 1.63057 9.18907 1.66077 9.16599C1.69193 9.14217 1.72673 9.1343 1.75451 9.13777L1.756 9.13796C1.81648 9.14533 1.87097 9.20645 1.86187 9.28113L2.35819 9.34166L1.86228 9.27783C1.63167 11.0695 1.98696 12.846 2.88287 14.4072L2.88361 14.4084C3.80458 16.0024 5.1973 17.2194 6.90863 17.9037C6.97937 17.9351 7.009 18.0117 6.9832 18.0788L6.98314 18.0788L6.98043 18.0862C6.97306 18.1063 6.95954 18.1237 6.93929 18.1373C6.91758 18.152 6.89358 18.1583 6.87487 18.1583C6.8678 18.1583 6.84379 18.1558 6.81105 18.1459C5.04948 17.4372 3.62471 16.1911 2.66601 14.5413C1.73729 12.9274 1.36843 11.1048 1.61227 9.24844Z"
7
+ fill="currentColor" stroke="currentColor" />
8
+ <path opacity="0.4"
9
+ d="M4.87516 4.35834C4.69183 4.35834 4.5085 4.27502 4.3835 4.11669C4.16683 3.84169 4.21684 3.45003 4.49184 3.2417C6.0835 2.00003 7.98349 1.34167 10.0002 1.34167C11.9668 1.34167 13.8418 1.97502 15.4168 3.17502C15.6918 3.38335 15.7418 3.77501 15.5335 4.05001C15.3252 4.32501 14.9335 4.37502 14.6585 4.16669C13.3085 3.13335 11.7002 2.59167 10.0002 2.59167C8.26683 2.59167 6.62516 3.15836 5.25849 4.22503C5.14182 4.31669 5.0085 4.35834 4.87516 4.35834Z"
10
+ fill="currentColor" />
11
+ <path opacity="0.4"
12
+ d="M13.1248 18.6583C12.8748 18.6583 12.6414 18.5082 12.5414 18.2666C12.4164 17.9499 12.5664 17.5833 12.8914 17.4499C14.4998 16.7999 15.8081 15.6666 16.6748 14.1666C17.5248 12.6999 17.8581 11.0332 17.6331 9.34991C17.5914 9.00824 17.8331 8.6916 18.1748 8.64993C18.5081 8.60827 18.8331 8.84995 18.8748 9.19162C19.1248 11.15 18.7414 13.0916 17.7581 14.7999C16.7498 16.5499 15.2248 17.8666 13.3498 18.6249C13.2831 18.6416 13.2081 18.6583 13.1248 18.6583Z"
13
+ fill="currentColor" />
14
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M20 18C21.26 16.33 22 14.25 22 12C22 9.75 21.26 7.67 20 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M4 6C2.74 7.67 2 9.75 2 12C2 14.25 2.74 16.33 4 18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M16.7998 15.5999C17.5498 14.5999 17.9998 13.3499 17.9998 11.9999C17.9998 10.6499 17.5498 9.3999 16.7998 8.3999" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M7.20001 8.3999C6.45001 9.3999 6 10.6499 6 11.9999C6 13.3499 6.45001 14.5999 7.20001 15.5999" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </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.69 14.05C17.65 14.14 17.6 14.22 17.53 14.29L14.58 17.24C14.43 17.39 14.24 17.46 14.05 17.46C13.86 17.46 13.67 17.39 13.52 17.24C13.23 16.95 13.23 16.47 13.52 16.18L15.19 14.51H7C6.59 14.51 6.25 14.17 6.25 13.76C6.25 13.35 6.59 13.01 7 13.01H17C17.1 13.01 17.19 13.03 17.29 13.07C17.47 13.15 17.62 13.29 17.7 13.48C17.77 13.66 17.77 13.86 17.69 14.05ZM17 10.99H7C6.9 10.99 6.81 10.97 6.71 10.93C6.53 10.85 6.38 10.71 6.3 10.52C6.22 10.34 6.22 10.13 6.3 9.95C6.35 9.86 6.4 9.78 6.47 9.71L9.42 6.76C9.71 6.47 10.19 6.47 10.48 6.76C10.77 7.05 10.77 7.53 10.48 7.82L8.81 9.49H17C17.41 9.49 17.75 9.83 17.75 10.24C17.75 10.65 17.41 10.99 17 10.99Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M20.5 14.99L15.49 20.01" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M3.5 14.99H20.5" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M3.5 9.00999L8.51 3.98999" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M20.5 9.01001H3.5" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.13847 18.8155C4.01556 18.6926 3.90344 18.5632 3.79966 18.4293L0.472656 21.7564L2.48031 23.764L5.80741 20.437C5.67353 20.3332 5.54411 20.221 5.4212 20.0982L4.13847 18.8155Z" fill="currentColor"/>
3
+ <path opacity="0.4" d="M20.201 18.4293C20.0972 18.5632 19.9851 18.6927 19.8622 18.8155L18.5795 20.0982C18.4567 20.2211 18.3272 20.3332 18.1934 20.437L21.5201 23.7637L23.5278 21.756L20.201 18.4293Z" fill="currentColor"/>
4
+ <path opacity="0.4" d="M13.1991 19.4545L13.3385 19.5939C14.3704 20.6257 16.0432 20.6257 17.075 19.5939L19.3588 17.3102C20.3906 16.2784 20.3906 14.6055 19.3588 13.5737L19.2194 13.4343L17.7104 14.9396L16.0111 13.2403L13 16.2513L14.6994 17.9507L13.1991 19.4545Z" fill="currentColor"/>
5
+ <path opacity="0.4" d="M10.996 8.2207L6.76856 3.99328C4.96706 2.19169 2.7097 0.913689 0.237937 0.295736L0 0.236252L0.0594844 0.474236C0.677437 2.94595 1.95548 5.20327 3.75708 7.00481L7.98455 11.2323L10.996 8.2207Z" fill="currentColor"/>
6
+ <path d="M20.2421 7.00453C22.0437 5.20293 23.3218 2.94567 23.9397 0.473947L23.9992 0.235916L23.7612 0.295401C21.2896 0.913354 19.0322 2.1914 17.2307 3.99299L6.28417 14.9396L4.7785 13.4339L4.63909 13.5733C3.60728 14.6051 3.60728 16.278 4.63909 17.3098L6.92552 19.5962C7.95733 20.6281 9.63016 20.6281 10.662 19.5962L10.8014 19.4568L9.29566 17.9511L20.2421 7.00453Z" fill="currentColor"/>
7
+ </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,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512">
2
+ <path d="M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm64 0v64h64V96H64zm384 0H192v64H448V96zM64 224v64h64V224H64zm384 0H192v64H448V224zM64 352v64h64V352H64zm384 0H192v64H448V352z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.8319 8.69999L15.3019 4.16999C14.3519 3.21999 13.0419 2.70999 11.7019 2.77999L6.70193 3.01999C4.70193 3.10999 3.11193 4.69999 3.01193 6.68999L2.77193 11.69C2.71193 13.03 3.21193 14.34 4.16193 15.29L8.69193 19.82C10.5519 21.68 13.5719 21.68 15.4419 19.82L19.8319 15.43C21.7019 13.58 21.7019 10.56 19.8319 8.69999ZM9.50193 12.38C7.92193 12.38 6.62193 11.09 6.62193 9.49999C6.62193 7.90999 7.92193 6.61999 9.50193 6.61999C11.0819 6.61999 12.3819 7.90999 12.3819 9.49999C12.3819 11.09 11.0819 12.38 9.50193 12.38ZM17.5319 13.53L13.5319 17.53C13.3819 17.68 13.1919 17.75 13.0019 17.75C12.8119 17.75 12.6219 17.68 12.4719 17.53C12.1819 17.24 12.1819 16.76 12.4719 16.47L16.4719 12.47C16.7619 12.18 17.2419 12.18 17.5319 12.47C17.8219 12.76 17.8219 13.24 17.5319 13.53Z" 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="M4.40524 15.5264L8.93524 20.0564C10.7952 21.9164 13.8152 21.9164 15.6852 20.0564L20.0752 15.6664C21.9352 13.8064 21.9352 10.7864 20.0752 8.91637L15.5352 4.39637C14.5852 3.44637 13.2752 2.93637 11.9352 3.00637L6.93524 3.24637C4.93524 3.33637 3.34524 4.92637 3.24524 6.91637L3.00524 11.9164C2.94524 13.2664 3.45524 14.5764 4.40524 15.5264Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M9.73535 12.2264C11.1161 12.2264 12.2354 11.1071 12.2354 9.72638C12.2354 8.34567 11.1161 7.22638 9.73535 7.22638C8.35464 7.22638 7.23535 8.34567 7.23535 9.72638C7.23535 11.1071 8.35464 12.2264 9.73535 12.2264Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
4
+ <path d="M13.2354 17.2264L17.2354 13.2264" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.8319 8.69999L15.3019 4.16999C14.3519 3.21999 13.0419 2.70999 11.7019 2.77999L6.70193 3.01999C4.70193 3.10999 3.11193 4.69999 3.01193 6.68999L2.77193 11.69C2.71193 13.03 3.21193 14.34 4.16193 15.29L8.69193 19.82C10.5519 21.68 13.5719 21.68 15.4419 19.82L19.8319 15.43C21.7019 13.58 21.7019 10.56 19.8319 8.69999ZM9.50193 12.38C7.91193 12.38 6.62193 11.09 6.62193 9.49999C6.62193 7.90999 7.91193 6.61999 9.50193 6.61999C11.0919 6.61999 12.3819 7.90999 12.3819 9.49999C12.3819 11.09 11.0919 12.38 9.50193 12.38Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4"
3
+ d="M4.17001 15.3L8.70001 19.83C10.56 21.6901 13.58 21.6901 15.45 19.83L19.84 15.44C21.7 13.58 21.7 10.56 19.84 8.69005L15.3 4.17005C14.35 3.22005 13.04 2.71005 11.7 2.78005L6.70001 3.02005C4.70001 3.11005 3.11001 4.70005 3.01001 6.69005L2.77001 11.69C2.71001 13.04 3.22001 14.35 4.17001 15.3Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M9.5 12.38C11.0906 12.38 12.38 11.0906 12.38 9.5C12.38 7.90942 11.0906 6.62 9.5 6.62C7.90942 6.62 6.62 7.90942 6.62 9.5C6.62 11.0906 7.90942 12.38 9.5 12.38Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M18 18.86H17.24C16.44 18.86 15.68 19.17 15.12 19.73L13.41 21.42C12.63 22.19 11.36 22.19 10.58 21.42L8.87 19.73C8.31 19.17 7.54 18.86 6.75 18.86H6C4.34 18.86 3 17.53 3 15.89V4.97C3 3.33 4.34 2 6 2H18C19.66 2 21 3.33 21 4.97V15.88C21 17.52 19.66 18.86 18 18.86Z" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M12.0701 8.94999C12.0301 8.94999 11.97 8.94999 11.92 8.94999C10.87 8.90999 10.04 8.05999 10.04 6.99999C10.04 5.91999 10.9101 5.04999 11.9901 5.04999C13.0701 5.04999 13.9401 5.92999 13.9401 6.99999C13.9501 8.05999 13.1201 8.91999 12.0701 8.94999Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M9.24994 11.96C7.91994 12.85 7.91994 14.3 9.24994 15.19C10.7599 16.2 13.2399 16.2 14.7499 15.19C16.0799 14.3 16.0799 12.85 14.7499 11.96C13.2399 10.96 10.7699 10.96 9.24994 11.96Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.17038 15.3L8.70038 19.83C10.5604 21.69 13.5804 21.69 15.4504 19.83L19.8404 15.44C21.7004 13.58 21.7004 10.56 19.8404 8.69005L15.3004 4.17005C14.3504 3.22005 13.0404 2.71005 11.7004 2.78005L6.70038 3.02005C4.70038 3.11005 3.11038 4.70005 3.01038 6.69005L2.77038 11.69C2.71038 13.04 3.22038 14.35 4.17038 15.3Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M9.50049 12.0001C10.8812 12.0001 12.0005 10.8808 12.0005 9.50006C12.0005 8.11935 10.8812 7.00006 9.50049 7.00006C8.11978 7.00006 7.00049 8.11935 7.00049 9.50006C7.00049 10.8808 8.11978 12.0001 9.50049 12.0001Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4" d="M18.3801 12.84V17.77C18.3801 19.04 17.3901 20.4 16.2001 20.8L13.0101 21.86C12.4501 22.05 11.5401 22.05 10.9901 21.86L7.80012 20.8C6.60012 20.4 5.62012 19.04 5.62012 17.77L5.63012 12.84L10.0501 15.72C11.1301 16.43 12.9101 16.43 13.9901 15.72L18.3801 12.84Z" fill="currentColor"/>
3
+ <path d="M19.98 6.46006L13.99 2.53006C12.91 1.82006 11.13 1.82006 10.05 2.53006L4.03002 6.46006C2.10002 7.71006 2.10002 10.5401 4.03002 11.8001L5.63002 12.8401L10.05 15.7201C11.13 16.4301 12.91 16.4301 13.99 15.7201L18.38 12.8401L19.75 11.9401V15.0001C19.75 15.4101 20.09 15.7501 20.5 15.7501C20.91 15.7501 21.25 15.4101 21.25 15.0001V10.0801C21.65 8.79006 21.24 7.29006 19.98 6.46006Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 384 512">
2
+ <path d="M32 32C32 14.3 46.3 0 64 0H320c17.7 0 32 14.3 32 32s-14.3 32-32 32H290.5l11.4 148.2c36.7 19.9 65.7 53.2 79.5 94.7l1 3c3.3 9.8 1.6 20.5-4.4 28.8s-15.7 13.3-26 13.3H32c-10.3 0-19.9-4.9-26-13.3s-7.7-19.1-4.4-28.8l1-3c13.8-41.5 42.8-74.8 79.5-94.7L93.5 64H64C46.3 64 32 49.7 32 32zM160 384h64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z"/>
3
+ </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="M12 3C6.49 3 2 7.49 2 13C2 18.51 6.49 23 12 23C17.51 23 22 18.51 22 13C22 7.49 17.51 3 12 3ZM16.78 10.7L11.11 16.37C10.97 16.51 10.78 16.59 10.58 16.59C10.38 16.59 10.19 16.51 10.05 16.37L7.22 13.54C6.93 13.25 6.93 12.77 7.22 12.48C7.51 12.19 7.99 12.19 8.28 12.48L10.58 14.78L15.72 9.64C16.01 9.35 16.49 9.35 16.78 9.64C17.07 9.93 17.07 10.4 16.78 10.7Z"
4
+ fill="currentColor" />
5
+ </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="M10.5799 15.5801C10.3799 15.5801 10.1899 15.5001 10.0499 15.3601L7.21994 12.5301C6.92994 12.2401 6.92994 11.7601 7.21994 11.4701C7.50994 11.1801 7.98994 11.1801 8.27994 11.4701L10.5799 13.7701L15.7199 8.6301C16.0099 8.3401 16.4899 8.3401 16.7799 8.6301C17.0699 8.9201 17.0699 9.4001 16.7799 9.6901L11.1099 15.3601C10.9699 15.5001 10.7799 15.5801 10.5799 15.5801Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 22C17.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M7.75 11.9999L10.58 14.8299L16.25 9.16992" 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="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 2ZM16.78 9.7L11.11 15.37C10.97 15.51 10.78 15.59 10.58 15.59C10.38 15.59 10.19 15.51 10.05 15.37L7.22 12.54C6.93 12.25 6.93 11.77 7.22 11.48C7.51 11.19 7.99 11.19 8.28 11.48L10.58 13.78L15.72 8.64C16.01 8.35 16.49 8.35 16.78 8.64C17.07 8.93 17.07 9.4 16.78 9.7Z" 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="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="M7.75 11.9999L10.58 14.8299L16.25 9.16992" 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="M6 12L10 16L18.0141 8" stroke="currentColor" stroke-width="2.12014" stroke-linecap="round" stroke-linejoin="round"/>
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="M12 22.75C6.76 22.75 2.5 18.49 2.5 13.25C2.5 8.01 6.76 3.75 12 3.75C17.24 3.75 21.5 8.01 21.5 13.25C21.5 18.49 17.24 22.75 12 22.75ZM12 5.25C7.59 5.25 4 8.84 4 13.25C4 17.66 7.59 21.25 12 21.25C16.41 21.25 20 17.66 20 13.25C20 8.84 16.41 5.25 12 5.25Z" fill="currentColor"/>
3
+ <path d="M12 13.75C11.59 13.75 11.25 13.41 11.25 13V8C11.25 7.59 11.59 7.25 12 7.25C12.41 7.25 12.75 7.59 12.75 8V13C12.75 13.41 12.41 13.75 12 13.75Z" fill="currentColor"/>
4
+ <path d="M15 2.75H9C8.59 2.75 8.25 2.41 8.25 2C8.25 1.59 8.59 1.25 9 1.25H15C15.41 1.25 15.75 1.59 15.75 2C15.75 2.41 15.41 2.75 15 2.75Z" fill="currentColor"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13.86 3.86011H10.14C5.65 3.86011 2 7.51011 2 12.0001C2 16.4901 5.65 20.1401 10.14 20.1401H13.86C18.35 20.1401 22 16.4901 22 12.0001C22 7.51011 18.35 3.86011 13.86 3.86011ZM10.14 16.4201C7.7 16.4201 5.72 14.4401 5.72 12.0001C5.72 9.56011 7.7 7.58011 10.14 7.58011C12.58 7.58011 14.56 9.56011 14.56 12.0001C14.56 14.4401 12.58 16.4201 10.14 16.4201Z" 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="M10 4H14C18.42 4 22 7.58 22 12C22 16.42 18.42 20 14 20H10C5.58 20 2 16.42 2 12C2 7.58 5.58 4 10 4Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M10 16C12.2091 16 14 14.2091 14 12C14 9.79086 12.2091 8 10 8C7.79086 8 6 9.79086 6 12C6 14.2091 7.79086 16 10 16Z" 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="M13.86 3.86011H10.14C5.65 3.86011 2 7.51011 2 12.0001C2 16.4901 5.65 20.1401 10.14 20.1401H13.86C18.35 20.1401 22 16.4901 22 12.0001C22 7.51011 18.35 3.86011 13.86 3.86011ZM13.86 16.4201C11.42 16.4201 9.44 14.4401 9.44 12.0001C9.44 9.56011 11.42 7.58011 13.86 7.58011C16.3 7.58011 18.28 9.56011 18.28 12.0001C18.28 14.4401 16.3 16.4201 13.86 16.4201Z" 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="M10 4H14C18.42 4 22 7.58 22 12C22 16.42 18.42 20 14 20H10C5.58 20 2 16.42 2 12C2 7.58 5.58 4 10 4Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M14 16C16.2091 16 18 14.2091 18 12C18 9.79086 16.2091 8 14 8C11.7909 8 10 9.79086 10 12C10 14.2091 11.7909 16 14 16Z" 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="M112 0c6.5 0 12.3 3.9 14.8 9.9s1.1 12.9-3.5 17.4l-31 31L112 78.1l7-7c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-7 7 15.2 15.2C187.7 107.6 220.5 96 256 96s68.3 11.6 94.9 31.2l68.8-68.8-31-31c-4.6-4.6-5.9-11.5-3.5-17.4s8.3-9.9 14.8-9.9h96c8.8 0 16 7.2 16 16v96c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5l-31-31-68.8 68.8C404.4 187.7 416 220.5 416 256c0 80.2-59 146.6-136 158.2V432h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H280v8c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h16V414.2C155 402.6 96 336.2 96 256c0-35.5 11.6-68.3 31.2-94.9L112 145.9l-7 7c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l7-7L58.3 92.3l-31 31c-4.6 4.6-11.5 5.9-17.4 3.5S0 118.5 0 112V16C0 7.2 7.2 0 16 0h96zM352 256a96 96 0 1 0 -192 0 96 96 0 1 0 192 0z"/>
3
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.0615 18.67L16.9215 14.4L14.7815 18.67" stroke="currentColor" stroke-width="1.5"
3
+ stroke-linecap="round" stroke-linejoin="round" />
4
+ <path d="M15.1714 17.91H18.6915" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
5
+ stroke-linejoin="round" />
6
+ <path
7
+ d="M16.9215 22C14.1215 22 11.8415 19.73 11.8415 16.92C11.8415 14.12 14.1115 11.84 16.9215 11.84C19.7215 11.84 22.0015 14.11 22.0015 16.92C22.0015 19.73 19.7315 22 16.9215 22Z"
8
+ stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
9
+ <path
10
+ d="M5.02147 2H8.94147C11.0115 2 12.0115 3.00002 11.9615 5.02002V8.94C12.0115 11.01 11.0115 12.01 8.94147 11.96H5.02147C3.00147 12 2.00146 11 2.00146 8.92999V5.01001C2.00146 3.00001 3.00147 2 5.02147 2Z"
11
+ stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
12
+ <path d="M9.01147 5.84998H4.95148" stroke="currentColor" stroke-width="1.5"
13
+ stroke-linecap="round" stroke-linejoin="round" />
14
+ <path d="M6.97147 5.16998V5.84998" stroke="currentColor" stroke-width="1.5"
15
+ stroke-linecap="round" stroke-linejoin="round" />
16
+ <path d="M7.99147 5.84003C7.99147 7.59003 6.62147 9.01001 4.94147 9.01001" stroke="currentColor"
17
+ stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
18
+ <path d="M9.01146 9.01001C8.28146 9.01001 7.62147 8.62 7.16147 8" stroke="currentColor"
19
+ stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
20
+ <path d="M2.00146 15C2.00146 18.87 5.13146 22 9.00146 22L7.95146 20.25" stroke="currentColor"
21
+ stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
22
+ <path d="M22.0015 9C22.0015 5.13 18.8715 2 15.0015 2L16.0515 3.75" stroke="currentColor"
23
+ stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
24
+ </svg>
@@ -0,0 +1,20 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4"
3
+ d="M16.9215 22C14.1215 22 11.8415 19.73 11.8415 16.92C11.8415 14.12 14.1115 11.84 16.9215 11.84C19.7215 11.84 22.0015 14.11 22.0015 16.92C22.0015 19.73 19.7315 22 16.9215 22Z"
4
+ fill="currentColor" />
5
+ <path opacity="0.4"
6
+ d="M5.02147 2H8.94147C11.0115 2 12.0115 2.99999 11.9615 5.01999V8.94C12.0115 11.01 11.0115 12.01 8.94147 11.96H5.02147C3.00147 12 2.00146 11 2.00146 8.92999V5.01001C2.00146 3.00001 3.00147 2 5.02147 2Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M9.01146 8.26004C8.70146 8.26004 8.41146 8.14003 8.14146 7.94003C8.39146 7.54003 8.57147 7.09004 8.66147 6.60004H9.00146C9.41146 6.60004 9.75146 6.26004 9.75146 5.85004C9.75146 5.44004 9.41146 5.10004 9.00146 5.10004H8.01146C8.00146 5.10004 7.99147 5.10004 7.99147 5.10004H7.97147H7.71147C7.67147 4.72004 7.36147 4.42004 6.97147 4.42004C6.58147 4.42004 6.27146 4.72004 6.23146 5.10004H4.94147C4.53147 5.10004 4.19147 5.44004 4.19147 5.85004C4.19147 6.26004 4.53147 6.60004 4.94147 6.60004H7.11147C6.81147 7.56004 5.95146 8.26004 4.93146 8.26004C4.52146 8.26004 4.18146 8.60004 4.18146 9.01004C4.18146 9.42004 4.52146 9.76004 4.93146 9.76004C5.74146 9.76004 6.49147 9.49004 7.11147 9.04004C7.66147 9.50004 8.32147 9.76004 9.00146 9.76004C9.41146 9.76004 9.75146 9.42004 9.75146 9.01004C9.75146 8.60004 9.42146 8.26004 9.01146 8.26004Z"
10
+ fill="currentColor" />
11
+ <path
12
+ d="M9.00146 22.75C4.73146 22.75 1.25146 19.27 1.25146 15C1.25146 14.59 1.59146 14.25 2.00146 14.25C2.41146 14.25 2.75146 14.59 2.75146 15C2.75146 17.96 4.81147 20.44 7.58147 21.09L7.31146 20.64C7.10146 20.28 7.21147 19.82 7.57147 19.61C7.92147 19.4 8.39147 19.51 8.60147 19.87L9.65146 21.62C9.79146 21.85 9.79147 22.14 9.66147 22.37C9.52147 22.6 9.27147 22.75 9.00146 22.75Z"
13
+ fill="currentColor" />
14
+ <path
15
+ d="M22.0015 9.75C21.5915 9.75 21.2515 9.41 21.2515 9C21.2515 6.04 19.1915 3.56 16.4215 2.91L16.6915 3.35999C16.9015 3.71999 16.7915 4.18001 16.4315 4.39001C16.0815 4.60001 15.6115 4.49001 15.4015 4.13L14.3515 2.38C14.2115 2.15 14.2115 1.86 14.3415 1.63C14.4715 1.39 14.7215 1.25 14.9915 1.25C19.2615 1.25 22.7415 4.73 22.7415 9C22.7515 9.41 22.4115 9.75 22.0015 9.75Z"
16
+ fill="currentColor" />
17
+ <path
18
+ d="M19.7314 18.33L17.5914 14.06C17.4614 13.81 17.2014 13.64 16.9214 13.64C16.6414 13.64 16.3814 13.8 16.2514 14.05L14.1114 18.32C13.9214 18.69 14.0714 19.14 14.4514 19.33C14.5614 19.38 14.6714 19.41 14.7814 19.41C15.0514 19.41 15.3214 19.26 15.4514 19L15.6214 18.66H18.2115L18.3815 19C18.5715 19.37 19.0214 19.52 19.3914 19.34C19.7714 19.15 19.9214 18.7 19.7314 18.33ZM16.3815 17.16L16.9314 16.07L17.4814 17.16H16.3815Z"
19
+ fill="currentColor" />
20
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.0615 18.67L16.9215 14.4L14.7815 18.67" stroke="currentColor" stroke-width="1.5"
3
+ stroke-linecap="round" stroke-linejoin="round" />
4
+ <path d="M15.1714 17.91H18.6915" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
5
+ stroke-linejoin="round" />
6
+ <path
7
+ d="M16.9215 22C14.1215 22 11.8415 19.73 11.8415 16.92C11.8415 14.12 14.1115 11.84 16.9215 11.84C19.7215 11.84 22.0015 14.11 22.0015 16.92C22.0015 19.73 19.7315 22 16.9215 22Z"
8
+ stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
9
+ <path
10
+ d="M5.02147 2H8.94147C11.0115 2 12.0115 3.00002 11.9615 5.02002V8.94C12.0115 11.01 11.0115 12.01 8.94147 11.96H5.02147C3.00147 12 2.00146 11 2.00146 8.92999V5.01001C2.00146 3.00001 3.00147 2 5.02147 2Z"
11
+ stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
12
+ <path d="M9.01147 5.84998H4.95148" stroke="currentColor" stroke-width="1.5"
13
+ stroke-linecap="round" stroke-linejoin="round" />
14
+ <path d="M6.97147 5.16998V5.84998" stroke="currentColor" stroke-width="1.5"
15
+ stroke-linecap="round" stroke-linejoin="round" />
16
+ <path d="M7.99147 5.84003C7.99147 7.59003 6.62147 9.01001 4.94147 9.01001" stroke="currentColor"
17
+ stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
18
+ <path d="M9.01146 9.01001C8.28146 9.01001 7.62147 8.62 7.16147 8" stroke="currentColor"
19
+ stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
20
+ <path d="M2.00146 15C2.00146 18.87 5.13146 22 9.00146 22L7.95146 20.25" stroke="currentColor"
21
+ stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
22
+ <path d="M22.0015 9C22.0015 5.13 18.8715 2 15.0015 2L16.0515 3.75" stroke="currentColor"
23
+ stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
24
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.0702 5.23C19.4602 5.07 17.8502 4.95 16.2302 4.86V4.85L16.0102 3.55C15.8602 2.63 15.6402 1.25 13.3002 1.25H10.6802C8.35016 1.25 8.13016 2.57 7.97016 3.54L7.76016 4.82C6.83016 4.88 5.90016 4.94 4.97016 5.03L2.93016 5.23C2.51016 5.27 2.21016 5.64 2.25016 6.05C2.29016 6.46 2.65016 6.76 3.07016 6.72L5.11016 6.52C10.3502 6 15.6302 6.2 20.9302 6.73C20.9602 6.73 20.9802 6.73 21.0102 6.73C21.3902 6.73 21.7202 6.44 21.7602 6.05C21.7902 5.64 21.4902 5.27 21.0702 5.23Z" fill="currentColor"/>
3
+ <path d="M19.2302 8.14C18.9902 7.89 18.6602 7.75 18.3202 7.75H5.68024C5.34024 7.75 5.00024 7.89 4.77024 8.14C4.54024 8.39 4.41024 8.73 4.43024 9.08L5.05024 19.34C5.16024 20.86 5.30024 22.76 8.79024 22.76H15.2102C18.7002 22.76 18.8402 20.87 18.9502 19.34L19.5702 9.09C19.5902 8.73 19.4602 8.39 19.2302 8.14ZM13.6602 17.75H10.3302C9.92024 17.75 9.58024 17.41 9.58024 17C9.58024 16.59 9.92024 16.25 10.3302 16.25H13.6602C14.0702 16.25 14.4102 16.59 14.4102 17C14.4102 17.41 14.0702 17.75 13.6602 17.75ZM14.5002 13.75H9.50024C9.09024 13.75 8.75024 13.41 8.75024 13C8.75024 12.59 9.09024 12.25 9.50024 12.25H14.5002C14.9102 12.25 15.2502 12.59 15.2502 13C15.2502 13.41 14.9102 13.75 14.5002 13.75Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M21.0702 5.23C19.4602 5.07 17.8502 4.95 16.2302 4.86V4.85L16.0102 3.55C15.8602 2.63 15.6402 1.25 13.3002 1.25H10.6802C8.35016 1.25 8.13016 2.57 7.97016 3.54L7.76016 4.82C6.83016 4.88 5.90016 4.94 4.97016 5.03L2.93016 5.23C2.51016 5.27 2.21016 5.64 2.25016 6.05C2.29016 6.46 2.65016 6.76 3.07016 6.72L5.11016 6.52C10.3502 6 15.6302 6.2 20.9302 6.73C20.9602 6.73 20.9802 6.73 21.0102 6.73C21.3902 6.73 21.7202 6.44 21.7602 6.05C21.7902 5.64 21.4902 5.27 21.0702 5.23Z"
4
+ fill="currentColor" />
5
+ <path opacity="0.3991"
6
+ d="M19.2302 8.14C18.9902 7.89 18.6602 7.75 18.3202 7.75H5.68024C5.34024 7.75 5.00024 7.89 4.77024 8.14C4.54024 8.39 4.41024 8.73 4.43024 9.08L5.05024 19.34C5.16024 20.86 5.30024 22.76 8.79024 22.76H15.2102C18.7002 22.76 18.8402 20.87 18.9502 19.34L19.5702 9.09C19.5902 8.73 19.4602 8.39 19.2302 8.14Z"
7
+ fill="currentColor" />
8
+ <path fill-rule="evenodd" clip-rule="evenodd"
9
+ d="M9.58008 17C9.58008 16.5858 9.91586 16.25 10.3301 16.25H13.6601C14.0743 16.25 14.4101 16.5858 14.4101 17C14.4101 17.4142 14.0743 17.75 13.6601 17.75H10.3301C9.91586 17.75 9.58008 17.4142 9.58008 17Z"
10
+ fill="currentColor" />
11
+ <path fill-rule="evenodd" clip-rule="evenodd"
12
+ d="M8.75 13C8.75 12.5858 9.08579 12.25 9.5 12.25H14.5C14.9142 12.25 15.25 12.5858 15.25 13C15.25 13.4142 14.9142 13.75 14.5 13.75H9.5C9.08579 13.75 8.75 13.4142 8.75 13Z"
13
+ fill="currentColor" />
14
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21 5.97998C17.67 5.64998 14.32 5.47998 10.98 5.47998C9 5.47998 7.02 5.57998 5.04 5.77998L3 5.97998" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M8.5 4.97L8.72 3.66C8.88 2.71 9 2 10.69 2H13.31C15 2 15.13 2.75 15.28 3.67L15.5 4.97" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M18.8499 9.13989L18.1999 19.2099C18.0899 20.7799 17.9999 21.9999 15.2099 21.9999H8.7899C5.9999 21.9999 5.9099 20.7799 5.7999 19.2099L5.1499 9.13989" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M10.3301 16.5H13.6601" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M9.5 12.5H14.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </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="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 2ZM16.88 11.53C16.88 11.92 16.57 12.23 16.18 12.23C15.79 12.23 15.48 11.92 15.48 11.53V11.35L12.76 14.07C12.61 14.22 12.41 14.29 12.2 14.27C11.99 14.25 11.8 14.14 11.69 13.96L10.67 12.44L8.29 14.82C8.15 14.96 7.98 15.02 7.8 15.02C7.62 15.02 7.44 14.95 7.31 14.82C7.04 14.55 7.04 14.11 7.31 13.83L10.29 10.85C10.44 10.7 10.64 10.63 10.85 10.65C11.06 10.67 11.25 10.78 11.36 10.96L12.38 12.48L14.49 10.37H14.31C13.92 10.37 13.61 10.06 13.61 9.67C13.61 9.28 13.92 8.97 14.31 8.97H16.17C16.26 8.97 16.35 8.99 16.44 9.02C16.61 9.09 16.75 9.23 16.82 9.4C16.86 9.49 16.87 9.58 16.87 9.67V11.53H16.88Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4"
3
+ d="M16.19 2H7.81C4.17 2 2 4.17 2 7.81V16.18C2 19.83 4.17 22 7.81 22H16.18C19.82 22 21.99 19.83 21.99 16.19V7.81C22 4.17 19.83 2 16.19 2Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M16.8299 9.40998C16.7599 9.23998 16.6199 9.09998 16.4499 9.02998C16.3699 8.99998 16.2799 8.97998 16.1899 8.97998H14.3299C13.9399 8.97998 13.6299 9.28998 13.6299 9.67998C13.6299 10.07 13.9399 10.38 14.3299 10.38H14.5099L12.3999 12.49L11.3799 10.97C11.2599 10.8 11.0799 10.68 10.8699 10.66C10.6499 10.64 10.4599 10.71 10.3099 10.86L7.32994 13.84C7.05994 14.11 7.05994 14.55 7.32994 14.83C7.46994 14.97 7.63994 15.03 7.81994 15.03C7.99994 15.03 8.17994 14.96 8.30994 14.83L10.6899 12.45L11.7099 13.97C11.8299 14.14 12.0099 14.26 12.2199 14.28C12.4399 14.3 12.6299 14.23 12.7799 14.08L15.4999 11.36V11.54C15.4999 11.93 15.8099 12.24 16.1999 12.24C16.5899 12.24 16.8999 11.93 16.8999 11.54V9.66998C16.8799 9.57998 16.8699 9.48998 16.8299 9.40998Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.5 9.5L12.3 13.7L10.7 11.3L7.5 14.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M14.5 9.5H16.5V11.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
2
+ <path fill="#1DA1F2" d="M7.548 21.75c9.056 0 14.01-7.503 14.01-14.01 0-.213 0-.425-.015-.636A10.02 10.02 0 0 0 24 4.555a9.815 9.815 0 0 1-2.828.775 4.94 4.94 0 0 0 2.165-2.724 9.864 9.864 0 0 1-3.127 1.196 4.929 4.929 0 0 0-8.391 4.49A13.98 13.98 0 0 1 1.67 3.149 4.928 4.928 0 0 0 3.195 9.72 4.88 4.88 0 0 1 .96 9.105v.062a4.926 4.926 0 0 0 3.95 4.827 4.915 4.915 0 0 1-2.223.084 4.93 4.93 0 0 0 4.6 3.42A9.88 9.88 0 0 1 0 19.538a13.941 13.941 0 0 0 7.548 2.209"/>
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 2ZM13.92 16.63H9C8.59 16.63 8.25 16.29 8.25 15.88C8.25 15.47 8.59 15.13 9 15.13H13.92C15.2 15.13 16.25 14.09 16.25 12.8C16.25 11.51 15.21 10.47 13.92 10.47H8.85L9.11 10.73C9.4 11.02 9.4 11.5 9.11 11.79C8.96 11.94 8.77 12.01 8.58 12.01C8.39 12.01 8.2 11.94 8.05 11.79L6.48 10.22C6.19 9.93 6.19 9.45 6.48 9.16L8.05 7.59C8.34 7.3 8.82 7.3 9.11 7.59C9.4 7.88 9.4 8.36 9.11 8.65L8.77 8.98H13.92C16.03 8.98 17.75 10.7 17.75 12.81C17.75 14.92 16.03 16.63 13.92 16.63Z" 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="M7.12988 18.3101H15.1299C17.8899 18.3101 20.1299 16.0701 20.1299 13.3101C20.1299 10.5501 17.8899 8.31006 15.1299 8.31006H4.12988" stroke="currentColor" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M6.43012 10.8099L3.87012 8.24994L6.43012 5.68994" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.0001 17.3501C12.9003 17.3501 13.6301 16.6203 13.6301 15.7201C13.6301 14.8199 12.9003 14.0901 12.0001 14.0901C11.0999 14.0901 10.3701 14.8199 10.3701 15.7201C10.3701 16.6203 11.0999 17.3501 12.0001 17.3501Z" fill="currentColor"/>
3
+ <path d="M16.65 9.44H7.35C7.27 9.44 7.2 9.44 7.12 9.44V8.28C7.12 5.35 7.95 3.4 12 3.4C16.33 3.4 16.88 5.51 16.88 7.35C16.88 7.74 17.19 8.05 17.58 8.05C17.97 8.05 18.28 7.74 18.28 7.35C18.28 3.8 16.17 2 12 2C6.37 2 5.72 5.58 5.72 8.28V9.53C2.92 9.88 2 11.3 2 14.79V16.65C2 20.75 3.25 22 7.35 22H16.65C20.75 22 22 20.75 22 16.65V14.79C22 10.69 20.75 9.44 16.65 9.44ZM12 18.74C10.33 18.74 8.98 17.38 8.98 15.72C8.98 14.05 10.34 12.7 12 12.7C13.66 12.7 15.02 14.06 15.02 15.72C15.02 17.39 13.67 18.74 12 18.74Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17 22H7C3 22 2 21 2 17V15C2 11 3 10 7 10H17C21 10 22 11 22 15V17C22 21 21 22 17 22Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M6 10V8C6 4.69 7 2 12 2C16.5 2 18 4 18 7" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M12 18.5C13.3807 18.5 14.5 17.3807 14.5 16C14.5 14.6193 13.3807 13.5 12 13.5C10.6193 13.5 9.5 14.6193 9.5 16C9.5 17.3807 10.6193 18.5 12 18.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.4"
3
+ d="M20.5 10.19H17.61C15.24 10.19 13.31 8.26 13.31 5.89V3C13.31 2.45 12.86 2 12.31 2H8.07C4.99 2 2.5 4 2.5 7.57V16.43C2.5 20 4.99 22 8.07 22H15.93C19.01 22 21.5 20 21.5 16.43V11.19C21.5 10.64 21.05 10.19 20.5 10.19Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M15.7999 2.20999C15.3899 1.79999 14.6799 2.07999 14.6799 2.64999V6.13999C14.6799 7.59999 15.9199 8.80999 17.4299 8.80999C18.3799 8.81999 19.6999 8.81999 20.8299 8.81999C21.3999 8.81999 21.6999 8.14999 21.2999 7.74999C19.8599 6.29999 17.2799 3.68999 15.7999 2.20999Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M11.5299 12.47L9.52994 10.47C9.51994 10.46 9.50994 10.46 9.50994 10.45C9.44994 10.39 9.36994 10.34 9.28994 10.3C9.27994 10.3 9.27994 10.3 9.26994 10.3C9.18994 10.27 9.10994 10.26 9.02994 10.25C8.99994 10.25 8.97994 10.25 8.94994 10.25C8.88994 10.25 8.81994 10.27 8.75994 10.29C8.72994 10.3 8.70994 10.31 8.68994 10.32C8.60994 10.36 8.52994 10.4 8.46994 10.47L6.46994 12.47C6.17994 12.76 6.17994 13.24 6.46994 13.53C6.75994 13.82 7.23994 13.82 7.52994 13.53L8.24994 12.81V17C8.24994 17.41 8.58994 17.75 8.99994 17.75C9.40994 17.75 9.74994 17.41 9.74994 17V12.81L10.4699 13.53C10.6199 13.68 10.8099 13.75 10.9999 13.75C11.1899 13.75 11.3799 13.68 11.5299 13.53C11.8199 13.24 11.8199 12.76 11.5299 12.47Z"
10
+ fill="currentColor" />
11
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9 17V11L7 13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M9 11L11 13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M22 10V15C22 20 20 22 15 22H9C4 22 2 20 2 15V9C2 4 4 2 9 2H14" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M22 10H18C15 10 14 9 14 6V2L22 10Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
@@ -0,0 +1,67 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="24" height="24" rx="12" fill="currentColor"/>
3
+ <g clip-path="url(#clip0_7135_40595)">
4
+ <rect width="24" height="24" rx="12" fill="currentColor"/>
5
+ <g filter="url(#filter0_di_7135_40595)">
6
+ <ellipse cx="11.9999" cy="22.7996" rx="9.6" ry="7.2" fill="url(#paint0_radial_7135_40595)" shape-rendering="crispEdges"/>
7
+ <path d="M21.0999 22.7996C21.0999 24.5952 20.1307 26.2589 18.4881 27.4908C16.8454 28.7228 14.5531 29.4996 11.9999 29.4996C9.44666 29.4996 7.15438 28.7228 5.51168 27.4908C3.86913 26.2589 2.8999 24.5952 2.8999 22.7996C2.8999 21.004 3.86913 19.3403 5.51168 18.1084C7.15438 16.8764 9.44666 16.0996 11.9999 16.0996C14.5531 16.0996 16.8454 16.8764 18.4881 18.1084C20.1307 19.3403 21.0999 21.004 21.0999 22.7996Z" stroke="url(#paint1_radial_7135_40595)" shape-rendering="crispEdges"/>
8
+ </g>
9
+ <g filter="url(#filter1_di_7135_40595)">
10
+ <circle cx="12.0002" cy="9.5998" r="4.8" fill="url(#paint2_radial_7135_40595)" shape-rendering="crispEdges"/>
11
+ <circle cx="12.0002" cy="9.5998" r="4.3" stroke="url(#paint3_radial_7135_40595)" shape-rendering="crispEdges"/>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <filter id="filter0_di_7135_40595" x="-1.6001" y="7.59961" width="27.2002" height="30.4004" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
16
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
17
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
18
+ <feOffset dy="4"/>
19
+ <feGaussianBlur stdDeviation="2"/>
20
+ <feComposite in2="hardAlpha" operator="out"/>
21
+ <feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.706667 0 0 0 0 0.12 0 0 0 0.24 0"/>
22
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7135_40595"/>
23
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_7135_40595" result="shape"/>
24
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
25
+ <feOffset dy="-8"/>
26
+ <feGaussianBlur stdDeviation="4"/>
27
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
28
+ <feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
29
+ <feBlend mode="normal" in2="shape" result="effect2_innerShadow_7135_40595"/>
30
+ </filter>
31
+ <filter id="filter1_di_7135_40595" x="3.2002" y="-3.2002" width="17.6001" height="25.5996" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
32
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
33
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
34
+ <feOffset dy="4"/>
35
+ <feGaussianBlur stdDeviation="2"/>
36
+ <feComposite in2="hardAlpha" operator="out"/>
37
+ <feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 0.706667 0 0 0 0 0.12 0 0 0 0.24 0"/>
38
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7135_40595"/>
39
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_7135_40595" result="shape"/>
40
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
41
+ <feOffset dy="-8"/>
42
+ <feGaussianBlur stdDeviation="4"/>
43
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
44
+ <feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
45
+ <feBlend mode="normal" in2="shape" result="effect2_innerShadow_7135_40595"/>
46
+ </filter>
47
+ <radialGradient id="paint0_radial_7135_40595" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.9999 15.5996) rotate(90) scale(14.4 19.2)">
48
+ <stop stop-color="white"/>
49
+ <stop offset="1" stop-color="white" stop-opacity="0"/>
50
+ </radialGradient>
51
+ <radialGradient id="paint1_radial_7135_40595" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.9999 15.5996) rotate(90) scale(14.4 19.2)">
52
+ <stop stop-color="white"/>
53
+ <stop offset="1" stop-color="white" stop-opacity="0"/>
54
+ </radialGradient>
55
+ <radialGradient id="paint2_radial_7135_40595" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12.0002 4.7998) rotate(90) scale(9.6)">
56
+ <stop stop-color="white"/>
57
+ <stop offset="1" stop-color="white" stop-opacity="0"/>
58
+ </radialGradient>
59
+ <radialGradient id="paint3_radial_7135_40595" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12.0002 4.7998) rotate(90) scale(9.6)">
60
+ <stop stop-color="white"/>
61
+ <stop offset="1" stop-color="white" stop-opacity="0"/>
62
+ </radialGradient>
63
+ <clipPath id="clip0_7135_40595">
64
+ <rect width="24" height="24" rx="12" fill="white"/>
65
+ </clipPath>
66
+ </defs>
67
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 12 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.3333 13V11.6667C11.3333 10.9594 11.0523 10.2811 10.5522 9.78105C10.0521 9.28095 9.37387 9 8.66663 9H3.33329C2.62605 9 1.94777 9.28095 1.44767 9.78105C0.947577 10.2811 0.666626 10.9594 0.666626 11.6667V13M8.66663 3.66667C8.66663 5.13943 7.47272 6.33333 5.99996 6.33333C4.5272 6.33333 3.33329 5.13943 3.33329 3.66667C3.33329 2.19391 4.5272 1 5.99996 1C7.47272 1 8.66663 2.19391 8.66663 3.66667Z" stroke="#101828" stroke-width="1.33333" 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="M12 12.75C8.83 12.75 6.25 10.17 6.25 7C6.25 3.83 8.83 1.25 12 1.25C15.17 1.25 17.75 3.83 17.75 7C17.75 10.17 15.17 12.75 12 12.75ZM12 2.75C9.66 2.75 7.75 4.66 7.75 7C7.75 9.34 9.66 11.25 12 11.25C14.34 11.25 16.25 9.34 16.25 7C16.25 4.66 14.34 2.75 12 2.75Z" fill="currentColor"/>
3
+ <path d="M20.5901 22.75C20.1801 22.75 19.8401 22.41 19.8401 22C19.8401 18.55 16.3202 15.75 12.0002 15.75C7.68015 15.75 4.16016 18.55 4.16016 22C4.16016 22.41 3.82016 22.75 3.41016 22.75C3.00016 22.75 2.66016 22.41 2.66016 22C2.66016 17.73 6.85015 14.25 12.0002 14.25C17.1502 14.25 21.3401 17.73 21.3401 22C21.3401 22.41 21.0001 22.75 20.5901 22.75Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10 11.5V13C8.80653 13 7.66193 13.4741 6.81802 14.318C5.97411 15.1619 5.5 16.3065 5.5 17.5H4C4 15.9087 4.63214 14.3826 5.75736 13.2574C6.88258 12.1321 8.4087 11.5 10 11.5ZM10 10.75C7.51375 10.75 5.5 8.73625 5.5 6.25C5.5 3.76375 7.51375 1.75 10 1.75C12.4862 1.75 14.5 3.76375 14.5 6.25C14.5 8.73625 12.4862 10.75 10 10.75ZM10 9.25C11.6575 9.25 13 7.9075 13 6.25C13 4.5925 11.6575 3.25 10 3.25C8.3425 3.25 7 4.5925 7 6.25C7 7.9075 8.3425 9.25 10 9.25ZM11.9462 15.109C11.8512 14.7088 11.8512 14.2919 11.9462 13.8917L11.2022 13.462L11.9522 12.163L12.6962 12.5927C12.9949 12.3099 13.3558 12.1013 13.75 11.9838V11.125H15.25V11.9838C15.649 12.1023 16.009 12.3138 16.3037 12.5927L17.0477 12.163L17.7977 13.462L17.0537 13.8917C17.1487 14.2917 17.1487 14.7083 17.0537 15.1083L17.7977 15.538L17.0477 16.837L16.3037 16.4072C16.0051 16.6901 15.6442 16.8987 15.25 17.0162V17.875H13.75V17.0162C13.3558 16.8987 12.9949 16.6901 12.6962 16.4072L11.9522 16.837L11.2022 15.538L11.9462 15.109ZM14.5 15.625C14.7984 15.625 15.0845 15.5065 15.2955 15.2955C15.5065 15.0845 15.625 14.7984 15.625 14.5C15.625 14.2016 15.5065 13.9155 15.2955 13.7045C15.0845 13.4935 14.7984 13.375 14.5 13.375C14.2016 13.375 13.9155 13.4935 13.7045 13.7045C13.4935 13.9155 13.375 14.2016 13.375 14.5C13.375 14.7984 13.4935 15.0845 13.7045 15.2955C13.9155 15.5065 14.2016 15.625 14.5 15.625Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.1161 18.0166C14.3828 18.2333 13.5161 18.3333 12.4995 18.3333H7.49948C6.48281 18.3333 5.61615 18.2333 4.88281 18.0166C5.06615 15.85 7.29115 14.1416 9.99948 14.1416C12.7078 14.1416 14.9328 15.85 15.1161 18.0166Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M12.4993 1.66663H7.49935C3.33268 1.66663 1.66602 3.33329 1.66602 7.49996V12.5C1.66602 15.65 2.61602 17.375 4.88268 18.0166C5.06602 15.85 7.29102 14.1416 9.99935 14.1416C12.7077 14.1416 14.9327 15.85 15.116 18.0166C17.3827 17.375 18.3327 15.65 18.3327 12.5V7.49996C18.3327 3.33329 16.666 1.66663 12.4993 1.66663ZM9.99935 11.8083C8.34935 11.8083 7.01601 10.4666 7.01601 8.81664C7.01601 7.16664 8.34935 5.83329 9.99935 5.83329C11.6493 5.83329 12.9827 7.16664 12.9827 8.81664C12.9827 10.4666 11.6493 11.8083 9.99935 11.8083Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M12.9842 8.81672C12.9842 10.4667 11.6509 11.8084 10.0009 11.8084C8.35091 11.8084 7.01758 10.4667 7.01758 8.81672C7.01758 7.16672 8.35091 5.83337 10.0009 5.83337C11.6509 5.83337 12.9842 7.16672 12.9842 8.81672Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg class="p-s r-f r-s" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="19" height="19" rx="9.5" fill="#F2F4F7"/>
3
+ <path d="M14.4455 15V13.8889C14.4455 13.2995 14.2114 12.7343 13.7947 12.3175C13.3779 11.9008 12.8127 11.6667 12.2233 11.6667H7.77886C7.18949 11.6667 6.62426 11.9008 6.20751 12.3175C5.79077 12.7343 5.55664 13.2995 5.55664 13.8889V15M12.2233 7.22222C12.2233 8.44952 11.2284 9.44444 10.0011 9.44444C8.77379 9.44444 7.77886 8.44952 7.77886 7.22222C7.77886 5.99492 8.77379 5 10.0011 5C11.2284 5 12.2233 5.99492 12.2233 7.22222Z" stroke="#98A2B3" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <rect x="0.5" y="0.5" width="19" height="19" rx="9.5" stroke="#EAECF0"/>
5
+ </svg>