@canmingir/link 1.1.6 → 1.1.8

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 (1369) hide show
  1. package/.eslintrc.json +13 -4
  2. package/.idea/codeStyles/Project.xml +84 -0
  3. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  4. package/.idea/copilot.data.migration.agent.xml +6 -0
  5. package/.idea/copilot.data.migration.ask.xml +6 -0
  6. package/.idea/copilot.data.migration.ask2agent.xml +6 -0
  7. package/.idea/copilot.data.migration.edit.xml +6 -0
  8. package/.idea/inspectionProfiles/Project_Default.xml +6 -0
  9. package/.idea/misc.xml +6 -0
  10. package/.idea/modules.xml +8 -0
  11. package/.idea/platform.iml +9 -0
  12. package/.idea/vcs.xml +6 -0
  13. package/.storybook/main.js +15 -0
  14. package/.storybook/preview.js +17 -0
  15. package/.storybook/vitest.setup.js +6 -0
  16. package/cypress.config.js +11 -0
  17. package/package.json +22 -8
  18. package/src/RouteManager/RouteManager.jsx +1 -0
  19. package/src/components/MiniTopBar/MiniTopBar.jsx +6 -1
  20. package/src/components/Sidebar/Sidebar.jsx +2 -2
  21. package/src/components/animate/index.js +0 -2
  22. package/src/components/animate/motion-container.jsx +0 -2
  23. package/src/components/animate/motion-lazy.jsx +0 -2
  24. package/src/components/animate/motion-viewport.jsx +0 -2
  25. package/src/components/animate/variants/actions.js +0 -2
  26. package/src/components/animate/variants/background.js +0 -6
  27. package/src/components/animate/variants/bounce.js +0 -4
  28. package/src/components/animate/variants/container.js +0 -2
  29. package/src/components/animate/variants/fade.js +0 -4
  30. package/src/components/animate/variants/flip.js +0 -4
  31. package/src/components/animate/variants/path.js +0 -2
  32. package/src/components/animate/variants/rotate.js +0 -4
  33. package/src/components/animate/variants/scale.js +0 -4
  34. package/src/components/animate/variants/slide.js +0 -4
  35. package/src/components/animate/variants/transition.js +0 -2
  36. package/src/components/animate/variants/zoom.js +0 -4
  37. package/src/components/custom-popover/custom-popover.jsx +0 -2
  38. package/src/components/file-thumbnail/download-button.jsx +0 -2
  39. package/src/components/file-thumbnail/file-thumbnail.jsx +0 -2
  40. package/src/components/image/image.jsx +0 -2
  41. package/src/components/label/label.jsx +0 -2
  42. package/src/components/loading-screen/loading-screen.jsx +0 -2
  43. package/src/components/loading-screen/splash-screen.jsx +0 -2
  44. package/src/components/logo/logo.jsx +15 -17
  45. package/src/components/nav-section/horizontal/nav-item.jsx +0 -6
  46. package/src/components/nav-section/horizontal/nav-list.jsx +0 -7
  47. package/src/components/nav-section/horizontal/nav-section-horizontal.jsx +0 -4
  48. package/src/components/nav-section/mini/nav-item.jsx +0 -7
  49. package/src/components/nav-section/mini/nav-list.jsx +0 -7
  50. package/src/components/nav-section/mini/nav-section-mini.jsx +0 -4
  51. package/src/components/nav-section/vertical/nav-item.jsx +0 -8
  52. package/src/components/nav-section/vertical/nav-list.jsx +0 -7
  53. package/src/components/nav-section/vertical/nav-section-vertical.jsx +0 -4
  54. package/src/components/scrollbar/scrollbar.jsx +0 -2
  55. package/src/components/search-not-found/search-not-found.jsx +0 -2
  56. package/src/components/settings/context/settings-provider.jsx +0 -6
  57. package/src/components/settings/drawer/base-option.jsx +0 -2
  58. package/src/components/settings/drawer/fullscreen-option.jsx +0 -2
  59. package/src/components/settings/drawer/layout-options.jsx +0 -2
  60. package/src/components/settings/drawer/presets-options.jsx +0 -2
  61. package/src/components/settings/drawer/settings-drawer.jsx +0 -2
  62. package/src/components/settings/drawer/stretch-options.jsx +0 -2
  63. package/src/components/svg-color/svg-color.jsx +0 -2
  64. package/src/config/schemas.js +8 -0
  65. package/src/http/index.js +1 -1
  66. package/src/http/user.js +21 -35
  67. package/{components → src/lib}/IconSelector/IconSelector.jsx +2 -1
  68. package/src/lib/Iconify/Iconify.jsx +17 -0
  69. package/src/lib/Iconify/index.js +1 -0
  70. package/{components → src/lib}/ItemSummary/ItemSummary.jsx +1 -1
  71. package/{components → src/lib}/ItemSummary/ItemsSummary.jsx +1 -1
  72. package/{minimal/src/components/svg-color/svg-color.jsx → src/lib/SvgColor/SvgColor.jsx} +5 -8
  73. package/src/lib/SvgColor/index.js +1 -0
  74. package/src/lib/index.js +10 -0
  75. package/src/pages/Callback.jsx +63 -13
  76. package/src/stories/Iconify.stories.jsx +183 -0
  77. package/src/stories/Label.stories.jsx +447 -0
  78. package/src/stories/Navbar.stories.jsx +588 -0
  79. package/vite.config.js +7 -0
  80. package/vitest.config.js +32 -0
  81. package/commands/index.js +0 -111
  82. package/commands/user.json +0 -34
  83. package/components/index.js +0 -2
  84. package/cypress/cypress.js +0 -12
  85. package/minimal/.editorconfig +0 -9
  86. package/minimal/.eslintignore +0 -22
  87. package/minimal/.prettierignore +0 -9
  88. package/minimal/.prettierrc +0 -6
  89. package/minimal/README.md +0 -13
  90. package/minimal/index.html +0 -44
  91. package/minimal/jsconfig.json +0 -5
  92. package/minimal/package-lock.json +0 -20845
  93. package/minimal/package.json +0 -104
  94. package/minimal/public/_redirects +0 -1
  95. package/minimal/public/assets/background/overlay_1.svg +0 -1
  96. package/minimal/public/assets/background/overlay_2.jpg +0 -0
  97. package/minimal/public/assets/background/overlay_3.jpg +0 -0
  98. package/minimal/public/assets/background/overlay_4.jpg +0 -0
  99. package/minimal/public/assets/cyan-blur.png +0 -0
  100. package/minimal/public/assets/icons/app/ic_chrome.svg +0 -6
  101. package/minimal/public/assets/icons/app/ic_drive.svg +0 -5
  102. package/minimal/public/assets/icons/app/ic_dropbox.svg +0 -3
  103. package/minimal/public/assets/icons/app/ic_evernote.svg +0 -3
  104. package/minimal/public/assets/icons/app/ic_github.svg +0 -3
  105. package/minimal/public/assets/icons/app/ic_onedrive.svg +0 -4
  106. package/minimal/public/assets/icons/auth/ic_amplify.svg +0 -12
  107. package/minimal/public/assets/icons/auth/ic_auth0.svg +0 -5
  108. package/minimal/public/assets/icons/auth/ic_firebase.svg +0 -12
  109. package/minimal/public/assets/icons/auth/ic_jwt.svg +0 -15
  110. package/minimal/public/assets/icons/brands/ic_brand_amazon.svg +0 -3
  111. package/minimal/public/assets/icons/brands/ic_brand_hbo.svg +0 -3
  112. package/minimal/public/assets/icons/brands/ic_brand_ibm.svg +0 -3
  113. package/minimal/public/assets/icons/brands/ic_brand_lya.svg +0 -3
  114. package/minimal/public/assets/icons/brands/ic_brand_netflix.svg +0 -3
  115. package/minimal/public/assets/icons/brands/ic_brand_spotify.svg +0 -3
  116. package/minimal/public/assets/icons/components/ic_accordion.svg +0 -11
  117. package/minimal/public/assets/icons/components/ic_alert.svg +0 -6
  118. package/minimal/public/assets/icons/components/ic_autocomplete.svg +0 -8
  119. package/minimal/public/assets/icons/components/ic_avatar.svg +0 -4
  120. package/minimal/public/assets/icons/components/ic_badge.svg +0 -7
  121. package/minimal/public/assets/icons/components/ic_breadcrumbs.svg +0 -4
  122. package/minimal/public/assets/icons/components/ic_buttons.svg +0 -4
  123. package/minimal/public/assets/icons/components/ic_checkbox.svg +0 -4
  124. package/minimal/public/assets/icons/components/ic_chip.svg +0 -5
  125. package/minimal/public/assets/icons/components/ic_colors.svg +0 -5
  126. package/minimal/public/assets/icons/components/ic_data_grid.svg +0 -12
  127. package/minimal/public/assets/icons/components/ic_dialog.svg +0 -8
  128. package/minimal/public/assets/icons/components/ic_extra_animate.svg +0 -26
  129. package/minimal/public/assets/icons/components/ic_extra_carousel.svg +0 -98
  130. package/minimal/public/assets/icons/components/ic_extra_chart.svg +0 -60
  131. package/minimal/public/assets/icons/components/ic_extra_copy_to_clipboard.svg +0 -24
  132. package/minimal/public/assets/icons/components/ic_extra_editor.svg +0 -45
  133. package/minimal/public/assets/icons/components/ic_extra_form_validation.svg +0 -112
  134. package/minimal/public/assets/icons/components/ic_extra_image.svg +0 -59
  135. package/minimal/public/assets/icons/components/ic_extra_label.svg +0 -40
  136. package/minimal/public/assets/icons/components/ic_extra_lightbox.svg +0 -97
  137. package/minimal/public/assets/icons/components/ic_extra_map.svg +0 -60
  138. package/minimal/public/assets/icons/components/ic_extra_markdown.svg +0 -40
  139. package/minimal/public/assets/icons/components/ic_extra_mega_menu.svg +0 -120
  140. package/minimal/public/assets/icons/components/ic_extra_multi_language.svg +0 -59
  141. package/minimal/public/assets/icons/components/ic_extra_navigation_bar.svg +0 -122
  142. package/minimal/public/assets/icons/components/ic_extra_organization_chart.svg +0 -101
  143. package/minimal/public/assets/icons/components/ic_extra_scroll.svg +0 -67
  144. package/minimal/public/assets/icons/components/ic_extra_scroll_progress.svg +0 -46
  145. package/minimal/public/assets/icons/components/ic_extra_snackbar.svg +0 -47
  146. package/minimal/public/assets/icons/components/ic_extra_text_max_line.svg +0 -100
  147. package/minimal/public/assets/icons/components/ic_extra_upload.svg +0 -40
  148. package/minimal/public/assets/icons/components/ic_grid.svg +0 -8
  149. package/minimal/public/assets/icons/components/ic_icons.svg +0 -4
  150. package/minimal/public/assets/icons/components/ic_list.svg +0 -12
  151. package/minimal/public/assets/icons/components/ic_menu.svg +0 -7
  152. package/minimal/public/assets/icons/components/ic_pagination.svg +0 -6
  153. package/minimal/public/assets/icons/components/ic_pickers.svg +0 -18
  154. package/minimal/public/assets/icons/components/ic_popover.svg +0 -6
  155. package/minimal/public/assets/icons/components/ic_progress.svg +0 -4
  156. package/minimal/public/assets/icons/components/ic_radio_button.svg +0 -4
  157. package/minimal/public/assets/icons/components/ic_rating.svg +0 -9
  158. package/minimal/public/assets/icons/components/ic_shadows.svg +0 -4
  159. package/minimal/public/assets/icons/components/ic_slider.svg +0 -5
  160. package/minimal/public/assets/icons/components/ic_stepper.svg +0 -6
  161. package/minimal/public/assets/icons/components/ic_switch.svg +0 -4
  162. package/minimal/public/assets/icons/components/ic_table.svg +0 -10
  163. package/minimal/public/assets/icons/components/ic_tabs.svg +0 -5
  164. package/minimal/public/assets/icons/components/ic_textfield.svg +0 -5
  165. package/minimal/public/assets/icons/components/ic_timeline.svg +0 -12
  166. package/minimal/public/assets/icons/components/ic_tooltip.svg +0 -7
  167. package/minimal/public/assets/icons/components/ic_transfer_list.svg +0 -13
  168. package/minimal/public/assets/icons/components/ic_tree_view.svg +0 -11
  169. package/minimal/public/assets/icons/components/ic_typography.svg +0 -4
  170. package/minimal/public/assets/icons/empty/ic_cart.svg +0 -76
  171. package/minimal/public/assets/icons/empty/ic_content.svg +0 -57
  172. package/minimal/public/assets/icons/empty/ic_email_disabled.svg +0 -44
  173. package/minimal/public/assets/icons/empty/ic_email_selected.svg +0 -57
  174. package/minimal/public/assets/icons/empty/ic_folder_empty.svg +0 -32
  175. package/minimal/public/assets/icons/empty/ic_mail.svg +0 -56
  176. package/minimal/public/assets/icons/faqs/ic_account.svg +0 -34
  177. package/minimal/public/assets/icons/faqs/ic_assurances.svg +0 -33
  178. package/minimal/public/assets/icons/faqs/ic_delivery.svg +0 -30
  179. package/minimal/public/assets/icons/faqs/ic_package.svg +0 -29
  180. package/minimal/public/assets/icons/faqs/ic_payment.svg +0 -33
  181. package/minimal/public/assets/icons/faqs/ic_refund.svg +0 -31
  182. package/minimal/public/assets/icons/files/ic_ai.svg +0 -25
  183. package/minimal/public/assets/icons/files/ic_audio.svg +0 -24
  184. package/minimal/public/assets/icons/files/ic_document.svg +0 -19
  185. package/minimal/public/assets/icons/files/ic_excel.svg +0 -19
  186. package/minimal/public/assets/icons/files/ic_file.svg +0 -18
  187. package/minimal/public/assets/icons/files/ic_folder.svg +0 -5
  188. package/minimal/public/assets/icons/files/ic_img.svg +0 -26
  189. package/minimal/public/assets/icons/files/ic_js.svg +0 -12
  190. package/minimal/public/assets/icons/files/ic_pdf.svg +0 -19
  191. package/minimal/public/assets/icons/files/ic_power_point.svg +0 -20
  192. package/minimal/public/assets/icons/files/ic_pts.svg +0 -25
  193. package/minimal/public/assets/icons/files/ic_txt.svg +0 -26
  194. package/minimal/public/assets/icons/files/ic_video.svg +0 -20
  195. package/minimal/public/assets/icons/files/ic_word.svg +0 -19
  196. package/minimal/public/assets/icons/files/ic_zip.svg +0 -27
  197. package/minimal/public/assets/icons/glass/ic_glass_bag.png +0 -0
  198. package/minimal/public/assets/icons/glass/ic_glass_buy.png +0 -0
  199. package/minimal/public/assets/icons/glass/ic_glass_message.png +0 -0
  200. package/minimal/public/assets/icons/glass/ic_glass_users.png +0 -0
  201. package/minimal/public/assets/icons/home/ic_design.svg +0 -6
  202. package/minimal/public/assets/icons/home/ic_development.svg +0 -5
  203. package/minimal/public/assets/icons/home/ic_make_brand.svg +0 -6
  204. package/minimal/public/assets/icons/navbar/ic_analytics.svg +0 -8
  205. package/minimal/public/assets/icons/navbar/ic_banking.svg +0 -10
  206. package/minimal/public/assets/icons/navbar/ic_blank.svg +0 -4
  207. package/minimal/public/assets/icons/navbar/ic_blog.svg +0 -7
  208. package/minimal/public/assets/icons/navbar/ic_booking.svg +0 -4
  209. package/minimal/public/assets/icons/navbar/ic_calendar.svg +0 -5
  210. package/minimal/public/assets/icons/navbar/ic_chat.svg +0 -6
  211. package/minimal/public/assets/icons/navbar/ic_dashboard.svg +0 -4
  212. package/minimal/public/assets/icons/navbar/ic_disabled.svg +0 -4
  213. package/minimal/public/assets/icons/navbar/ic_ecommerce.svg +0 -5
  214. package/minimal/public/assets/icons/navbar/ic_external.svg +0 -4
  215. package/minimal/public/assets/icons/navbar/ic_file.svg +0 -6
  216. package/minimal/public/assets/icons/navbar/ic_folder.svg +0 -4
  217. package/minimal/public/assets/icons/navbar/ic_invoice.svg +0 -5
  218. package/minimal/public/assets/icons/navbar/ic_job.svg +0 -4
  219. package/minimal/public/assets/icons/navbar/ic_kanban.svg +0 -5
  220. package/minimal/public/assets/icons/navbar/ic_label.svg +0 -4
  221. package/minimal/public/assets/icons/navbar/ic_lock.svg +0 -4
  222. package/minimal/public/assets/icons/navbar/ic_mail.svg +0 -6
  223. package/minimal/public/assets/icons/navbar/ic_menu_item.svg +0 -5
  224. package/minimal/public/assets/icons/navbar/ic_order.svg +0 -7
  225. package/minimal/public/assets/icons/navbar/ic_product.svg +0 -4
  226. package/minimal/public/assets/icons/navbar/ic_tour.svg +0 -4
  227. package/minimal/public/assets/icons/navbar/ic_user.svg +0 -4
  228. package/minimal/public/assets/icons/notification/ic_chat.svg +0 -28
  229. package/minimal/public/assets/icons/notification/ic_delivery.svg +0 -20
  230. package/minimal/public/assets/icons/notification/ic_mail.svg +0 -15
  231. package/minimal/public/assets/icons/notification/ic_order.svg +0 -45
  232. package/minimal/public/assets/icons/platforms/ic_figma.svg +0 -7
  233. package/minimal/public/assets/icons/platforms/ic_js.svg +0 -4
  234. package/minimal/public/assets/icons/platforms/ic_nextjs.svg +0 -3
  235. package/minimal/public/assets/icons/platforms/ic_ts.svg +0 -4
  236. package/minimal/public/assets/icons/platforms/ic_vite.svg +0 -15
  237. package/minimal/public/assets/icons/setting/ic_align_left.svg +0 -7
  238. package/minimal/public/assets/icons/setting/ic_align_right.svg +0 -7
  239. package/minimal/public/assets/icons/setting/ic_collapse.svg +0 -4
  240. package/minimal/public/assets/icons/setting/ic_contrast.svg +0 -5
  241. package/minimal/public/assets/icons/setting/ic_contrast_bold.svg +0 -4
  242. package/minimal/public/assets/icons/setting/ic_exit_full_screen.svg +0 -6
  243. package/minimal/public/assets/icons/setting/ic_full_screen.svg +0 -6
  244. package/minimal/public/assets/icons/setting/ic_moon.svg +0 -4
  245. package/minimal/public/assets/icons/setting/ic_setting.svg +0 -6
  246. package/minimal/public/assets/icons/setting/ic_sun.svg +0 -13
  247. package/minimal/public/assets/illustrations/characters/character_1.png +0 -0
  248. package/minimal/public/assets/illustrations/characters/character_10.png +0 -0
  249. package/minimal/public/assets/illustrations/characters/character_11.png +0 -0
  250. package/minimal/public/assets/illustrations/characters/character_2.png +0 -0
  251. package/minimal/public/assets/illustrations/characters/character_3.png +0 -0
  252. package/minimal/public/assets/illustrations/characters/character_4.png +0 -0
  253. package/minimal/public/assets/illustrations/characters/character_5.png +0 -0
  254. package/minimal/public/assets/illustrations/characters/character_6.png +0 -0
  255. package/minimal/public/assets/illustrations/characters/character_7.png +0 -0
  256. package/minimal/public/assets/illustrations/characters/character_8.png +0 -0
  257. package/minimal/public/assets/illustrations/characters/character_9.png +0 -0
  258. package/minimal/public/assets/illustrations/illustration_dashboard.png +0 -0
  259. package/minimal/public/assets/images/about/hero.jpg +0 -0
  260. package/minimal/public/assets/images/about/testimonials.jpg +0 -0
  261. package/minimal/public/assets/images/about/vision.jpg +0 -0
  262. package/minimal/public/assets/images/about/what_1.png +0 -0
  263. package/minimal/public/assets/images/about/what_2.png +0 -0
  264. package/minimal/public/assets/images/contact/hero.jpg +0 -0
  265. package/minimal/public/assets/images/faqs/hero.jpg +0 -0
  266. package/minimal/public/assets/images/home/clean/page_1.webp +0 -0
  267. package/minimal/public/assets/images/home/clean/page_10.webp +0 -0
  268. package/minimal/public/assets/images/home/clean/page_2.webp +0 -0
  269. package/minimal/public/assets/images/home/clean/page_3.webp +0 -0
  270. package/minimal/public/assets/images/home/clean/page_4.webp +0 -0
  271. package/minimal/public/assets/images/home/clean/page_5.webp +0 -0
  272. package/minimal/public/assets/images/home/clean/page_6.webp +0 -0
  273. package/minimal/public/assets/images/home/clean/page_7.webp +0 -0
  274. package/minimal/public/assets/images/home/clean/page_8.webp +0 -0
  275. package/minimal/public/assets/images/home/clean/page_9.webp +0 -0
  276. package/minimal/public/assets/images/home/darkmode.webp +0 -0
  277. package/minimal/public/assets/images/home/for_designer.webp +0 -0
  278. package/minimal/public/assets/images/home/hero/dark_1.webp +0 -0
  279. package/minimal/public/assets/images/home/hero/dark_2.webp +0 -0
  280. package/minimal/public/assets/images/home/hero/light_1.webp +0 -0
  281. package/minimal/public/assets/images/home/hero/light_2.webp +0 -0
  282. package/minimal/public/assets/images/home/presets/block_blue.webp +0 -0
  283. package/minimal/public/assets/images/home/presets/block_cyan.webp +0 -0
  284. package/minimal/public/assets/images/home/presets/block_default.webp +0 -0
  285. package/minimal/public/assets/images/home/presets/block_orange.webp +0 -0
  286. package/minimal/public/assets/images/home/presets/block_purple.webp +0 -0
  287. package/minimal/public/assets/images/home/presets/block_red.webp +0 -0
  288. package/minimal/public/assets/images/home/presets/chart_blue.webp +0 -0
  289. package/minimal/public/assets/images/home/presets/chart_cyan.webp +0 -0
  290. package/minimal/public/assets/images/home/presets/chart_default.webp +0 -0
  291. package/minimal/public/assets/images/home/presets/chart_orange.webp +0 -0
  292. package/minimal/public/assets/images/home/presets/chart_purple.webp +0 -0
  293. package/minimal/public/assets/images/home/presets/chart_red.webp +0 -0
  294. package/minimal/public/assets/images/home/presets/grid.webp +0 -0
  295. package/minimal/public/assets/images/home/presets/screen_blue.webp +0 -0
  296. package/minimal/public/assets/images/home/presets/screen_cyan.webp +0 -0
  297. package/minimal/public/assets/images/home/presets/screen_default.webp +0 -0
  298. package/minimal/public/assets/images/home/presets/screen_orange.webp +0 -0
  299. package/minimal/public/assets/images/home/presets/screen_purple.webp +0 -0
  300. package/minimal/public/assets/images/home/presets/screen_red.webp +0 -0
  301. package/minimal/public/assets/images/home/presets/sidebar_blue.webp +0 -0
  302. package/minimal/public/assets/images/home/presets/sidebar_cyan.webp +0 -0
  303. package/minimal/public/assets/images/home/presets/sidebar_default.webp +0 -0
  304. package/minimal/public/assets/images/home/presets/sidebar_orange.webp +0 -0
  305. package/minimal/public/assets/images/home/presets/sidebar_purple.webp +0 -0
  306. package/minimal/public/assets/images/home/presets/sidebar_red.webp +0 -0
  307. package/minimal/public/assets/images/home/rocket.webp +0 -0
  308. package/minimal/public/assets/images/home/zone_landing.webp +0 -0
  309. package/minimal/public/assets/placeholder.svg +0 -8
  310. package/minimal/public/assets/red-blur.png +0 -0
  311. package/minimal/public/assets/transparent.png +0 -0
  312. package/minimal/public/favicon/android-chrome-192x192.png +0 -0
  313. package/minimal/public/favicon/android-chrome-512x512.png +0 -0
  314. package/minimal/public/favicon/apple-touch-icon.png +0 -0
  315. package/minimal/public/favicon/favicon-16x16.png +0 -0
  316. package/minimal/public/favicon/favicon-32x32.png +0 -0
  317. package/minimal/public/favicon/favicon.ico +0 -0
  318. package/minimal/public/fonts/CircularStd-Bold.otf +0 -0
  319. package/minimal/public/fonts/CircularStd-Book.otf +0 -0
  320. package/minimal/public/fonts/CircularStd-Medium.otf +0 -0
  321. package/minimal/public/fonts/Roboto-Bold.ttf +0 -0
  322. package/minimal/public/fonts/Roboto-Regular.ttf +0 -0
  323. package/minimal/public/fonts/index.css +0 -22
  324. package/minimal/public/logo/logo_full.svg +0 -1
  325. package/minimal/public/logo/logo_single.png +0 -0
  326. package/minimal/public/logo/logo_single.svg +0 -1
  327. package/minimal/public/manifest.json +0 -20
  328. package/minimal/public/robots.txt +0 -3
  329. package/minimal/src/_mock/_blog.js +0 -16
  330. package/minimal/src/_mock/_calendar.js +0 -14
  331. package/minimal/src/_mock/_files.js +0 -123
  332. package/minimal/src/_mock/_invoice.js +0 -65
  333. package/minimal/src/_mock/_job.js +0 -172
  334. package/minimal/src/_mock/_mock.js +0 -75
  335. package/minimal/src/_mock/_order.js +0 -95
  336. package/minimal/src/_mock/_others.js +0 -253
  337. package/minimal/src/_mock/_overview.js +0 -330
  338. package/minimal/src/_mock/_product.js +0 -88
  339. package/minimal/src/_mock/_tour.js +0 -150
  340. package/minimal/src/_mock/_user.js +0 -157
  341. package/minimal/src/_mock/assets.js +0 -527
  342. package/minimal/src/_mock/index.js +0 -16
  343. package/minimal/src/_mock/map/cities.js +0 -182
  344. package/minimal/src/_mock/map/countries.js +0 -86
  345. package/minimal/src/_mock/map/map-style-basic-v8.json +0 -554
  346. package/minimal/src/api/blog.js +0 -89
  347. package/minimal/src/api/calendar.js +0 -115
  348. package/minimal/src/api/chat.js +0 -206
  349. package/minimal/src/api/kanban.js +0 -401
  350. package/minimal/src/api/mail.js +0 -72
  351. package/minimal/src/api/product.js +0 -68
  352. package/minimal/src/app.jsx +0 -74
  353. package/minimal/src/assets/data/countries.js +0 -425
  354. package/minimal/src/assets/data/index.js +0 -1
  355. package/minimal/src/assets/icons/email-inbox-icon.jsx +0 -140
  356. package/minimal/src/assets/icons/index.js +0 -6
  357. package/minimal/src/assets/icons/password-icon.jsx +0 -107
  358. package/minimal/src/assets/icons/plan-free-icon.jsx +0 -49
  359. package/minimal/src/assets/icons/plan-premium-icon.jsx +0 -86
  360. package/minimal/src/assets/icons/plan-starter-icon.jsx +0 -73
  361. package/minimal/src/assets/icons/sent-icon.jsx +0 -73
  362. package/minimal/src/assets/illustrations/avatar-shape.jsx +0 -36
  363. package/minimal/src/assets/illustrations/background-shape.jsx +0 -31
  364. package/minimal/src/assets/illustrations/booking-illustration.jsx +0 -307
  365. package/minimal/src/assets/illustrations/check-in-illustration.jsx +0 -96
  366. package/minimal/src/assets/illustrations/check-out-illustration.jsx +0 -69
  367. package/minimal/src/assets/illustrations/coming-soon-illustration.jsx +0 -118
  368. package/minimal/src/assets/illustrations/forbidden-illustration.jsx +0 -88
  369. package/minimal/src/assets/illustrations/index.js +0 -15
  370. package/minimal/src/assets/illustrations/maintenance-illustration.jsx +0 -215
  371. package/minimal/src/assets/illustrations/motivation-illustration.jsx +0 -70
  372. package/minimal/src/assets/illustrations/order-complete-illustration.jsx +0 -122
  373. package/minimal/src/assets/illustrations/page-not-found-illustration.jsx +0 -74
  374. package/minimal/src/assets/illustrations/seo-illustration.jsx +0 -234
  375. package/minimal/src/assets/illustrations/sever-error-illustration.jsx +0 -148
  376. package/minimal/src/assets/illustrations/upgrade-storage-illustration.jsx +0 -157
  377. package/minimal/src/assets/illustrations/upload-illustration.jsx +0 -617
  378. package/minimal/src/auth/context/amplify/auth-consumer.jsx +0 -19
  379. package/minimal/src/auth/context/amplify/auth-context.js +0 -5
  380. package/minimal/src/auth/context/amplify/auth-provider.jsx +0 -183
  381. package/minimal/src/auth/context/amplify/index.js +0 -3
  382. package/minimal/src/auth/context/auth0/auth-consumer.jsx +0 -19
  383. package/minimal/src/auth/context/auth0/auth-context.js +0 -5
  384. package/minimal/src/auth/context/auth0/auth-provider.jsx +0 -101
  385. package/minimal/src/auth/context/auth0/index.js +0 -3
  386. package/minimal/src/auth/context/firebase/auth-consumer.jsx +0 -19
  387. package/minimal/src/auth/context/firebase/auth-context.js +0 -5
  388. package/minimal/src/auth/context/firebase/auth-provider.jsx +0 -202
  389. package/minimal/src/auth/context/firebase/index.js +0 -3
  390. package/minimal/src/auth/context/jwt/auth-consumer.jsx +0 -19
  391. package/minimal/src/auth/context/jwt/auth-context.js +0 -5
  392. package/minimal/src/auth/context/jwt/auth-provider.jsx +0 -184
  393. package/minimal/src/auth/context/jwt/index.js +0 -3
  394. package/minimal/src/auth/context/jwt/utils.js +0 -74
  395. package/minimal/src/auth/guard/auth-guard.jsx +0 -71
  396. package/minimal/src/auth/guard/guest-guard.jsx +0 -49
  397. package/minimal/src/auth/guard/index.js +0 -3
  398. package/minimal/src/auth/guard/role-based-guard.jsx +0 -57
  399. package/minimal/src/auth/hooks/index.js +0 -1
  400. package/minimal/src/auth/hooks/use-auth-context.js +0 -16
  401. package/minimal/src/components/animate/index.js +0 -6
  402. package/minimal/src/components/animate/motion-container.jsx +0 -43
  403. package/minimal/src/components/animate/motion-lazy.jsx +0 -16
  404. package/minimal/src/components/animate/motion-viewport.jsx +0 -36
  405. package/minimal/src/components/animate/variants/actions.js +0 -6
  406. package/minimal/src/components/animate/variants/background.js +0 -103
  407. package/minimal/src/components/animate/variants/bounce.js +0 -111
  408. package/minimal/src/components/animate/variants/container.js +0 -22
  409. package/minimal/src/components/animate/variants/fade.js +0 -131
  410. package/minimal/src/components/animate/variants/flip.js +0 -58
  411. package/minimal/src/components/animate/variants/index.js +0 -12
  412. package/minimal/src/components/animate/variants/path.js +0 -14
  413. package/minimal/src/components/animate/variants/rotate.js +0 -37
  414. package/minimal/src/components/animate/variants/scale.js +0 -58
  415. package/minimal/src/components/animate/variants/slide.js +0 -69
  416. package/minimal/src/components/animate/variants/transition.js +0 -22
  417. package/minimal/src/components/animate/variants/zoom.js +0 -134
  418. package/minimal/src/components/carousel/arrow-icons.jsx +0 -42
  419. package/minimal/src/components/carousel/carousel-arrow-index.jsx +0 -69
  420. package/minimal/src/components/carousel/carousel-arrows.jsx +0 -127
  421. package/minimal/src/components/carousel/carousel-dots.jsx +0 -85
  422. package/minimal/src/components/carousel/index.js +0 -9
  423. package/minimal/src/components/carousel/use-carousel.js +0 -65
  424. package/minimal/src/components/chart/chart.js +0 -67
  425. package/minimal/src/components/chart/index.js +0 -5
  426. package/minimal/src/components/chart/use-chart.js +0 -216
  427. package/minimal/src/components/color-utils/color-picker.jsx +0 -111
  428. package/minimal/src/components/color-utils/color-preview.jsx +0 -42
  429. package/minimal/src/components/color-utils/index.js +0 -2
  430. package/minimal/src/components/custom-breadcrumbs/custom-breadcrumbs.jsx +0 -97
  431. package/minimal/src/components/custom-breadcrumbs/index.js +0 -1
  432. package/minimal/src/components/custom-breadcrumbs/link-item.jsx +0 -62
  433. package/minimal/src/components/custom-date-range-picker/custom-date-range-picker.jsx +0 -130
  434. package/minimal/src/components/custom-date-range-picker/index.js +0 -5
  435. package/minimal/src/components/custom-date-range-picker/use-date-range-picker.js +0 -65
  436. package/minimal/src/components/custom-date-range-picker/utils.js +0 -32
  437. package/minimal/src/components/custom-dialog/confirm-dialog.jsx +0 -35
  438. package/minimal/src/components/custom-dialog/index.js +0 -1
  439. package/minimal/src/components/custom-popover/custom-popover.jsx +0 -72
  440. package/minimal/src/components/custom-popover/index.js +0 -3
  441. package/minimal/src/components/custom-popover/styles.js +0 -82
  442. package/minimal/src/components/custom-popover/use-popover.js +0 -22
  443. package/minimal/src/components/custom-popover/utils.js +0 -100
  444. package/minimal/src/components/editor/editor.jsx +0 -71
  445. package/minimal/src/components/editor/index.js +0 -1
  446. package/minimal/src/components/editor/styles.js +0 -180
  447. package/minimal/src/components/editor/toolbar.jsx +0 -108
  448. package/minimal/src/components/empty-content/empty-content.jsx +0 -63
  449. package/minimal/src/components/empty-content/index.js +0 -1
  450. package/minimal/src/components/file-thumbnail/download-button.jsx +0 -49
  451. package/minimal/src/components/file-thumbnail/file-thumbnail.jsx +0 -78
  452. package/minimal/src/components/file-thumbnail/index.js +0 -5
  453. package/minimal/src/components/file-thumbnail/utils.js +0 -148
  454. package/minimal/src/components/hook-form/form-provider.jsx +0 -18
  455. package/minimal/src/components/hook-form/index.js +0 -13
  456. package/minimal/src/components/hook-form/rhf-autocomplete.jsx +0 -41
  457. package/minimal/src/components/hook-form/rhf-checkbox.jsx +0 -113
  458. package/minimal/src/components/hook-form/rhf-code.jsx +0 -43
  459. package/minimal/src/components/hook-form/rhf-editor.jsx +0 -56
  460. package/minimal/src/components/hook-form/rhf-radio-group.jsx +0 -78
  461. package/minimal/src/components/hook-form/rhf-select.jsx +0 -151
  462. package/minimal/src/components/hook-form/rhf-slider.jsx +0 -32
  463. package/minimal/src/components/hook-form/rhf-switch.jsx +0 -33
  464. package/minimal/src/components/hook-form/rhf-text-field.jsx +0 -41
  465. package/minimal/src/components/hook-form/rhf-upload.jsx +0 -105
  466. package/minimal/src/components/iconify/iconify.jsx +0 -26
  467. package/minimal/src/components/iconify/index.js +0 -1
  468. package/minimal/src/components/image/image.jsx +0 -141
  469. package/minimal/src/components/image/index.js +0 -1
  470. package/minimal/src/components/image/utils.js +0 -15
  471. package/minimal/src/components/index.js +0 -214
  472. package/minimal/src/components/label/index.js +0 -1
  473. package/minimal/src/components/label/label.jsx +0 -61
  474. package/minimal/src/components/label/styles.js +0 -77
  475. package/minimal/src/components/lightbox/index.js +0 -5
  476. package/minimal/src/components/lightbox/lightbox.jsx +0 -152
  477. package/minimal/src/components/lightbox/styles.jsx +0 -52
  478. package/minimal/src/components/lightbox/use-light-box.js +0 -30
  479. package/minimal/src/components/loading-screen/index.js +0 -2
  480. package/minimal/src/components/loading-screen/loading-screen.jsx +0 -30
  481. package/minimal/src/components/loading-screen/splash-screen.jsx +0 -100
  482. package/minimal/src/components/logo/index.js +0 -1
  483. package/minimal/src/components/logo/logo.jsx +0 -95
  484. package/minimal/src/components/map/index.js +0 -5
  485. package/minimal/src/components/map/map-control.jsx +0 -36
  486. package/minimal/src/components/map/map-marker.jsx +0 -33
  487. package/minimal/src/components/map/map-popup.jsx +0 -18
  488. package/minimal/src/components/map/styles.jsx +0 -107
  489. package/minimal/src/components/markdown/index.js +0 -1
  490. package/minimal/src/components/markdown/markdown.jsx +0 -51
  491. package/minimal/src/components/markdown/styles.js +0 -146
  492. package/minimal/src/components/mega-menu/common/menu-more-link.jsx +0 -33
  493. package/minimal/src/components/mega-menu/common/menu-products.jsx +0 -81
  494. package/minimal/src/components/mega-menu/common/menu-tags.jsx +0 -47
  495. package/minimal/src/components/mega-menu/common/nav-sub-list.jsx +0 -64
  496. package/minimal/src/components/mega-menu/horizontal/mega-menu-desktop-horizontal.jsx +0 -33
  497. package/minimal/src/components/mega-menu/horizontal/nav-item.jsx +0 -104
  498. package/minimal/src/components/mega-menu/horizontal/nav-list.jsx +0 -169
  499. package/minimal/src/components/mega-menu/index.js +0 -3
  500. package/minimal/src/components/mega-menu/mobile/mega-menu-mobile.jsx +0 -22
  501. package/minimal/src/components/mega-menu/mobile/nav-item.jsx +0 -95
  502. package/minimal/src/components/mega-menu/mobile/nav-list.jsx +0 -218
  503. package/minimal/src/components/mega-menu/vertical/mega-menu-desktop-vertical.jsx +0 -31
  504. package/minimal/src/components/mega-menu/vertical/nav-item.jsx +0 -99
  505. package/minimal/src/components/mega-menu/vertical/nav-list.jsx +0 -124
  506. package/minimal/src/components/nav-basic/desktop/nav-basic-desktop.jsx +0 -25
  507. package/minimal/src/components/nav-basic/desktop/nav-item.jsx +0 -166
  508. package/minimal/src/components/nav-basic/desktop/nav-list.jsx +0 -122
  509. package/minimal/src/components/nav-basic/index.js +0 -2
  510. package/minimal/src/components/nav-basic/mobile/nav-basic-mobile.jsx +0 -25
  511. package/minimal/src/components/nav-basic/mobile/nav-item.jsx +0 -171
  512. package/minimal/src/components/nav-basic/mobile/nav-list.jsx +0 -87
  513. package/minimal/src/components/nav-section/horizontal/index.js +0 -1
  514. package/minimal/src/components/nav-section/horizontal/nav-item.jsx +0 -246
  515. package/minimal/src/components/nav-section/horizontal/nav-list.jsx +0 -126
  516. package/minimal/src/components/nav-section/horizontal/nav-section-horizontal.jsx +0 -54
  517. package/minimal/src/components/nav-section/index.js +0 -3
  518. package/minimal/src/components/nav-section/mini/index.js +0 -1
  519. package/minimal/src/components/nav-section/mini/nav-item.jsx +0 -260
  520. package/minimal/src/components/nav-section/mini/nav-list.jsx +0 -119
  521. package/minimal/src/components/nav-section/mini/nav-section-mini.jsx +0 -42
  522. package/minimal/src/components/nav-section/vertical/index.js +0 -1
  523. package/minimal/src/components/nav-section/vertical/nav-item.jsx +0 -298
  524. package/minimal/src/components/nav-section/vertical/nav-list.jsx +0 -95
  525. package/minimal/src/components/nav-section/vertical/nav-section-vertical.jsx +0 -89
  526. package/minimal/src/components/organizational-chart/common/group-node.jsx +0 -115
  527. package/minimal/src/components/organizational-chart/common/simple-node.jsx +0 -32
  528. package/minimal/src/components/organizational-chart/common/standard-node.jsx +0 -95
  529. package/minimal/src/components/organizational-chart/index.js +0 -1
  530. package/minimal/src/components/organizational-chart/organizational-chart.jsx +0 -106
  531. package/minimal/src/components/progress-bar/index.js +0 -3
  532. package/minimal/src/components/progress-bar/progress-bar.jsx +0 -48
  533. package/minimal/src/components/progress-bar/styles.jsx +0 -40
  534. package/minimal/src/components/scroll-progress/index.js +0 -1
  535. package/minimal/src/components/scroll-progress/scroll-progress.jsx +0 -58
  536. package/minimal/src/components/scrollbar/index.js +0 -1
  537. package/minimal/src/components/scrollbar/scrollbar.jsx +0 -44
  538. package/minimal/src/components/scrollbar/styles.js +0 -26
  539. package/minimal/src/components/search-not-found/index.js +0 -1
  540. package/minimal/src/components/search-not-found/search-not-found.jsx +0 -38
  541. package/minimal/src/components/settings/context/index.js +0 -2
  542. package/minimal/src/components/settings/context/settings-context.js +0 -13
  543. package/minimal/src/components/settings/context/settings-provider.jsx +0 -80
  544. package/minimal/src/components/settings/drawer/base-option.jsx +0 -59
  545. package/minimal/src/components/settings/drawer/fullscreen-option.jsx +0 -57
  546. package/minimal/src/components/settings/drawer/index.js +0 -1
  547. package/minimal/src/components/settings/drawer/layout-options.jsx +0 -153
  548. package/minimal/src/components/settings/drawer/presets-options.jsx +0 -55
  549. package/minimal/src/components/settings/drawer/settings-drawer.jsx +0 -193
  550. package/minimal/src/components/settings/drawer/stretch-options.jsx +0 -70
  551. package/minimal/src/components/settings/index.js +0 -3
  552. package/minimal/src/components/snackbar/index.js +0 -3
  553. package/minimal/src/components/snackbar/snackbar-provider.jsx +0 -73
  554. package/minimal/src/components/snackbar/styles.js +0 -47
  555. package/minimal/src/components/svg-color/index.js +0 -1
  556. package/minimal/src/components/table/index.js +0 -10
  557. package/minimal/src/components/table/table-empty-rows.jsx +0 -29
  558. package/minimal/src/components/table/table-head-custom.jsx +0 -90
  559. package/minimal/src/components/table/table-no-data.jsx +0 -34
  560. package/minimal/src/components/table/table-pagination-custom.jsx +0 -51
  561. package/minimal/src/components/table/table-selected-action.jsx +0 -75
  562. package/minimal/src/components/table/table-skeleton.jsx +0 -23
  563. package/minimal/src/components/table/use-table.js +0 -123
  564. package/minimal/src/components/table/utils.js +0 -27
  565. package/minimal/src/components/text-max-line/index.js +0 -3
  566. package/minimal/src/components/text-max-line/text-max-line.jsx +0 -67
  567. package/minimal/src/components/text-max-line/use-typography.js +0 -38
  568. package/minimal/src/components/upload/errors-rejection-files.jsx +0 -55
  569. package/minimal/src/components/upload/index.js +0 -8
  570. package/minimal/src/components/upload/preview-multi-file.jsx +0 -121
  571. package/minimal/src/components/upload/preview-single-file.jsx +0 -36
  572. package/minimal/src/components/upload/upload-avatar.jsx +0 -151
  573. package/minimal/src/components/upload/upload-box.jsx +0 -65
  574. package/minimal/src/components/upload/upload.jsx +0 -186
  575. package/minimal/src/config-global.js +0 -34
  576. package/minimal/src/global.css +0 -20
  577. package/minimal/src/hooks/use-boolean.js +0 -27
  578. package/minimal/src/hooks/use-copy-to-clipboard.js +0 -27
  579. package/minimal/src/hooks/use-countdown.js +0 -78
  580. package/minimal/src/hooks/use-debounce.js +0 -19
  581. package/minimal/src/hooks/use-double-click.js +0 -29
  582. package/minimal/src/hooks/use-event-listener.js +0 -33
  583. package/minimal/src/hooks/use-local-storage.js +0 -89
  584. package/minimal/src/hooks/use-mocked-user.js +0 -34
  585. package/minimal/src/hooks/use-off-set-top.js +0 -36
  586. package/minimal/src/hooks/use-responsive.js +0 -47
  587. package/minimal/src/hooks/use-scroll-to-top.js +0 -14
  588. package/minimal/src/layouts/auth/classic.jsx +0 -158
  589. package/minimal/src/layouts/auth/modern-compact.jsx +0 -56
  590. package/minimal/src/layouts/auth/modern.jsx +0 -95
  591. package/minimal/src/layouts/common/account-popover.jsx +0 -132
  592. package/minimal/src/layouts/common/contacts-popover.jsx +0 -73
  593. package/minimal/src/layouts/common/header-shadow.jsx +0 -31
  594. package/minimal/src/layouts/common/header-simple.jsx +0 -69
  595. package/minimal/src/layouts/common/language-popover.jsx +0 -64
  596. package/minimal/src/layouts/common/login-button.jsx +0 -21
  597. package/minimal/src/layouts/common/nav-toggle-button.jsx +0 -63
  598. package/minimal/src/layouts/common/nav-upgrade.jsx +0 -61
  599. package/minimal/src/layouts/common/notifications-popover/index.jsx +0 -191
  600. package/minimal/src/layouts/common/notifications-popover/notification-item.jsx +0 -246
  601. package/minimal/src/layouts/common/searchbar/index.jsx +0 -171
  602. package/minimal/src/layouts/common/searchbar/result-item.jsx +0 -69
  603. package/minimal/src/layouts/common/searchbar/utils.js +0 -86
  604. package/minimal/src/layouts/common/settings-button.jsx +0 -62
  605. package/minimal/src/layouts/compact/index.jsx +0 -35
  606. package/minimal/src/layouts/config-layout.js +0 -12
  607. package/minimal/src/layouts/dashboard/config-navigation.jsx +0 -324
  608. package/minimal/src/layouts/dashboard/header.jsx +0 -118
  609. package/minimal/src/layouts/dashboard/index.jsx +0 -88
  610. package/minimal/src/layouts/dashboard/main.jsx +0 -74
  611. package/minimal/src/layouts/dashboard/nav-horizontal.jsx +0 -65
  612. package/minimal/src/layouts/dashboard/nav-mini.jsx +0 -57
  613. package/minimal/src/layouts/dashboard/nav-vertical.jsx +0 -106
  614. package/minimal/src/layouts/main/config-navigation.jsx +0 -90
  615. package/minimal/src/layouts/main/footer.jsx +0 -172
  616. package/minimal/src/layouts/main/header.jsx +0 -112
  617. package/minimal/src/layouts/main/index.jsx +0 -40
  618. package/minimal/src/layouts/main/nav/desktop/index.jsx +0 -21
  619. package/minimal/src/layouts/main/nav/desktop/nav-item.jsx +0 -184
  620. package/minimal/src/layouts/main/nav/desktop/nav-list.jsx +0 -158
  621. package/minimal/src/layouts/main/nav/mobile/index.jsx +0 -67
  622. package/minimal/src/layouts/main/nav/mobile/nav-item.jsx +0 -90
  623. package/minimal/src/layouts/main/nav/mobile/nav-list.jsx +0 -83
  624. package/minimal/src/layouts/simple/index.jsx +0 -19
  625. package/minimal/src/locales/config-lang.js +0 -79
  626. package/minimal/src/locales/i18n.js +0 -39
  627. package/minimal/src/locales/index.js +0 -5
  628. package/minimal/src/locales/langs/ar.json +0 -54
  629. package/minimal/src/locales/langs/cn.json +0 -54
  630. package/minimal/src/locales/langs/en.json +0 -54
  631. package/minimal/src/locales/langs/fr.json +0 -54
  632. package/minimal/src/locales/langs/vi.json +0 -54
  633. package/minimal/src/locales/localization-provider.jsx +0 -22
  634. package/minimal/src/locales/use-locales.js +0 -44
  635. package/minimal/src/main.jsx +0 -20
  636. package/minimal/src/pages/403.jsx +0 -17
  637. package/minimal/src/pages/404.jsx +0 -17
  638. package/minimal/src/pages/500.jsx +0 -17
  639. package/minimal/src/pages/about-us.jsx +0 -17
  640. package/minimal/src/pages/auth/amplify/forgot-password.jsx +0 -17
  641. package/minimal/src/pages/auth/amplify/login.jsx +0 -17
  642. package/minimal/src/pages/auth/amplify/new-password.jsx +0 -17
  643. package/minimal/src/pages/auth/amplify/register.jsx +0 -17
  644. package/minimal/src/pages/auth/amplify/verify.jsx +0 -17
  645. package/minimal/src/pages/auth/auth0/callback.js +0 -6
  646. package/minimal/src/pages/auth/auth0/login.jsx +0 -17
  647. package/minimal/src/pages/auth/firebase/forgot-password.jsx +0 -17
  648. package/minimal/src/pages/auth/firebase/login.jsx +0 -17
  649. package/minimal/src/pages/auth/firebase/register.jsx +0 -17
  650. package/minimal/src/pages/auth/firebase/verify.jsx +0 -17
  651. package/minimal/src/pages/auth/jwt/login.jsx +0 -17
  652. package/minimal/src/pages/auth/jwt/register.jsx +0 -17
  653. package/minimal/src/pages/auth-demo/classic/forgot-password.jsx +0 -17
  654. package/minimal/src/pages/auth-demo/classic/login.jsx +0 -17
  655. package/minimal/src/pages/auth-demo/classic/new-password.jsx +0 -17
  656. package/minimal/src/pages/auth-demo/classic/register.jsx +0 -17
  657. package/minimal/src/pages/auth-demo/classic/verify.jsx +0 -17
  658. package/minimal/src/pages/auth-demo/modern/forgot-password.jsx +0 -17
  659. package/minimal/src/pages/auth-demo/modern/login.jsx +0 -17
  660. package/minimal/src/pages/auth-demo/modern/new-password.jsx +0 -17
  661. package/minimal/src/pages/auth-demo/modern/register.jsx +0 -17
  662. package/minimal/src/pages/auth-demo/modern/verify.jsx +0 -17
  663. package/minimal/src/pages/coming-soon.jsx +0 -17
  664. package/minimal/src/pages/components/extra/animate.jsx +0 -17
  665. package/minimal/src/pages/components/extra/carousel.jsx +0 -17
  666. package/minimal/src/pages/components/extra/chart.jsx +0 -17
  667. package/minimal/src/pages/components/extra/copy-to-clipboard.jsx +0 -17
  668. package/minimal/src/pages/components/extra/editor.jsx +0 -17
  669. package/minimal/src/pages/components/extra/form-validation.jsx +0 -17
  670. package/minimal/src/pages/components/extra/image.jsx +0 -17
  671. package/minimal/src/pages/components/extra/label.jsx +0 -17
  672. package/minimal/src/pages/components/extra/lightbox.jsx +0 -17
  673. package/minimal/src/pages/components/extra/map.jsx +0 -17
  674. package/minimal/src/pages/components/extra/markdown.jsx +0 -17
  675. package/minimal/src/pages/components/extra/mega-menu.jsx +0 -17
  676. package/minimal/src/pages/components/extra/multi-language.jsx +0 -17
  677. package/minimal/src/pages/components/extra/navigation-bar.jsx +0 -17
  678. package/minimal/src/pages/components/extra/organization-chart.jsx +0 -17
  679. package/minimal/src/pages/components/extra/scroll-progress.jsx +0 -17
  680. package/minimal/src/pages/components/extra/scroll.jsx +0 -17
  681. package/minimal/src/pages/components/extra/snackbar.jsx +0 -17
  682. package/minimal/src/pages/components/extra/text-max-line.jsx +0 -17
  683. package/minimal/src/pages/components/extra/upload.jsx +0 -17
  684. package/minimal/src/pages/components/foundation/colors.jsx +0 -17
  685. package/minimal/src/pages/components/foundation/grid.jsx +0 -17
  686. package/minimal/src/pages/components/foundation/icons.jsx +0 -17
  687. package/minimal/src/pages/components/foundation/shadows.jsx +0 -17
  688. package/minimal/src/pages/components/foundation/typography.jsx +0 -17
  689. package/minimal/src/pages/components/index.jsx +0 -17
  690. package/minimal/src/pages/components/mui/accordion.jsx +0 -17
  691. package/minimal/src/pages/components/mui/alert.jsx +0 -17
  692. package/minimal/src/pages/components/mui/autocomplete.jsx +0 -17
  693. package/minimal/src/pages/components/mui/avatar.jsx +0 -17
  694. package/minimal/src/pages/components/mui/badge.jsx +0 -17
  695. package/minimal/src/pages/components/mui/breadcrumbs.jsx +0 -17
  696. package/minimal/src/pages/components/mui/buttons.jsx +0 -17
  697. package/minimal/src/pages/components/mui/checkbox.jsx +0 -17
  698. package/minimal/src/pages/components/mui/chip.jsx +0 -17
  699. package/minimal/src/pages/components/mui/data-grid.jsx +0 -17
  700. package/minimal/src/pages/components/mui/dialog.jsx +0 -17
  701. package/minimal/src/pages/components/mui/list.jsx +0 -17
  702. package/minimal/src/pages/components/mui/menu.jsx +0 -17
  703. package/minimal/src/pages/components/mui/pagination.jsx +0 -17
  704. package/minimal/src/pages/components/mui/pickers.jsx +0 -17
  705. package/minimal/src/pages/components/mui/popover.jsx +0 -17
  706. package/minimal/src/pages/components/mui/progress.jsx +0 -17
  707. package/minimal/src/pages/components/mui/radio-button.jsx +0 -17
  708. package/minimal/src/pages/components/mui/rating.jsx +0 -17
  709. package/minimal/src/pages/components/mui/slider.jsx +0 -17
  710. package/minimal/src/pages/components/mui/stepper.jsx +0 -17
  711. package/minimal/src/pages/components/mui/switch.jsx +0 -17
  712. package/minimal/src/pages/components/mui/table.jsx +0 -17
  713. package/minimal/src/pages/components/mui/tabs.jsx +0 -17
  714. package/minimal/src/pages/components/mui/textfield.jsx +0 -17
  715. package/minimal/src/pages/components/mui/timeline.jsx +0 -17
  716. package/minimal/src/pages/components/mui/tooltip.jsx +0 -17
  717. package/minimal/src/pages/components/mui/transfer-list.jsx +0 -17
  718. package/minimal/src/pages/contact-us.jsx +0 -17
  719. package/minimal/src/pages/dashboard/analytics.jsx +0 -17
  720. package/minimal/src/pages/dashboard/app.jsx +0 -17
  721. package/minimal/src/pages/dashboard/banking.jsx +0 -17
  722. package/minimal/src/pages/dashboard/blank.jsx +0 -17
  723. package/minimal/src/pages/dashboard/booking.jsx +0 -17
  724. package/minimal/src/pages/dashboard/calendar.jsx +0 -17
  725. package/minimal/src/pages/dashboard/chat.jsx +0 -17
  726. package/minimal/src/pages/dashboard/ecommerce.jsx +0 -17
  727. package/minimal/src/pages/dashboard/file-manager.jsx +0 -17
  728. package/minimal/src/pages/dashboard/file.jsx +0 -17
  729. package/minimal/src/pages/dashboard/invoice/details.jsx +0 -23
  730. package/minimal/src/pages/dashboard/invoice/edit.jsx +0 -23
  731. package/minimal/src/pages/dashboard/invoice/list.jsx +0 -17
  732. package/minimal/src/pages/dashboard/invoice/new.jsx +0 -17
  733. package/minimal/src/pages/dashboard/job/details.jsx +0 -23
  734. package/minimal/src/pages/dashboard/job/edit.jsx +0 -23
  735. package/minimal/src/pages/dashboard/job/list.jsx +0 -17
  736. package/minimal/src/pages/dashboard/job/new.jsx +0 -17
  737. package/minimal/src/pages/dashboard/kanban.jsx +0 -17
  738. package/minimal/src/pages/dashboard/mail.jsx +0 -17
  739. package/minimal/src/pages/dashboard/order/details.jsx +0 -23
  740. package/minimal/src/pages/dashboard/order/list.jsx +0 -17
  741. package/minimal/src/pages/dashboard/permission.jsx +0 -17
  742. package/minimal/src/pages/dashboard/post/details.jsx +0 -23
  743. package/minimal/src/pages/dashboard/post/edit.jsx +0 -23
  744. package/minimal/src/pages/dashboard/post/list.jsx +0 -17
  745. package/minimal/src/pages/dashboard/post/new.jsx +0 -17
  746. package/minimal/src/pages/dashboard/product/details.jsx +0 -23
  747. package/minimal/src/pages/dashboard/product/edit.jsx +0 -23
  748. package/minimal/src/pages/dashboard/product/list.jsx +0 -17
  749. package/minimal/src/pages/dashboard/product/new.jsx +0 -17
  750. package/minimal/src/pages/dashboard/tour/details.jsx +0 -23
  751. package/minimal/src/pages/dashboard/tour/edit.jsx +0 -23
  752. package/minimal/src/pages/dashboard/tour/list.jsx +0 -17
  753. package/minimal/src/pages/dashboard/tour/new.jsx +0 -17
  754. package/minimal/src/pages/dashboard/user/account.jsx +0 -17
  755. package/minimal/src/pages/dashboard/user/cards.jsx +0 -17
  756. package/minimal/src/pages/dashboard/user/edit.jsx +0 -23
  757. package/minimal/src/pages/dashboard/user/list.jsx +0 -17
  758. package/minimal/src/pages/dashboard/user/new.jsx +0 -17
  759. package/minimal/src/pages/dashboard/user/profile.jsx +0 -17
  760. package/minimal/src/pages/faqs.jsx +0 -17
  761. package/minimal/src/pages/home.jsx +0 -17
  762. package/minimal/src/pages/maintenance.jsx +0 -17
  763. package/minimal/src/pages/payment.jsx +0 -17
  764. package/minimal/src/pages/post/details.jsx +0 -23
  765. package/minimal/src/pages/post/list.jsx +0 -17
  766. package/minimal/src/pages/pricing.jsx +0 -17
  767. package/minimal/src/pages/product/checkout.jsx +0 -17
  768. package/minimal/src/pages/product/details.jsx +0 -23
  769. package/minimal/src/pages/product/list.jsx +0 -17
  770. package/minimal/src/routes/components/index.js +0 -1
  771. package/minimal/src/routes/components/router-link.jsx +0 -13
  772. package/minimal/src/routes/hooks/index.js +0 -6
  773. package/minimal/src/routes/hooks/use-active-link.js +0 -13
  774. package/minimal/src/routes/hooks/use-params.js +0 -10
  775. package/minimal/src/routes/hooks/use-pathname.js +0 -10
  776. package/minimal/src/routes/hooks/use-router.js +0 -21
  777. package/minimal/src/routes/hooks/use-search-params.js +0 -10
  778. package/minimal/src/routes/paths.js +0 -180
  779. package/minimal/src/routes/sections/auth-demo.jsx +0 -112
  780. package/minimal/src/routes/sections/auth.jsx +0 -175
  781. package/minimal/src/routes/sections/components.jsx +0 -173
  782. package/minimal/src/routes/sections/dashboard.jsx +0 -165
  783. package/minimal/src/routes/sections/index.jsx +0 -50
  784. package/minimal/src/routes/sections/main.jsx +0 -94
  785. package/minimal/src/sections/_examples/component-block.jsx +0 -45
  786. package/minimal/src/sections/_examples/component-card.jsx +0 -54
  787. package/minimal/src/sections/_examples/component-hero.jsx +0 -80
  788. package/minimal/src/sections/_examples/config-navigation.js +0 -73
  789. package/minimal/src/sections/_examples/extra/animate-view/background/container.jsx +0 -42
  790. package/minimal/src/sections/_examples/extra/animate-view/background/index.jsx +0 -61
  791. package/minimal/src/sections/_examples/extra/animate-view/background/toolbar.jsx +0 -22
  792. package/minimal/src/sections/_examples/extra/animate-view/control-panel.jsx +0 -58
  793. package/minimal/src/sections/_examples/extra/animate-view/dialog/container.jsx +0 -72
  794. package/minimal/src/sections/_examples/extra/animate-view/dialog/index.jsx +0 -76
  795. package/minimal/src/sections/_examples/extra/animate-view/get-variant.js +0 -91
  796. package/minimal/src/sections/_examples/extra/animate-view/index.jsx +0 -78
  797. package/minimal/src/sections/_examples/extra/animate-view/inview/container.jsx +0 -80
  798. package/minimal/src/sections/_examples/extra/animate-view/inview/index.jsx +0 -129
  799. package/minimal/src/sections/_examples/extra/animate-view/inview/toolbar.jsx +0 -57
  800. package/minimal/src/sections/_examples/extra/animate-view/other/buttons.jsx +0 -86
  801. package/minimal/src/sections/_examples/extra/animate-view/other/index.jsx +0 -48
  802. package/minimal/src/sections/_examples/extra/animate-view/other/logo.jsx +0 -60
  803. package/minimal/src/sections/_examples/extra/animate-view/scroll/container.jsx +0 -60
  804. package/minimal/src/sections/_examples/extra/animate-view/scroll/index.jsx +0 -80
  805. package/minimal/src/sections/_examples/extra/animate-view/scroll/toolbar.jsx +0 -29
  806. package/minimal/src/sections/_examples/extra/carousel-view/carousel-animation.jsx +0 -113
  807. package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-1.jsx +0 -35
  808. package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-2.jsx +0 -53
  809. package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-3.jsx +0 -57
  810. package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-4.jsx +0 -89
  811. package/minimal/src/sections/_examples/extra/carousel-view/carousel-center-mode.jsx +0 -125
  812. package/minimal/src/sections/_examples/extra/carousel-view/carousel-thumbnail.jsx +0 -160
  813. package/minimal/src/sections/_examples/extra/carousel-view/index.jsx +0 -124
  814. package/minimal/src/sections/_examples/extra/chart-view/chart-area.jsx +0 -35
  815. package/minimal/src/sections/_examples/extra/chart-view/chart-bar.jsx +0 -43
  816. package/minimal/src/sections/_examples/extra/chart-view/chart-column-multiple.jsx +0 -32
  817. package/minimal/src/sections/_examples/extra/chart-view/chart-column-negative.jsx +0 -77
  818. package/minimal/src/sections/_examples/extra/chart-view/chart-column-single.jsx +0 -34
  819. package/minimal/src/sections/_examples/extra/chart-view/chart-column-stacked.jsx +0 -50
  820. package/minimal/src/sections/_examples/extra/chart-view/chart-donut.jsx +0 -42
  821. package/minimal/src/sections/_examples/extra/chart-view/chart-line.jsx +0 -27
  822. package/minimal/src/sections/_examples/extra/chart-view/chart-mixed.jsx +0 -59
  823. package/minimal/src/sections/_examples/extra/chart-view/chart-pie.jsx +0 -48
  824. package/minimal/src/sections/_examples/extra/chart-view/chart-radar-bar.jsx +0 -73
  825. package/minimal/src/sections/_examples/extra/chart-view/chart-radial-bar.jsx +0 -73
  826. package/minimal/src/sections/_examples/extra/chart-view/index.jsx +0 -234
  827. package/minimal/src/sections/_examples/extra/copy-to-clipboard-view.jsx +0 -115
  828. package/minimal/src/sections/_examples/extra/editor-view.jsx +0 -95
  829. package/minimal/src/sections/_examples/extra/form-validation-view/index.jsx +0 -59
  830. package/minimal/src/sections/_examples/extra/form-validation-view/react-hook-form.jsx +0 -405
  831. package/minimal/src/sections/_examples/extra/form-validation-view/schema.js +0 -50
  832. package/minimal/src/sections/_examples/extra/form-validation-view/values-preview.jsx +0 -87
  833. package/minimal/src/sections/_examples/extra/image-view.jsx +0 -94
  834. package/minimal/src/sections/_examples/extra/label-view.jsx +0 -116
  835. package/minimal/src/sections/_examples/extra/lightbox-view.jsx +0 -239
  836. package/minimal/src/sections/_examples/extra/map-view/change-theme/control-panel.jsx +0 -41
  837. package/minimal/src/sections/_examples/extra/map-view/change-theme/index.jsx +0 -41
  838. package/minimal/src/sections/_examples/extra/map-view/clusters/index.jsx +0 -61
  839. package/minimal/src/sections/_examples/extra/map-view/clusters/layers.js +0 -37
  840. package/minimal/src/sections/_examples/extra/map-view/draggable-markers/control-panel.jsx +0 -49
  841. package/minimal/src/sections/_examples/extra/map-view/draggable-markers/index.jsx +0 -56
  842. package/minimal/src/sections/_examples/extra/map-view/heatmap/control-panel.jsx +0 -91
  843. package/minimal/src/sections/_examples/extra/map-view/heatmap/index.jsx +0 -94
  844. package/minimal/src/sections/_examples/extra/map-view/heatmap/map-style.js +0 -40
  845. package/minimal/src/sections/_examples/extra/map-view/index.jsx +0 -183
  846. package/minimal/src/sections/_examples/extra/map-view/interaction/control-panel.jsx +0 -85
  847. package/minimal/src/sections/_examples/extra/map-view/interaction/index.jsx +0 -56
  848. package/minimal/src/sections/_examples/extra/map-view/map-geo-json-animation.jsx +0 -68
  849. package/minimal/src/sections/_examples/extra/map-view/map-highlight-by-filter.jsx +0 -83
  850. package/minimal/src/sections/_examples/extra/map-view/map-markers-popups.jsx +0 -95
  851. package/minimal/src/sections/_examples/extra/map-view/side-by-side/control-panel.jsx +0 -28
  852. package/minimal/src/sections/_examples/extra/map-view/side-by-side/index.jsx +0 -106
  853. package/minimal/src/sections/_examples/extra/map-view/viewport-animation/control-panel.jsx +0 -39
  854. package/minimal/src/sections/_examples/extra/map-view/viewport-animation/index.jsx +0 -44
  855. package/minimal/src/sections/_examples/extra/markdown-view.jsx +0 -204
  856. package/minimal/src/sections/_examples/extra/mega-menu-view.jsx +0 -318
  857. package/minimal/src/sections/_examples/extra/multi-language-view.jsx +0 -124
  858. package/minimal/src/sections/_examples/extra/navigation-bar-view.jsx +0 -564
  859. package/minimal/src/sections/_examples/extra/organizational-chart-view.jsx +0 -206
  860. package/minimal/src/sections/_examples/extra/scroll-progress-view.jsx +0 -136
  861. package/minimal/src/sections/_examples/extra/scroll-view.jsx +0 -113
  862. package/minimal/src/sections/_examples/extra/snackbar-view.jsx +0 -212
  863. package/minimal/src/sections/_examples/extra/text-max-line-view.jsx +0 -112
  864. package/minimal/src/sections/_examples/extra/upload-view.jsx +0 -190
  865. package/minimal/src/sections/_examples/foundation/colors-view.jsx +0 -181
  866. package/minimal/src/sections/_examples/foundation/grid-view.jsx +0 -154
  867. package/minimal/src/sections/_examples/foundation/icons-view.jsx +0 -95
  868. package/minimal/src/sections/_examples/foundation/index.js +0 -5
  869. package/minimal/src/sections/_examples/foundation/shadows-view.jsx +0 -122
  870. package/minimal/src/sections/_examples/foundation/typography-view.jsx +0 -153
  871. package/minimal/src/sections/_examples/mui/accordion-view.jsx +0 -101
  872. package/minimal/src/sections/_examples/mui/alert-view.jsx +0 -176
  873. package/minimal/src/sections/_examples/mui/autocomplete-view.jsx +0 -384
  874. package/minimal/src/sections/_examples/mui/avatar-view.jsx +0 -188
  875. package/minimal/src/sections/_examples/mui/badge-view.jsx +0 -139
  876. package/minimal/src/sections/_examples/mui/breadcrumbs-view.jsx +0 -158
  877. package/minimal/src/sections/_examples/mui/button-view/button-groups.jsx +0 -111
  878. package/minimal/src/sections/_examples/mui/button-view/button-variants.jsx +0 -144
  879. package/minimal/src/sections/_examples/mui/button-view/floating-action-button.jsx +0 -198
  880. package/minimal/src/sections/_examples/mui/button-view/icon-buttons.jsx +0 -90
  881. package/minimal/src/sections/_examples/mui/button-view/index.jsx +0 -102
  882. package/minimal/src/sections/_examples/mui/button-view/toggle-buttons.jsx +0 -183
  883. package/minimal/src/sections/_examples/mui/checkbox-view.jsx +0 -187
  884. package/minimal/src/sections/_examples/mui/chip-view/chip.jsx +0 -241
  885. package/minimal/src/sections/_examples/mui/chip-view/index.jsx +0 -72
  886. package/minimal/src/sections/_examples/mui/data-grid-view/data-grid-basic.jsx +0 -65
  887. package/minimal/src/sections/_examples/mui/data-grid-view/data-grid-custom.jsx +0 -236
  888. package/minimal/src/sections/_examples/mui/data-grid-view/index.jsx +0 -95
  889. package/minimal/src/sections/_examples/mui/dialog-view/alert-dialog.jsx +0 -39
  890. package/minimal/src/sections/_examples/mui/dialog-view/form-dialog.jsx +0 -52
  891. package/minimal/src/sections/_examples/mui/dialog-view/full-screen-dialog.jsx +0 -68
  892. package/minimal/src/sections/_examples/mui/dialog-view/index.jsx +0 -77
  893. package/minimal/src/sections/_examples/mui/dialog-view/max-width-dialog.jsx +0 -105
  894. package/minimal/src/sections/_examples/mui/dialog-view/scroll-dialog.jsx +0 -74
  895. package/minimal/src/sections/_examples/mui/dialog-view/simple-dialog.jsx +0 -69
  896. package/minimal/src/sections/_examples/mui/dialog-view/transitions-dialog.jsx +0 -49
  897. package/minimal/src/sections/_examples/mui/list-view.jsx +0 -324
  898. package/minimal/src/sections/_examples/mui/menu-view.jsx +0 -193
  899. package/minimal/src/sections/_examples/mui/pagination-view.jsx +0 -126
  900. package/minimal/src/sections/_examples/mui/picker-view/index.jsx +0 -76
  901. package/minimal/src/sections/_examples/mui/picker-view/picker-date-range.jsx +0 -91
  902. package/minimal/src/sections/_examples/mui/picker-view/picker-date-time.jsx +0 -74
  903. package/minimal/src/sections/_examples/mui/picker-view/picker-date.jsx +0 -140
  904. package/minimal/src/sections/_examples/mui/picker-view/picker-time.jsx +0 -115
  905. package/minimal/src/sections/_examples/mui/popover-view.jsx +0 -186
  906. package/minimal/src/sections/_examples/mui/progress-view/index.jsx +0 -99
  907. package/minimal/src/sections/_examples/mui/progress-view/progress-circular.jsx +0 -58
  908. package/minimal/src/sections/_examples/mui/progress-view/progress-linear.jsx +0 -86
  909. package/minimal/src/sections/_examples/mui/radio-button-view.jsx +0 -117
  910. package/minimal/src/sections/_examples/mui/rating-view.jsx +0 -184
  911. package/minimal/src/sections/_examples/mui/slider-view.jsx +0 -204
  912. package/minimal/src/sections/_examples/mui/stepper-view/customized-steppers.jsx +0 -260
  913. package/minimal/src/sections/_examples/mui/stepper-view/horizontal-linear-stepper.jsx +0 -125
  914. package/minimal/src/sections/_examples/mui/stepper-view/index.jsx +0 -95
  915. package/minimal/src/sections/_examples/mui/stepper-view/linear-alternative-label-stepper.jsx +0 -123
  916. package/minimal/src/sections/_examples/mui/stepper-view/vertical-linear-stepper.jsx +0 -89
  917. package/minimal/src/sections/_examples/mui/switch-view.jsx +0 -99
  918. package/minimal/src/sections/_examples/mui/table-view/basic-table.jsx +0 -56
  919. package/minimal/src/sections/_examples/mui/table-view/collapsible-table.jsx +0 -143
  920. package/minimal/src/sections/_examples/mui/table-view/grouping-fixed-header-table.jsx +0 -135
  921. package/minimal/src/sections/_examples/mui/table-view/index.jsx +0 -75
  922. package/minimal/src/sections/_examples/mui/table-view/sorting-selecting-table.jsx +0 -187
  923. package/minimal/src/sections/_examples/mui/table-view/utils.js +0 -24
  924. package/minimal/src/sections/_examples/mui/tabs-view.jsx +0 -211
  925. package/minimal/src/sections/_examples/mui/textfield-view/index.jsx +0 -86
  926. package/minimal/src/sections/_examples/mui/textfield-view/textfield.jsx +0 -278
  927. package/minimal/src/sections/_examples/mui/timeline-view.jsx +0 -237
  928. package/minimal/src/sections/_examples/mui/tooltip-view.jsx +0 -184
  929. package/minimal/src/sections/_examples/mui/transfer-list-view/enhanced-transfer-list.jsx +0 -159
  930. package/minimal/src/sections/_examples/mui/transfer-list-view/index.jsx +0 -52
  931. package/minimal/src/sections/_examples/mui/transfer-list-view/simple-transfer-list.jsx +0 -154
  932. package/minimal/src/sections/_examples/view.jsx +0 -120
  933. package/minimal/src/sections/about/about-hero.jsx +0 -93
  934. package/minimal/src/sections/about/about-team.jsx +0 -158
  935. package/minimal/src/sections/about/about-testimonials.jsx +0 -202
  936. package/minimal/src/sections/about/about-vision.jsx +0 -105
  937. package/minimal/src/sections/about/about-what.jsx +0 -133
  938. package/minimal/src/sections/about/view/about-view.jsx +0 -23
  939. package/minimal/src/sections/about/view/index.js +0 -1
  940. package/minimal/src/sections/account/account-billing-address.jsx +0 -130
  941. package/minimal/src/sections/account/account-billing-history.jsx +0 -78
  942. package/minimal/src/sections/account/account-billing-payment.jsx +0 -60
  943. package/minimal/src/sections/account/account-billing-plan.jsx +0 -225
  944. package/minimal/src/sections/account/account-billing.jsx +0 -35
  945. package/minimal/src/sections/account/account-change-password.jsx +0 -125
  946. package/minimal/src/sections/account/account-general.jsx +0 -201
  947. package/minimal/src/sections/account/account-notifications.jsx +0 -131
  948. package/minimal/src/sections/account/account-social-links.jsx +0 -87
  949. package/minimal/src/sections/account/view/index.js +0 -1
  950. package/minimal/src/sections/account/view/user-account-view.jsx +0 -106
  951. package/minimal/src/sections/address/address-item.jsx +0 -61
  952. package/minimal/src/sections/address/address-list-dialog.jsx +0 -165
  953. package/minimal/src/sections/address/address-new-form.jsx +0 -176
  954. package/minimal/src/sections/address/index.js +0 -3
  955. package/minimal/src/sections/auth/amplify/amplify-forgot-password-view.jsx +0 -112
  956. package/minimal/src/sections/auth/amplify/amplify-login-view.jsx +0 -140
  957. package/minimal/src/sections/auth/amplify/amplify-new-password-view.jsx +0 -199
  958. package/minimal/src/sections/auth/amplify/amplify-register-view.jsx +0 -163
  959. package/minimal/src/sections/auth/amplify/amplify-verify-view.jsx +0 -154
  960. package/minimal/src/sections/auth/amplify/index.js +0 -5
  961. package/minimal/src/sections/auth/auth0/auth0-login-view.jsx +0 -120
  962. package/minimal/src/sections/auth/auth0/index.js +0 -1
  963. package/minimal/src/sections/auth/firebase/firebase-forgot-password-view.jsx +0 -112
  964. package/minimal/src/sections/auth/firebase/firebase-login-view.jsx +0 -198
  965. package/minimal/src/sections/auth/firebase/firebase-register-view.jsx +0 -220
  966. package/minimal/src/sections/auth/firebase/firebase-verify-view.jsx +0 -56
  967. package/minimal/src/sections/auth/firebase/index.js +0 -4
  968. package/minimal/src/sections/auth/jwt/index.js +0 -2
  969. package/minimal/src/sections/auth/jwt/jwt-login-view.jsx +0 -137
  970. package/minimal/src/sections/auth/jwt/jwt-register-view.jsx +0 -164
  971. package/minimal/src/sections/auth-demo/classic/classic-forgot-password-view.jsx +0 -100
  972. package/minimal/src/sections/auth-demo/classic/classic-login-view.jsx +0 -118
  973. package/minimal/src/sections/auth-demo/classic/classic-new-password-view.jsx +0 -167
  974. package/minimal/src/sections/auth-demo/classic/classic-register-view.jsx +0 -140
  975. package/minimal/src/sections/auth-demo/classic/classic-verify-view.jsx +0 -122
  976. package/minimal/src/sections/auth-demo/classic/index.js +0 -5
  977. package/minimal/src/sections/auth-demo/modern/index.js +0 -5
  978. package/minimal/src/sections/auth-demo/modern/modern-forgot-password-view.jsx +0 -102
  979. package/minimal/src/sections/auth-demo/modern/modern-login-view.jsx +0 -120
  980. package/minimal/src/sections/auth-demo/modern/modern-new-password-view.jsx +0 -167
  981. package/minimal/src/sections/auth-demo/modern/modern-register-view.jsx +0 -142
  982. package/minimal/src/sections/auth-demo/modern/modern-verify-view.jsx +0 -122
  983. package/minimal/src/sections/blank/view.jsx +0 -29
  984. package/minimal/src/sections/blog/post-comment-form.jsx +0 -80
  985. package/minimal/src/sections/blog/post-comment-item.jsx +0 -88
  986. package/minimal/src/sections/blog/post-comment-list.jsx +0 -55
  987. package/minimal/src/sections/blog/post-details-hero.jsx +0 -124
  988. package/minimal/src/sections/blog/post-details-preview.jsx +0 -96
  989. package/minimal/src/sections/blog/post-details-toolbar.jsx +0 -111
  990. package/minimal/src/sections/blog/post-item-horizontal.jsx +0 -183
  991. package/minimal/src/sections/blog/post-item.jsx +0 -203
  992. package/minimal/src/sections/blog/post-list-horizontal.jsx +0 -59
  993. package/minimal/src/sections/blog/post-list.jsx +0 -66
  994. package/minimal/src/sections/blog/post-new-edit-form.jsx +0 -315
  995. package/minimal/src/sections/blog/post-search.jsx +0 -129
  996. package/minimal/src/sections/blog/post-skeleton.jsx +0 -94
  997. package/minimal/src/sections/blog/post-sort.jsx +0 -56
  998. package/minimal/src/sections/blog/view/index.js +0 -6
  999. package/minimal/src/sections/blog/view/post-create-view.jsx +0 -40
  1000. package/minimal/src/sections/blog/view/post-details-home-view.jsx +0 -188
  1001. package/minimal/src/sections/blog/view/post-details-view.jsx +0 -172
  1002. package/minimal/src/sections/blog/view/post-edit-view.jsx +0 -50
  1003. package/minimal/src/sections/blog/view/post-list-home-view.jsx +0 -99
  1004. package/minimal/src/sections/blog/view/post-list-view.jsx +0 -187
  1005. package/minimal/src/sections/calendar/calendar-filters-result.jsx +0 -132
  1006. package/minimal/src/sections/calendar/calendar-filters.jsx +0 -217
  1007. package/minimal/src/sections/calendar/calendar-form.jsx +0 -198
  1008. package/minimal/src/sections/calendar/calendar-toolbar.jsx +0 -141
  1009. package/minimal/src/sections/calendar/hooks/index.js +0 -2
  1010. package/minimal/src/sections/calendar/hooks/use-calendar.js +0 -168
  1011. package/minimal/src/sections/calendar/hooks/use-event.js +0 -33
  1012. package/minimal/src/sections/calendar/styles.js +0 -163
  1013. package/minimal/src/sections/calendar/view/calendar-view.jsx +0 -265
  1014. package/minimal/src/sections/calendar/view/index.js +0 -1
  1015. package/minimal/src/sections/chat/chat-header-compose.jsx +0 -112
  1016. package/minimal/src/sections/chat/chat-header-detail.jsx +0 -84
  1017. package/minimal/src/sections/chat/chat-message-input.jsx +0 -153
  1018. package/minimal/src/sections/chat/chat-message-item.jsx +0 -153
  1019. package/minimal/src/sections/chat/chat-message-list.jsx +0 -50
  1020. package/minimal/src/sections/chat/chat-nav-account.jsx +0 -115
  1021. package/minimal/src/sections/chat/chat-nav-item.jsx +0 -152
  1022. package/minimal/src/sections/chat/chat-nav-search-results.jsx +0 -64
  1023. package/minimal/src/sections/chat/chat-nav.jsx +0 -264
  1024. package/minimal/src/sections/chat/chat-room-attachments.jsx +0 -125
  1025. package/minimal/src/sections/chat/chat-room-group.jsx +0 -106
  1026. package/minimal/src/sections/chat/chat-room-participant-dialog.jsx +0 -112
  1027. package/minimal/src/sections/chat/chat-room-single.jsx +0 -102
  1028. package/minimal/src/sections/chat/chat-room.jsx +0 -150
  1029. package/minimal/src/sections/chat/chat-skeleton.jsx +0 -33
  1030. package/minimal/src/sections/chat/hooks/index.js +0 -4
  1031. package/minimal/src/sections/chat/hooks/use-collapse-nav.js +0 -35
  1032. package/minimal/src/sections/chat/hooks/use-get-message.js +0 -25
  1033. package/minimal/src/sections/chat/hooks/use-get-nav-item.js +0 -38
  1034. package/minimal/src/sections/chat/hooks/use-messages-scroll.js +0 -33
  1035. package/minimal/src/sections/chat/view/chat-view.jsx +0 -145
  1036. package/minimal/src/sections/chat/view/index.js +0 -1
  1037. package/minimal/src/sections/checkout/checkout-billing-address.jsx +0 -92
  1038. package/minimal/src/sections/checkout/checkout-billing-info.jsx +0 -43
  1039. package/minimal/src/sections/checkout/checkout-cart-product-list.jsx +0 -58
  1040. package/minimal/src/sections/checkout/checkout-cart-product.jsx +0 -81
  1041. package/minimal/src/sections/checkout/checkout-cart.jsx +0 -88
  1042. package/minimal/src/sections/checkout/checkout-delivery.jsx +0 -103
  1043. package/minimal/src/sections/checkout/checkout-order-complete.jsx +0 -116
  1044. package/minimal/src/sections/checkout/checkout-payment-methods.jsx +0 -149
  1045. package/minimal/src/sections/checkout/checkout-payment.jsx +0 -140
  1046. package/minimal/src/sections/checkout/checkout-steps.jsx +0 -103
  1047. package/minimal/src/sections/checkout/checkout-summary.jsx +0 -112
  1048. package/minimal/src/sections/checkout/context/checkout-context.js +0 -13
  1049. package/minimal/src/sections/checkout/context/checkout-provider.jsx +0 -219
  1050. package/minimal/src/sections/checkout/context/index.js +0 -2
  1051. package/minimal/src/sections/checkout/view/checkout-view.jsx +0 -52
  1052. package/minimal/src/sections/checkout/view/index.js +0 -1
  1053. package/minimal/src/sections/coming-soon/view.jsx +0 -113
  1054. package/minimal/src/sections/contact/contact-form.jsx +0 -47
  1055. package/minimal/src/sections/contact/contact-hero.jsx +0 -129
  1056. package/minimal/src/sections/contact/contact-map.jsx +0 -100
  1057. package/minimal/src/sections/contact/view/contact-view.jsx +0 -33
  1058. package/minimal/src/sections/contact/view/index.js +0 -1
  1059. package/minimal/src/sections/error/403-view.jsx +0 -43
  1060. package/minimal/src/sections/error/500-view.jsx +0 -41
  1061. package/minimal/src/sections/error/index.js +0 -3
  1062. package/minimal/src/sections/error/not-found-view.jsx +0 -47
  1063. package/minimal/src/sections/faqs/faqs-category.jsx +0 -172
  1064. package/minimal/src/sections/faqs/faqs-form.jsx +0 -42
  1065. package/minimal/src/sections/faqs/faqs-hero.jsx +0 -111
  1066. package/minimal/src/sections/faqs/faqs-list.jsx +0 -28
  1067. package/minimal/src/sections/faqs/view/faqs-view.jsx +0 -50
  1068. package/minimal/src/sections/faqs/view/index.js +0 -1
  1069. package/minimal/src/sections/file-manager/file-data-activity.jsx +0 -125
  1070. package/minimal/src/sections/file-manager/file-manager-action-selected.jsx +0 -74
  1071. package/minimal/src/sections/file-manager/file-manager-file-details.jsx +0 -281
  1072. package/minimal/src/sections/file-manager/file-manager-file-item.jsx +0 -270
  1073. package/minimal/src/sections/file-manager/file-manager-filters-result.jsx +0 -115
  1074. package/minimal/src/sections/file-manager/file-manager-filters.jsx +0 -217
  1075. package/minimal/src/sections/file-manager/file-manager-folder-item.jsx +0 -309
  1076. package/minimal/src/sections/file-manager/file-manager-grid-view.jsx +0 -201
  1077. package/minimal/src/sections/file-manager/file-manager-invited-item.jsx +0 -113
  1078. package/minimal/src/sections/file-manager/file-manager-new-folder-dialog.jsx +0 -117
  1079. package/minimal/src/sections/file-manager/file-manager-panel.jsx +0 -81
  1080. package/minimal/src/sections/file-manager/file-manager-share-dialog.jsx +0 -95
  1081. package/minimal/src/sections/file-manager/file-manager-table-row.jsx +0 -287
  1082. package/minimal/src/sections/file-manager/file-manager-table.jsx +0 -208
  1083. package/minimal/src/sections/file-manager/file-recent-item.jsx +0 -240
  1084. package/minimal/src/sections/file-manager/file-storage-overview.jsx +0 -110
  1085. package/minimal/src/sections/file-manager/file-upgrade.jsx +0 -60
  1086. package/minimal/src/sections/file-manager/file-widget.jsx +0 -64
  1087. package/minimal/src/sections/file-manager/view/file-manager-view.jsx +0 -284
  1088. package/minimal/src/sections/file-manager/view/index.js +0 -1
  1089. package/minimal/src/sections/home/home-advertisement.jsx +0 -118
  1090. package/minimal/src/sections/home/home-clean-interfaces.jsx +0 -84
  1091. package/minimal/src/sections/home/home-color-presets.jsx +0 -156
  1092. package/minimal/src/sections/home/home-dark-mode.jsx +0 -80
  1093. package/minimal/src/sections/home/home-for-designer.jsx +0 -114
  1094. package/minimal/src/sections/home/home-hero.jsx +0 -425
  1095. package/minimal/src/sections/home/home-hugepack-elements.jsx +0 -473
  1096. package/minimal/src/sections/home/home-looking-for.jsx +0 -93
  1097. package/minimal/src/sections/home/home-minimal.jsx +0 -109
  1098. package/minimal/src/sections/home/home-pricing.jsx +0 -266
  1099. package/minimal/src/sections/home/view/home-view.jsx +0 -83
  1100. package/minimal/src/sections/home/view/index.js +0 -1
  1101. package/minimal/src/sections/invoice/invoice-analytic.jsx +0 -70
  1102. package/minimal/src/sections/invoice/invoice-details.jsx +0 -253
  1103. package/minimal/src/sections/invoice/invoice-new-edit-address.jsx +0 -131
  1104. package/minimal/src/sections/invoice/invoice-new-edit-details.jsx +0 -321
  1105. package/minimal/src/sections/invoice/invoice-new-edit-form.jsx +0 -157
  1106. package/minimal/src/sections/invoice/invoice-new-edit-status-date.jsx +0 -86
  1107. package/minimal/src/sections/invoice/invoice-pdf.jsx +0 -278
  1108. package/minimal/src/sections/invoice/invoice-table-filters-result.jsx +0 -126
  1109. package/minimal/src/sections/invoice/invoice-table-row.jsx +0 -186
  1110. package/minimal/src/sections/invoice/invoice-table-toolbar.jsx +0 -188
  1111. package/minimal/src/sections/invoice/invoice-toolbar.jsx +0 -140
  1112. package/minimal/src/sections/invoice/view/index.js +0 -4
  1113. package/minimal/src/sections/invoice/view/invoice-create-view.jsx +0 -40
  1114. package/minimal/src/sections/invoice/view/invoice-details-view.jsx +0 -46
  1115. package/minimal/src/sections/invoice/view/invoice-edit-view.jsx +0 -48
  1116. package/minimal/src/sections/invoice/view/invoice-list-view.jsx +0 -519
  1117. package/minimal/src/sections/job/job-details-candidates.jsx +0 -114
  1118. package/minimal/src/sections/job/job-details-content.jsx +0 -149
  1119. package/minimal/src/sections/job/job-details-toolbar.jsx +0 -111
  1120. package/minimal/src/sections/job/job-filters-result.jsx +0 -165
  1121. package/minimal/src/sections/job/job-filters.jsx +0 -315
  1122. package/minimal/src/sections/job/job-item.jsx +0 -160
  1123. package/minimal/src/sections/job/job-list.jsx +0 -74
  1124. package/minimal/src/sections/job/job-new-edit-form.jsx +0 -443
  1125. package/minimal/src/sections/job/job-search.jsx +0 -93
  1126. package/minimal/src/sections/job/job-sort.jsx +0 -63
  1127. package/minimal/src/sections/job/view/index.js +0 -4
  1128. package/minimal/src/sections/job/view/job-create-view.jsx +0 -38
  1129. package/minimal/src/sections/job/view/job-details-view.jsx +0 -85
  1130. package/minimal/src/sections/job/view/job-edit-view.jsx +0 -48
  1131. package/minimal/src/sections/job/view/job-list-view.jsx +0 -244
  1132. package/minimal/src/sections/kanban/kanban-column-add.jsx +0 -85
  1133. package/minimal/src/sections/kanban/kanban-column-tool-bar.jsx +0 -149
  1134. package/minimal/src/sections/kanban/kanban-column.jsx +0 -202
  1135. package/minimal/src/sections/kanban/kanban-contacts-dialog.jsx +0 -138
  1136. package/minimal/src/sections/kanban/kanban-details-attachments.jsx +0 -50
  1137. package/minimal/src/sections/kanban/kanban-details-comment-input.jsx +0 -47
  1138. package/minimal/src/sections/kanban/kanban-details-comment-list.jsx +0 -78
  1139. package/minimal/src/sections/kanban/kanban-details-priority.jsx +0 -62
  1140. package/minimal/src/sections/kanban/kanban-details-toolbar.jsx +0 -133
  1141. package/minimal/src/sections/kanban/kanban-details.jsx +0 -303
  1142. package/minimal/src/sections/kanban/kanban-input-name.jsx +0 -36
  1143. package/minimal/src/sections/kanban/kanban-skeleton.jsx +0 -39
  1144. package/minimal/src/sections/kanban/kanban-task-add.jsx +0 -94
  1145. package/minimal/src/sections/kanban/kanban-task-item.jsx +0 -169
  1146. package/minimal/src/sections/kanban/view/index.js +0 -1
  1147. package/minimal/src/sections/kanban/view/kanban-view.jsx +0 -182
  1148. package/minimal/src/sections/mail/mail-compose.jsx +0 -170
  1149. package/minimal/src/sections/mail/mail-details.jsx +0 -335
  1150. package/minimal/src/sections/mail/mail-header.jsx +0 -46
  1151. package/minimal/src/sections/mail/mail-item.jsx +0 -87
  1152. package/minimal/src/sections/mail/mail-list.jsx +0 -121
  1153. package/minimal/src/sections/mail/mail-nav-item.jsx +0 -75
  1154. package/minimal/src/sections/mail/mail-nav.jsx +0 -123
  1155. package/minimal/src/sections/mail/mail-skeleton.jsx +0 -59
  1156. package/minimal/src/sections/mail/view/index.js +0 -1
  1157. package/minimal/src/sections/mail/view/mail-view.jsx +0 -237
  1158. package/minimal/src/sections/maintenance/view.jsx +0 -29
  1159. package/minimal/src/sections/order/order-details-history.jsx +0 -109
  1160. package/minimal/src/sections/order/order-details-info.jsx +0 -169
  1161. package/minimal/src/sections/order/order-details-item.jsx +0 -138
  1162. package/minimal/src/sections/order/order-details-toolbar.jsx +0 -126
  1163. package/minimal/src/sections/order/order-table-filters-result.jsx +0 -108
  1164. package/minimal/src/sections/order/order-table-row.jsx +0 -229
  1165. package/minimal/src/sections/order/order-table-toolbar.jsx +0 -159
  1166. package/minimal/src/sections/order/view/index.js +0 -2
  1167. package/minimal/src/sections/order/view/order-details-view.jsx +0 -74
  1168. package/minimal/src/sections/order/view/order-list-view.jsx +0 -382
  1169. package/minimal/src/sections/overview/analytics/analytics-conversion-rates.jsx +0 -64
  1170. package/minimal/src/sections/overview/analytics/analytics-current-subject.jsx +0 -78
  1171. package/minimal/src/sections/overview/analytics/analytics-current-visits.jsx +0 -101
  1172. package/minimal/src/sections/overview/analytics/analytics-news.jsx +0 -95
  1173. package/minimal/src/sections/overview/analytics/analytics-order-timeline.jsx +0 -79
  1174. package/minimal/src/sections/overview/analytics/analytics-tasks.jsx +0 -135
  1175. package/minimal/src/sections/overview/analytics/analytics-traffic-by-site.jsx +0 -53
  1176. package/minimal/src/sections/overview/analytics/analytics-website-visits.jsx +0 -65
  1177. package/minimal/src/sections/overview/analytics/analytics-widget-summary.jsx +0 -59
  1178. package/minimal/src/sections/overview/analytics/view/index.js +0 -1
  1179. package/minimal/src/sections/overview/analytics/view/overview-analytics-view.jsx +0 -185
  1180. package/minimal/src/sections/overview/app/app-area-installed.jsx +0 -123
  1181. package/minimal/src/sections/overview/app/app-current-download.jsx +0 -103
  1182. package/minimal/src/sections/overview/app/app-featured.jsx +0 -118
  1183. package/minimal/src/sections/overview/app/app-new-invoice.jsx +0 -155
  1184. package/minimal/src/sections/overview/app/app-top-authors.jsx +0 -88
  1185. package/minimal/src/sections/overview/app/app-top-installed-countries.jsx +0 -74
  1186. package/minimal/src/sections/overview/app/app-top-related.jsx +0 -92
  1187. package/minimal/src/sections/overview/app/app-welcome.jsx +0 -83
  1188. package/minimal/src/sections/overview/app/app-widget-summary.jsx +0 -110
  1189. package/minimal/src/sections/overview/app/app-widget.jsx +0 -120
  1190. package/minimal/src/sections/overview/app/view/index.js +0 -1
  1191. package/minimal/src/sections/overview/app/view/overview-app-view.jsx +0 -205
  1192. package/minimal/src/sections/overview/banking/banking-balance-statistics.jsx +0 -113
  1193. package/minimal/src/sections/overview/banking/banking-contacts.jsx +0 -56
  1194. package/minimal/src/sections/overview/banking/banking-current-balance.jsx +0 -193
  1195. package/minimal/src/sections/overview/banking/banking-expenses-categories.jsx +0 -115
  1196. package/minimal/src/sections/overview/banking/banking-invite-friends.jsx +0 -78
  1197. package/minimal/src/sections/overview/banking/banking-quick-transfer.jsx +0 -368
  1198. package/minimal/src/sections/overview/banking/banking-recent-transitions.jsx +0 -223
  1199. package/minimal/src/sections/overview/banking/banking-widget-summary.jsx +0 -144
  1200. package/minimal/src/sections/overview/banking/view/index.js +0 -1
  1201. package/minimal/src/sections/overview/banking/view/overview-banking-view.jsx +0 -202
  1202. package/minimal/src/sections/overview/booking/booking-available.jsx +0 -109
  1203. package/minimal/src/sections/overview/booking/booking-booked.jsx +0 -56
  1204. package/minimal/src/sections/overview/booking/booking-check-in-widgets.jsx +0 -136
  1205. package/minimal/src/sections/overview/booking/booking-customer-reviews.jsx +0 -115
  1206. package/minimal/src/sections/overview/booking/booking-details.jsx +0 -204
  1207. package/minimal/src/sections/overview/booking/booking-newest.jsx +0 -156
  1208. package/minimal/src/sections/overview/booking/booking-statistics.jsx +0 -113
  1209. package/minimal/src/sections/overview/booking/booking-total-incomes.jsx +0 -137
  1210. package/minimal/src/sections/overview/booking/booking-widget-summary.jsx +0 -48
  1211. package/minimal/src/sections/overview/booking/view/index.js +0 -1
  1212. package/minimal/src/sections/overview/booking/view/overview-booking-view.jsx +0 -183
  1213. package/minimal/src/sections/overview/e-commerce/ecommerce-best-salesman.jsx +0 -94
  1214. package/minimal/src/sections/overview/e-commerce/ecommerce-current-balance.jsx +0 -70
  1215. package/minimal/src/sections/overview/e-commerce/ecommerce-latest-products.jsx +0 -84
  1216. package/minimal/src/sections/overview/e-commerce/ecommerce-new-products.jsx +0 -98
  1217. package/minimal/src/sections/overview/e-commerce/ecommerce-sale-by-gender.jsx +0 -102
  1218. package/minimal/src/sections/overview/e-commerce/ecommerce-sales-overview.jsx +0 -65
  1219. package/minimal/src/sections/overview/e-commerce/ecommerce-welcome.jsx +0 -83
  1220. package/minimal/src/sections/overview/e-commerce/ecommerce-widget-summary.jsx +0 -124
  1221. package/minimal/src/sections/overview/e-commerce/ecommerce-yearly-sales.jsx +0 -107
  1222. package/minimal/src/sections/overview/e-commerce/view/index.js +0 -1
  1223. package/minimal/src/sections/overview/e-commerce/view/overview-ecommerce-view.jsx +0 -188
  1224. package/minimal/src/sections/overview/file/view/index.js +0 -1
  1225. package/minimal/src/sections/overview/file/view/overview-file-view.jsx +0 -285
  1226. package/minimal/src/sections/payment/payment-billing-address.jsx +0 -20
  1227. package/minimal/src/sections/payment/payment-card-item.jsx +0 -78
  1228. package/minimal/src/sections/payment/payment-card-list-dialog.jsx +0 -116
  1229. package/minimal/src/sections/payment/payment-methods.jsx +0 -165
  1230. package/minimal/src/sections/payment/payment-new-card-dialog.jsx +0 -99
  1231. package/minimal/src/sections/payment/payment-summary.jsx +0 -103
  1232. package/minimal/src/sections/payment/view/index.js +0 -1
  1233. package/minimal/src/sections/payment/view/payment-view.jsx +0 -58
  1234. package/minimal/src/sections/permission/view.jsx +0 -82
  1235. package/minimal/src/sections/pricing/pricing-card.jsx +0 -151
  1236. package/minimal/src/sections/pricing/view.jsx +0 -84
  1237. package/minimal/src/sections/product/common/cart-icon.jsx +0 -44
  1238. package/minimal/src/sections/product/common/incrementer-button.jsx +0 -62
  1239. package/minimal/src/sections/product/product-details-carousel.jsx +0 -191
  1240. package/minimal/src/sections/product/product-details-description.jsx +0 -34
  1241. package/minimal/src/sections/product/product-details-review.jsx +0 -137
  1242. package/minimal/src/sections/product/product-details-summary.jsx +0 -355
  1243. package/minimal/src/sections/product/product-details-toolbar.jsx +0 -111
  1244. package/minimal/src/sections/product/product-filters-result.jsx +0 -170
  1245. package/minimal/src/sections/product/product-filters.jsx +0 -365
  1246. package/minimal/src/sections/product/product-item.jsx +0 -153
  1247. package/minimal/src/sections/product/product-list.jsx +0 -62
  1248. package/minimal/src/sections/product/product-new-edit-form.jsx +0 -452
  1249. package/minimal/src/sections/product/product-review-item.jsx +0 -123
  1250. package/minimal/src/sections/product/product-review-list.jsx +0 -33
  1251. package/minimal/src/sections/product/product-review-new-form.jsx +0 -115
  1252. package/minimal/src/sections/product/product-search.jsx +0 -131
  1253. package/minimal/src/sections/product/product-skeleton.jsx +0 -81
  1254. package/minimal/src/sections/product/product-sort.jsx +0 -58
  1255. package/minimal/src/sections/product/product-table-filters-result.jsx +0 -115
  1256. package/minimal/src/sections/product/product-table-row.jsx +0 -189
  1257. package/minimal/src/sections/product/product-table-toolbar.jsx +0 -191
  1258. package/minimal/src/sections/product/view/index.js +0 -6
  1259. package/minimal/src/sections/product/view/product-create-view.jsx +0 -38
  1260. package/minimal/src/sections/product/view/product-details-view.jsx +0 -193
  1261. package/minimal/src/sections/product/view/product-edit-view.jsx +0 -45
  1262. package/minimal/src/sections/product/view/product-list-view.jsx +0 -345
  1263. package/minimal/src/sections/product/view/product-shop-details-view.jsx +0 -200
  1264. package/minimal/src/sections/product/view/product-shop-view.jsx +0 -240
  1265. package/minimal/src/sections/tour/tour-details-bookers.jsx +0 -145
  1266. package/minimal/src/sections/tour/tour-details-content.jsx +0 -271
  1267. package/minimal/src/sections/tour/tour-details-toolbar.jsx +0 -111
  1268. package/minimal/src/sections/tour/tour-filters-result.jsx +0 -158
  1269. package/minimal/src/sections/tour/tour-filters.jsx +0 -298
  1270. package/minimal/src/sections/tour/tour-item.jsx +0 -227
  1271. package/minimal/src/sections/tour/tour-list.jsx +0 -74
  1272. package/minimal/src/sections/tour/tour-new-edit-form.jsx +0 -413
  1273. package/minimal/src/sections/tour/tour-search.jsx +0 -123
  1274. package/minimal/src/sections/tour/tour-sort.jsx +0 -63
  1275. package/minimal/src/sections/tour/view/index.js +0 -4
  1276. package/minimal/src/sections/tour/view/tour-create-view.jsx +0 -38
  1277. package/minimal/src/sections/tour/view/tour-details-view.jsx +0 -85
  1278. package/minimal/src/sections/tour/view/tour-edit-view.jsx +0 -48
  1279. package/minimal/src/sections/tour/view/tour-list-view.jsx +0 -252
  1280. package/minimal/src/sections/user/profile-cover.jsx +0 -77
  1281. package/minimal/src/sections/user/profile-followers.jsx +0 -121
  1282. package/minimal/src/sections/user/profile-friends.jsx +0 -180
  1283. package/minimal/src/sections/user/profile-gallery.jsx +0 -97
  1284. package/minimal/src/sections/user/profile-home.jsx +0 -201
  1285. package/minimal/src/sections/user/profile-post-item.jsx +0 -226
  1286. package/minimal/src/sections/user/user-card-list.jsx +0 -29
  1287. package/minimal/src/sections/user/user-card.jsx +0 -124
  1288. package/minimal/src/sections/user/user-new-edit-form.jsx +0 -285
  1289. package/minimal/src/sections/user/user-quick-edit-form.jsx +0 -177
  1290. package/minimal/src/sections/user/user-table-filters-result.jsx +0 -107
  1291. package/minimal/src/sections/user/user-table-row.jsx +0 -138
  1292. package/minimal/src/sections/user/user-table-toolbar.jsx +0 -150
  1293. package/minimal/src/sections/user/view/index.js +0 -5
  1294. package/minimal/src/sections/user/view/user-cards-view.jsx +0 -45
  1295. package/minimal/src/sections/user/view/user-create-view.jsx +0 -38
  1296. package/minimal/src/sections/user/view/user-edit-view.jsx +0 -48
  1297. package/minimal/src/sections/user/view/user-list-view.jsx +0 -367
  1298. package/minimal/src/sections/user/view/user-profile-view.jsx +0 -134
  1299. package/minimal/src/theme/css.js +0 -152
  1300. package/minimal/src/theme/custom-shadows.js +0 -32
  1301. package/minimal/src/theme/index.jsx +0 -80
  1302. package/minimal/src/theme/options/contrast.js +0 -34
  1303. package/minimal/src/theme/options/presets.js +0 -89
  1304. package/minimal/src/theme/options/right-to-left.jsx +0 -31
  1305. package/minimal/src/theme/overrides/components/accordion.js +0 -43
  1306. package/minimal/src/theme/overrides/components/alert.js +0 -68
  1307. package/minimal/src/theme/overrides/components/appbar.js +0 -13
  1308. package/minimal/src/theme/overrides/components/autocomplete.js +0 -44
  1309. package/minimal/src/theme/overrides/components/avatar.js +0 -103
  1310. package/minimal/src/theme/overrides/components/backdrop.js +0 -18
  1311. package/minimal/src/theme/overrides/components/badge.js +0 -90
  1312. package/minimal/src/theme/overrides/components/breadcrumbs.js +0 -21
  1313. package/minimal/src/theme/overrides/components/button-group.js +0 -90
  1314. package/minimal/src/theme/overrides/components/button.js +0 -139
  1315. package/minimal/src/theme/overrides/components/card.js +0 -30
  1316. package/minimal/src/theme/overrides/components/checkbox.js +0 -13
  1317. package/minimal/src/theme/overrides/components/chip.js +0 -123
  1318. package/minimal/src/theme/overrides/components/css-baseline.js +0 -48
  1319. package/minimal/src/theme/overrides/components/data-grid.js +0 -95
  1320. package/minimal/src/theme/overrides/components/date-picker.jsx +0 -83
  1321. package/minimal/src/theme/overrides/components/dialog.js +0 -49
  1322. package/minimal/src/theme/overrides/components/drawer.js +0 -36
  1323. package/minimal/src/theme/overrides/components/fab.js +0 -159
  1324. package/minimal/src/theme/overrides/components/list.js +0 -33
  1325. package/minimal/src/theme/overrides/components/loading-button.js +0 -30
  1326. package/minimal/src/theme/overrides/components/menu.js +0 -15
  1327. package/minimal/src/theme/overrides/components/pagination.js +0 -77
  1328. package/minimal/src/theme/overrides/components/paper.js +0 -18
  1329. package/minimal/src/theme/overrides/components/popover.js +0 -21
  1330. package/minimal/src/theme/overrides/components/progress.js +0 -40
  1331. package/minimal/src/theme/overrides/components/radio.js +0 -22
  1332. package/minimal/src/theme/overrides/components/rating.js +0 -40
  1333. package/minimal/src/theme/overrides/components/select.js +0 -26
  1334. package/minimal/src/theme/overrides/components/skeleton.js +0 -16
  1335. package/minimal/src/theme/overrides/components/slider.js +0 -30
  1336. package/minimal/src/theme/overrides/components/stepper.js +0 -13
  1337. package/minimal/src/theme/overrides/components/svg-icon.js +0 -15
  1338. package/minimal/src/theme/overrides/components/switch.js +0 -66
  1339. package/minimal/src/theme/overrides/components/table.js +0 -79
  1340. package/minimal/src/theme/overrides/components/tabs.js +0 -39
  1341. package/minimal/src/theme/overrides/components/textfield.js +0 -146
  1342. package/minimal/src/theme/overrides/components/timeline.js +0 -20
  1343. package/minimal/src/theme/overrides/components/toggle-button.js +0 -67
  1344. package/minimal/src/theme/overrides/components/tooltip.js +0 -18
  1345. package/minimal/src/theme/overrides/components/tree-view.js +0 -16
  1346. package/minimal/src/theme/overrides/components/typography.js +0 -16
  1347. package/minimal/src/theme/overrides/default-props.jsx +0 -239
  1348. package/minimal/src/theme/overrides/index.js +0 -98
  1349. package/minimal/src/theme/palette.js +0 -144
  1350. package/minimal/src/theme/shadows.js +0 -41
  1351. package/minimal/src/theme/typography.js +0 -107
  1352. package/minimal/src/utils/axios.js +0 -53
  1353. package/minimal/src/utils/change-case.js +0 -13
  1354. package/minimal/src/utils/flatten-array.js +0 -14
  1355. package/minimal/src/utils/format-number.js +0 -37
  1356. package/minimal/src/utils/format-time.js +0 -27
  1357. package/minimal/src/utils/highlight.js +0 -12
  1358. package/minimal/src/utils/storage-available.js +0 -24
  1359. package/minimal/src/utils/uuidv4.js +0 -10
  1360. package/minimal/vercel.json +0 -8
  1361. package/minimal/vite.config.js +0 -35
  1362. package/minimal/yarn.lock +0 -6748
  1363. /package/{components → src/lib}/AddItemWizard/AddItemWizard.jsx +0 -0
  1364. /package/{components → src/lib}/AddItemWizard/index.js +0 -0
  1365. /package/{components → src/lib}/ProjectWizard.jsx +0 -0
  1366. /package/{components → src/lib}/SparkleInput/SparkleInput.jsx +0 -0
  1367. /package/{components → src/lib}/StepComponent/StepComponent.jsx +0 -0
  1368. /package/{components → src/lib}/lib/Icons.js +0 -0
  1369. /package/{components → src/lib}/lib/context.json +0 -0
@@ -1,60 +0,0 @@
1
- <svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_di_1587_120561)">
3
- <path d="M95.3913 38.0015C93.4471 38.0765 91.9244 38.1738 90.8232 38.2935C85.2911 38.8945 79.8625 40.2466 74.6991 42.3184C67.4863 45.2126 60.9326 49.4547 55.4123 54.8025C49.8919 60.1501 45.5129 66.4989 42.5253 73.4861C39.5377 80.4734 38 87.962 38 95.525V97.6655C38 98.7599 38.8872 99.6471 39.9816 99.6471H95.4677C96.5621 99.6471 97.4494 98.7599 97.4494 97.6655V95.525V39.9821C97.4496 38.8877 96.5626 38.0003 95.4682 38C95.4426 38 95.417 38.0005 95.3913 38.0015Z" fill="#FFAB00"/>
4
- </g>
5
- <g filter="url(#filter1_di_1587_120561)">
6
- <path d="M160.352 100.561C160.267 98.4815 160.156 96.8571 160.019 95.6876C159.382 90.252 157.999 84.9192 155.899 79.8425C152.911 72.6199 148.532 66.0576 143.012 60.5297C137.491 55.0018 130.938 50.6169 123.725 47.6252C118.517 45.465 113.038 44.0617 107.456 43.4487C106.388 43.3313 104.913 43.2356 103.034 43.1617C101.94 43.1189 101.019 43.9707 100.976 45.0643C100.975 45.0899 100.975 45.1156 100.975 45.1412V99.6511C100.975 101.293 102.305 102.624 103.947 102.624H128.568H156.162H158.373C159.467 102.623 160.354 101.736 160.354 100.642C160.354 100.615 160.353 100.588 160.352 100.561Z" fill="white"/>
7
- </g>
8
- <g filter="url(#filter2_di_1587_120561)">
9
- <path d="M41.5812 104.673C41.6253 105.963 41.6804 106.99 41.7465 107.756C42.6074 117.72 45.9649 127.336 51.5442 135.697C58.0766 145.487 67.3613 153.117 78.2243 157.622C89.0873 162.128 101.041 163.307 112.573 161.01C122.207 159.091 131.187 154.817 138.729 148.608C139.078 148.321 139.48 147.975 139.936 147.569C141.572 146.115 141.719 143.61 140.264 141.974C140.214 141.917 140.161 141.861 140.106 141.808L102.136 103.787C101.392 103.042 100.383 102.624 99.3314 102.624H43.5626C42.4682 102.624 41.5806 103.51 41.5801 104.605C41.5801 104.628 41.5805 104.65 41.5812 104.673Z" fill="#00A76F"/>
10
- </g>
11
- <path d="M146.92 143.427C147.175 143.142 147.401 142.885 147.597 142.654C156.483 132.225 161.82 119.235 162.826 105.573C162.838 105.406 162.85 105.226 162.861 105.032C162.989 102.847 161.321 100.972 159.136 100.845C159.059 100.84 158.981 100.838 158.904 100.838H102.581C101.804 100.838 101.173 101.469 101.173 102.246V102.833C101.173 103.359 101.382 103.864 101.754 104.236L141.168 143.585C142.716 145.133 145.226 145.131 146.773 143.583C146.823 143.532 146.872 143.48 146.92 143.427Z" fill="white"/>
12
- <path opacity="0.12" d="M146.92 143.427C147.175 143.142 147.401 142.885 147.597 142.654C156.483 132.225 161.82 119.235 162.826 105.573C162.838 105.406 162.85 105.226 162.861 105.032C162.989 102.847 161.321 100.972 159.136 100.845C159.059 100.84 158.981 100.838 158.904 100.838H102.581C101.804 100.838 101.173 101.469 101.173 102.246V102.833C101.173 103.359 101.382 103.864 101.754 104.236L141.168 143.585C142.716 145.133 145.226 145.131 146.773 143.583C146.823 143.532 146.872 143.48 146.92 143.427Z" fill="#007867"/>
13
- <defs>
14
- <filter id="filter0_di_1587_120561" x="30" y="30" width="91.4495" height="93.6472" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
15
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
16
- <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"/>
17
- <feOffset dx="8" dy="8"/>
18
- <feGaussianBlur stdDeviation="8"/>
19
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
20
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120561"/>
21
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120561" result="shape"/>
22
- <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"/>
23
- <feOffset dx="-2" dy="-2"/>
24
- <feGaussianBlur stdDeviation="2"/>
25
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
26
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
27
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120561"/>
28
- </filter>
29
- <filter id="filter1_di_1587_120561" x="92.9746" y="35.1602" width="91.3794" height="91.4634" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
30
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
31
- <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"/>
32
- <feOffset dx="8" dy="8"/>
33
- <feGaussianBlur stdDeviation="8"/>
34
- <feColorMatrix type="matrix" values="0 0 0 0 0.770709 0 0 0 0 0.792653 0 0 0 0 0.818587 0 0 0 0.16 0"/>
35
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120561"/>
36
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120561" result="shape"/>
37
- <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"/>
38
- <feOffset dx="-2" dy="-2"/>
39
- <feGaussianBlur stdDeviation="2"/>
40
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
41
- <feColorMatrix type="matrix" values="0 0 0 0 0.717499 0 0 0 0 0.740813 0 0 0 0 0.768367 0 0 0 0.48 0"/>
42
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120561"/>
43
- </filter>
44
- <filter id="filter2_di_1587_120561" x="33.5801" y="94.624" width="131.686" height="91.5298" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
45
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
46
- <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"/>
47
- <feOffset dx="8" dy="8"/>
48
- <feGaussianBlur stdDeviation="8"/>
49
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
50
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120561"/>
51
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120561" result="shape"/>
52
- <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"/>
53
- <feOffset dx="-2" dy="-2"/>
54
- <feGaussianBlur stdDeviation="2"/>
55
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
56
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
57
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120561"/>
58
- </filter>
59
- </defs>
60
- </svg>
@@ -1,24 +0,0 @@
1
- <svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_di_1587_120558)">
3
- <rect x="74" y="36" width="82" height="96" rx="12" fill="#00A76F"/>
4
- </g>
5
- <path d="M88.5732 139.501C76.37 139.501 66.4375 129.542 66.4375 117.307V63.7812H57.3232C49.422 63.7812 43 70.2193 43 78.1413V148.639C43 156.561 49.422 163 57.3232 163H122.427C130.328 163 136.75 156.561 136.75 148.639V139.501H88.5732Z" fill="white"/>
6
- <path opacity="0.12" d="M88.5732 139.501C76.37 139.501 66.4375 129.542 66.4375 117.307V63.7812H57.3232C49.422 63.7812 43 70.2193 43 78.1413V148.639C43 156.561 49.422 163 57.3232 163H122.427C130.328 163 136.75 156.561 136.75 148.639V139.501H88.5732Z" fill="#007867"/>
7
- <defs>
8
- <filter id="filter0_di_1587_120558" x="66" y="28" width="114" height="128" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
9
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
10
- <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"/>
11
- <feOffset dx="8" dy="8"/>
12
- <feGaussianBlur stdDeviation="8"/>
13
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
14
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120558"/>
15
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120558" result="shape"/>
16
- <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"/>
17
- <feOffset dx="-2" dy="-2"/>
18
- <feGaussianBlur stdDeviation="2"/>
19
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
20
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
21
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120558"/>
22
- </filter>
23
- </defs>
24
- </svg>
@@ -1,45 +0,0 @@
1
- <svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_di_1587_120567)">
3
- <rect x="44" y="32" width="112" height="136" rx="12" fill="white"/>
4
- </g>
5
- <g filter="url(#filter1_di_1587_120567)">
6
- <path d="M60 60.0714C60 57.824 61.824 56 64.0714 56H93.9286C96.176 56 98 57.824 98 60.0714V65.5C98 67.7474 96.176 69.5714 93.9286 69.5714C91.6811 69.5714 89.8571 67.7474 89.8571 65.5V64.1429H83.0714V85.8571C85.3189 85.8571 87.1429 87.6811 87.1429 89.9286C87.1429 92.176 85.3189 94 83.0714 94H74.9286C72.6811 94 70.8571 92.176 70.8571 89.9286C70.8571 87.6811 72.6811 85.8571 74.9286 85.8571V64.1429H68.1429V65.5C68.1429 67.7474 66.3189 69.5714 64.0714 69.5714C61.824 69.5714 60 67.7474 60 65.5V60.0714Z" fill="#00A76F"/>
7
- </g>
8
- <rect opacity="0.4" x="110" y="56" width="28" height="10" rx="5" fill="#007867"/>
9
- <rect opacity="0.24" x="110" y="70" width="28" height="10" rx="5" fill="#007867"/>
10
- <rect opacity="0.16" x="110" y="84" width="28" height="10" rx="5" fill="#B76E00"/>
11
- <rect opacity="0.16" x="60" y="106" width="80" height="10" rx="5" fill="#007867"/>
12
- <rect opacity="0.16" x="60" y="120" width="80" height="10" rx="5" fill="#007867"/>
13
- <defs>
14
- <filter id="filter0_di_1587_120567" x="36" y="24" width="144" height="168" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
15
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
16
- <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"/>
17
- <feOffset dx="8" dy="8"/>
18
- <feGaussianBlur stdDeviation="8"/>
19
- <feColorMatrix type="matrix" values="0 0 0 0 0.770709 0 0 0 0 0.792653 0 0 0 0 0.818587 0 0 0 0.16 0"/>
20
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120567"/>
21
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120567" result="shape"/>
22
- <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"/>
23
- <feOffset dx="-2" dy="-2"/>
24
- <feGaussianBlur stdDeviation="2"/>
25
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
26
- <feColorMatrix type="matrix" values="0 0 0 0 0.717499 0 0 0 0 0.740813 0 0 0 0 0.768367 0 0 0 0.48 0"/>
27
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120567"/>
28
- </filter>
29
- <filter id="filter1_di_1587_120567" x="56" y="52" width="54" height="54" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
30
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
31
- <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"/>
32
- <feOffset dx="4" dy="4"/>
33
- <feGaussianBlur stdDeviation="4"/>
34
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
35
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120567"/>
36
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120567" result="shape"/>
37
- <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"/>
38
- <feOffset dx="-1" dy="-1"/>
39
- <feGaussianBlur stdDeviation="1"/>
40
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
41
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
42
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120567"/>
43
- </filter>
44
- </defs>
45
- </svg>
@@ -1,112 +0,0 @@
1
- <svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_di_1587_120566)">
3
- <path d="M112.141 54H35.8593C29.3096 54 24 59.213 24 65.6436V82.3564C24 88.787 29.3096 94 35.8593 94H112.141C118.69 94 124 88.787 124 82.3564V65.6436C124 59.213 118.69 54 112.141 54Z" fill="#00A76F"/>
4
- </g>
5
- <g filter="url(#filter1_di_1587_120566)">
6
- <path fill-rule="evenodd" clip-rule="evenodd" d="M176 74C176 85.0457 167.046 94 156 94C144.954 94 136 85.0457 136 74C136 62.9543 144.954 54 156 54C167.046 54 176 62.9543 176 74ZM154.948 82.1054L167.194 69.7485C168.269 68.664 168.269 66.8995 167.194 65.8146C166.673 65.2892 165.981 65 165.244 65C164.508 65 163.816 65.2892 163.295 65.8146L152.998 76.2045L148.706 71.8739C148.185 71.3483 147.493 71.0589 146.757 71.0589C146.02 71.0589 145.328 71.3483 144.808 71.8737C144.287 72.3991 144 73.0976 144 73.8408C144 74.5837 144.287 75.2822 144.808 75.8076L151.049 82.1054C151.57 82.6308 152.262 82.92 152.998 82.92C153.735 82.92 154.427 82.6308 154.948 82.1054Z" fill="white"/>
7
- </g>
8
- <g filter="url(#filter2_di_1587_120566)">
9
- <path fill-rule="evenodd" clip-rule="evenodd" d="M154.948 82.1054L167.194 69.7485C168.269 68.664 168.269 66.8995 167.194 65.8146C166.673 65.2892 165.981 65 165.244 65C164.508 65 163.816 65.2892 163.295 65.8146L152.998 76.2045L148.706 71.8739C148.185 71.3483 147.493 71.0589 146.757 71.0589C146.02 71.0589 145.328 71.3483 144.808 71.8737C144.287 72.3991 144 73.0976 144 73.8408C144 74.5837 144.287 75.2822 144.808 75.8076L151.049 82.1054C151.57 82.6308 152.262 82.92 152.998 82.92C153.735 82.92 154.427 82.6308 154.948 82.1054Z" fill="#00A76F"/>
10
- </g>
11
- <g filter="url(#filter3_di_1587_120566)">
12
- <path d="M112.141 106H35.8593C29.3096 106 24 111.213 24 117.644V134.356C24 140.787 29.3096 146 35.8593 146H112.141C118.69 146 124 140.787 124 134.356V117.644C124 111.213 118.69 106 112.141 106Z" fill="#FFAB00"/>
13
- </g>
14
- <g filter="url(#filter4_di_1587_120566)">
15
- <path fill-rule="evenodd" clip-rule="evenodd" d="M176 126C176 137.046 167.046 146 156 146C144.954 146 136 137.046 136 126C136 114.954 144.954 106 156 106C167.046 106 176 114.954 176 126ZM159.369 126L164.302 130.933C165.233 131.864 165.233 133.372 164.303 134.302C163.837 134.767 163.228 135 162.618 135C162.008 135 161.399 134.767 160.933 134.302L156 129.369L151.067 134.302C150.602 134.767 149.992 135 149.382 135C148.773 135 148.163 134.767 147.698 134.302C146.767 133.372 146.767 131.864 147.698 130.933L152.631 126L147.698 121.067C146.767 120.137 146.767 118.628 147.698 117.698C148.628 116.767 150.136 116.767 151.067 117.698L156 122.631L160.933 117.698C161.864 116.768 163.372 116.768 164.302 117.698C165.233 118.628 165.233 120.137 164.302 121.067L159.369 126Z" fill="white"/>
16
- </g>
17
- <g filter="url(#filter5_di_1587_120566)">
18
- <path fill-rule="evenodd" clip-rule="evenodd" d="M159.369 126L164.302 130.933C165.233 131.864 165.233 133.372 164.303 134.302C163.837 134.767 163.228 135 162.618 135C162.008 135 161.399 134.767 160.933 134.302L156 129.369L151.067 134.302C150.602 134.767 149.992 135 149.382 135C148.773 135 148.163 134.767 147.698 134.302C146.767 133.372 146.767 131.864 147.698 130.933L152.631 126L147.698 121.067C146.767 120.137 146.767 118.628 147.698 117.698C148.628 116.767 150.136 116.767 151.067 117.698L156 122.631L160.933 117.698C161.864 116.768 163.372 116.768 164.302 117.698C165.233 118.628 165.233 120.137 164.302 121.067L159.369 126Z" fill="#FFAB00"/>
19
- </g>
20
- <defs>
21
- <filter id="filter0_di_1587_120566" x="16" y="46" width="132" height="72" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
22
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
23
- <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"/>
24
- <feOffset dx="8" dy="8"/>
25
- <feGaussianBlur stdDeviation="8"/>
26
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
27
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120566"/>
28
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120566" result="shape"/>
29
- <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"/>
30
- <feOffset dx="-2" dy="-2"/>
31
- <feGaussianBlur stdDeviation="2"/>
32
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
33
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
34
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120566"/>
35
- </filter>
36
- <filter id="filter1_di_1587_120566" x="132" y="50" width="56" height="56" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
37
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
38
- <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"/>
39
- <feOffset dx="4" dy="4"/>
40
- <feGaussianBlur stdDeviation="4"/>
41
- <feColorMatrix type="matrix" values="0 0 0 0 0.568627 0 0 0 0 0.619608 0 0 0 0 0.670588 0 0 0 0.16 0"/>
42
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120566"/>
43
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120566" result="shape"/>
44
- <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"/>
45
- <feOffset dx="-1" dy="-1"/>
46
- <feGaussianBlur stdDeviation="1"/>
47
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
48
- <feColorMatrix type="matrix" values="0 0 0 0 0.568627 0 0 0 0 0.619608 0 0 0 0 0.670588 0 0 0 0.48 0"/>
49
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120566"/>
50
- </filter>
51
- <filter id="filter2_di_1587_120566" x="140" y="61" width="40" height="33.9199" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
52
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
53
- <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"/>
54
- <feOffset dx="4" dy="4"/>
55
- <feGaussianBlur stdDeviation="4"/>
56
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
57
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120566"/>
58
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120566" result="shape"/>
59
- <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"/>
60
- <feOffset dx="-1" dy="-1"/>
61
- <feGaussianBlur stdDeviation="1"/>
62
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
63
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
64
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120566"/>
65
- </filter>
66
- <filter id="filter3_di_1587_120566" x="16" y="98" width="132" height="72" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
67
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
68
- <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"/>
69
- <feOffset dx="8" dy="8"/>
70
- <feGaussianBlur stdDeviation="8"/>
71
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
72
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120566"/>
73
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120566" result="shape"/>
74
- <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"/>
75
- <feOffset dx="-2" dy="-2"/>
76
- <feGaussianBlur stdDeviation="2"/>
77
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
78
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
79
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120566"/>
80
- </filter>
81
- <filter id="filter4_di_1587_120566" x="132" y="102" width="56" height="56" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
82
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
83
- <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"/>
84
- <feOffset dx="4" dy="4"/>
85
- <feGaussianBlur stdDeviation="4"/>
86
- <feColorMatrix type="matrix" values="0 0 0 0 0.568627 0 0 0 0 0.619608 0 0 0 0 0.670588 0 0 0 0.16 0"/>
87
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120566"/>
88
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120566" result="shape"/>
89
- <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"/>
90
- <feOffset dx="-1" dy="-1"/>
91
- <feGaussianBlur stdDeviation="1"/>
92
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
93
- <feColorMatrix type="matrix" values="0 0 0 0 0.568627 0 0 0 0 0.619608 0 0 0 0 0.670588 0 0 0 0.48 0"/>
94
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120566"/>
95
- </filter>
96
- <filter id="filter5_di_1587_120566" x="143" y="113" width="34" height="34" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
97
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
98
- <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"/>
99
- <feOffset dx="4" dy="4"/>
100
- <feGaussianBlur stdDeviation="4"/>
101
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
102
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120566"/>
103
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120566" result="shape"/>
104
- <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"/>
105
- <feOffset dx="-1" dy="-1"/>
106
- <feGaussianBlur stdDeviation="1"/>
107
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
108
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
109
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120566"/>
110
- </filter>
111
- </defs>
112
- </svg>
@@ -1,59 +0,0 @@
1
- <svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_di_1587_120563)">
3
- <rect x="24" y="44" width="152" height="112" rx="12" fill="white"/>
4
- </g>
5
- <g filter="url(#filter1_di_1587_120563)">
6
- <path d="M58 92C65.732 92 72 85.732 72 78C72 70.268 65.732 64 58 64C50.268 64 44 70.268 44 78C44 85.732 50.268 92 58 92Z" fill="#FFAB00"/>
7
- </g>
8
- <path opacity="0.16" d="M60.9293 156H164C170.627 156 176 150.627 176 144V119.361L144.011 87.3908C139.487 82.8697 132.038 82.8697 127.514 87.3908L59 155.866C59.5993 155.933 60.2643 156 60.9293 156Z" fill="#007867"/>
9
- <g filter="url(#filter2_di_1587_120563)">
10
- <path d="M33.5448 155.749C28.0949 154.616 24 149.786 24 144V140.882L55.4554 109.478C60.1021 104.841 67.754 104.841 72.4006 109.478L119 156H38.305C37.6219 156 34.5 155.863 33.8844 155.794C33.7704 155.78 33.6571 155.765 33.5448 155.749Z" fill="#00A76F"/>
11
- </g>
12
- <defs>
13
- <filter id="filter0_di_1587_120563" x="16" y="36" width="184" height="144" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
14
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
15
- <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"/>
16
- <feOffset dx="8" dy="8"/>
17
- <feGaussianBlur stdDeviation="8"/>
18
- <feColorMatrix type="matrix" values="0 0 0 0 0.770709 0 0 0 0 0.792653 0 0 0 0 0.818587 0 0 0 0.16 0"/>
19
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120563"/>
20
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120563" result="shape"/>
21
- <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"/>
22
- <feOffset dx="-2" dy="-2"/>
23
- <feGaussianBlur stdDeviation="2"/>
24
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
25
- <feColorMatrix type="matrix" values="0 0 0 0 0.717499 0 0 0 0 0.740813 0 0 0 0 0.768367 0 0 0 0.48 0"/>
26
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120563"/>
27
- </filter>
28
- <filter id="filter1_di_1587_120563" x="40" y="60" width="44" height="44" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
29
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
30
- <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"/>
31
- <feOffset dx="4" dy="4"/>
32
- <feGaussianBlur stdDeviation="4"/>
33
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
34
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120563"/>
35
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120563" result="shape"/>
36
- <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"/>
37
- <feOffset dx="-1" dy="-1"/>
38
- <feGaussianBlur stdDeviation="1"/>
39
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
40
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
41
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120563"/>
42
- </filter>
43
- <filter id="filter2_di_1587_120563" x="16" y="98" width="127" height="82" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
44
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
45
- <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"/>
46
- <feOffset dx="8" dy="8"/>
47
- <feGaussianBlur stdDeviation="8"/>
48
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
49
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120563"/>
50
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120563" result="shape"/>
51
- <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"/>
52
- <feOffset dx="-2" dy="-2"/>
53
- <feGaussianBlur stdDeviation="2"/>
54
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
55
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
56
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120563"/>
57
- </filter>
58
- </defs>
59
- </svg>
@@ -1,40 +0,0 @@
1
- <svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_di_1587_120568)">
3
- <path d="M24 84C24 77.3726 29.3726 72 36 72H164C170.627 72 176 77.3726 176 84V116C176 122.627 170.627 128 164 128H36C29.3726 128 24 122.627 24 116V84Z" fill="white"/>
4
- </g>
5
- <g filter="url(#filter1_di_1587_120568)">
6
- <path d="M62 99C62 94.5817 65.5817 91 70 91H130C134.418 91 138 94.5817 138 99V101C138 105.418 134.418 109 130 109H70C65.5817 109 62 105.418 62 101V99Z" fill="#00A76F"/>
7
- </g>
8
- <defs>
9
- <filter id="filter0_di_1587_120568" x="16" y="64" width="184" height="88" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
10
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
11
- <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"/>
12
- <feOffset dx="8" dy="8"/>
13
- <feGaussianBlur stdDeviation="8"/>
14
- <feColorMatrix type="matrix" values="0 0 0 0 0.770709 0 0 0 0 0.792653 0 0 0 0 0.818587 0 0 0 0.16 0"/>
15
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120568"/>
16
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120568" result="shape"/>
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 dx="-2" dy="-2"/>
19
- <feGaussianBlur stdDeviation="2"/>
20
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
21
- <feColorMatrix type="matrix" values="0 0 0 0 0.717499 0 0 0 0 0.740813 0 0 0 0 0.768367 0 0 0 0.48 0"/>
22
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120568"/>
23
- </filter>
24
- <filter id="filter1_di_1587_120568" x="54" y="83" width="108" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
25
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
26
- <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"/>
27
- <feOffset dx="8" dy="8"/>
28
- <feGaussianBlur stdDeviation="8"/>
29
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
30
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120568"/>
31
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120568" result="shape"/>
32
- <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"/>
33
- <feOffset dx="-2" dy="-2"/>
34
- <feGaussianBlur stdDeviation="2"/>
35
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
36
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
37
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120568"/>
38
- </filter>
39
- </defs>
40
- </svg>
@@ -1,97 +0,0 @@
1
- <svg width="201" height="200" viewBox="0 0 201 200" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_di_1587_120564)">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M186.014 44C186.014 50.6274 180.641 56 174.014 56C167.386 56 162.014 50.6274 162.014 44C162.014 37.3726 167.386 32 174.014 32C180.641 32 186.014 37.3726 186.014 44ZM176.397 44.1369L179.685 47.4256C180.305 48.0461 180.305 49.0514 179.685 49.6716C179.375 49.9816 178.969 50.1367 178.562 50.1367C178.156 50.1367 177.75 49.9816 177.439 49.6716L174.15 46.3829L170.862 49.6714C170.552 49.9813 170.145 50.1365 169.739 50.1365C169.332 50.1365 168.926 49.9816 168.616 49.6714C167.995 49.0514 167.995 48.0458 168.616 47.4253L171.904 44.1366L168.616 40.8479C167.995 40.228 167.995 39.2223 168.616 38.6019C169.235 37.9817 170.241 37.9817 170.862 38.6019L174.15 41.8909L177.439 38.6021C178.059 37.9819 179.065 37.9819 179.685 38.6021C180.305 39.2223 180.305 40.228 179.685 40.8482L176.397 44.1369Z" fill="#FFAB00"/>
4
- </g>
5
- <g filter="url(#filter1_di_1587_120564)">
6
- <rect x="36.0137" y="72" width="128" height="96" rx="12" fill="white"/>
7
- </g>
8
- <path opacity="0.16" d="M152.014 100L116.732 116.277C111.179 118.839 104.954 119.157 99.2 117.173L89.3078 113.761C84.2579 112.019 78.7322 113.144 74.6217 116.751L36.0137 150L111.257 154L152.014 100Z" fill="#007867"/>
9
- <g filter="url(#filter2_di_1587_120564)">
10
- <path d="M48.5137 168C40.7084 167.944 36.0137 162.184 36.0137 155.088V149.984L76.3389 136.012C79.5492 134.9 83.106 135.403 85.874 137.36L94.2068 143.252C97.3929 145.505 101.769 145.087 104.462 142.274L144.608 103.234C147.621 100.086 152.296 99.1293 156.322 100.838L164.014 104.101V155.088C164.014 162.184 159.819 167.944 152.014 168H48.5137Z" fill="#00A76F"/>
11
- </g>
12
- <path d="M176.287 111C175.031 111 174.014 112.042 174.014 113.326V126.674C174.014 127.237 174.214 127.781 174.576 128.206C175.403 129.172 176.839 129.27 177.784 128.424L185.237 121.751C185.313 121.683 185.385 121.61 185.451 121.532C186.278 120.565 186.182 119.095 185.237 118.249L177.784 111.576C177.37 111.205 176.838 111 176.287 111Z" fill="white"/>
13
- <path d="M23.7403 111C23.1896 111 22.6577 111.205 22.2433 111.576L14.79 118.249C13.8452 119.095 13.7494 120.565 14.5762 121.532C14.6426 121.61 14.7141 121.683 14.79 121.751L22.2433 128.424C23.1882 129.27 24.6244 129.172 25.4512 128.206C25.8138 127.781 26.0137 127.237 26.0137 126.674V113.326C26.0137 112.042 24.9959 111 23.7403 111Z" fill="white"/>
14
- <g filter="url(#filter3_di_1587_120564)">
15
- <path d="M23.7403 111C23.1896 111 22.6577 111.205 22.2433 111.576L14.79 118.249C13.8452 119.095 13.7494 120.565 14.5762 121.532C14.6426 121.61 14.7141 121.683 14.79 121.751L22.2433 128.424C23.1882 129.27 24.6244 129.172 25.4512 128.206C25.8138 127.781 26.0137 127.237 26.0137 126.674V113.326C26.0137 112.042 24.9959 111 23.7403 111Z" fill="#FFAB00"/>
16
- </g>
17
- <g opacity="0.48" filter="url(#filter4_di_1587_120564)">
18
- <path d="M176.287 111C175.031 111 174.014 112.042 174.014 113.326V126.674C174.014 127.237 174.214 127.781 174.576 128.206C175.403 129.172 176.839 129.27 177.784 128.424L185.237 121.751C185.313 121.683 185.385 121.61 185.451 121.532C186.278 120.565 186.182 119.095 185.237 118.249L177.784 111.576C177.37 111.205 176.838 111 176.287 111Z" fill="#FFAB00"/>
19
- </g>
20
- <defs>
21
- <filter id="filter0_di_1587_120564" x="158.014" y="28" width="40" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
22
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
23
- <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"/>
24
- <feOffset dx="4" dy="4"/>
25
- <feGaussianBlur stdDeviation="4"/>
26
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
27
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120564"/>
28
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120564" result="shape"/>
29
- <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"/>
30
- <feOffset dx="-1" dy="-1"/>
31
- <feGaussianBlur stdDeviation="1"/>
32
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
33
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
34
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120564"/>
35
- </filter>
36
- <filter id="filter1_di_1587_120564" x="28.0137" y="64" width="160" height="128" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
37
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
38
- <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"/>
39
- <feOffset dx="8" dy="8"/>
40
- <feGaussianBlur stdDeviation="8"/>
41
- <feColorMatrix type="matrix" values="0 0 0 0 0.770709 0 0 0 0 0.792653 0 0 0 0 0.818587 0 0 0 0.16 0"/>
42
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120564"/>
43
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120564" result="shape"/>
44
- <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"/>
45
- <feOffset dx="-2" dy="-2"/>
46
- <feGaussianBlur stdDeviation="2"/>
47
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
48
- <feColorMatrix type="matrix" values="0 0 0 0 0.717499 0 0 0 0 0.740813 0 0 0 0 0.768367 0 0 0 0.48 0"/>
49
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120564"/>
50
- </filter>
51
- <filter id="filter2_di_1587_120564" x="28.0137" y="92" width="160" height="100" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
52
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
53
- <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"/>
54
- <feOffset dx="8" dy="8"/>
55
- <feGaussianBlur stdDeviation="8"/>
56
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
57
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120564"/>
58
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120564" result="shape"/>
59
- <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"/>
60
- <feOffset dx="-2" dy="-2"/>
61
- <feGaussianBlur stdDeviation="2"/>
62
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
63
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
64
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120564"/>
65
- </filter>
66
- <filter id="filter3_di_1587_120564" x="10.0137" y="107" width="28" height="34" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
67
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
68
- <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"/>
69
- <feOffset dx="4" dy="4"/>
70
- <feGaussianBlur stdDeviation="4"/>
71
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
72
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120564"/>
73
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120564" result="shape"/>
74
- <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"/>
75
- <feOffset dx="-1" dy="-1"/>
76
- <feGaussianBlur stdDeviation="1"/>
77
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
78
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
79
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120564"/>
80
- </filter>
81
- <filter id="filter4_di_1587_120564" x="170.014" y="107" width="28" height="34" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
82
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
83
- <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"/>
84
- <feOffset dx="4" dy="4"/>
85
- <feGaussianBlur stdDeviation="4"/>
86
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
87
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120564"/>
88
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120564" result="shape"/>
89
- <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"/>
90
- <feOffset dx="-1" dy="-1"/>
91
- <feGaussianBlur stdDeviation="1"/>
92
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
93
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
94
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120564"/>
95
- </filter>
96
- </defs>
97
- </svg>
@@ -1,60 +0,0 @@
1
- <svg width="201" height="200" viewBox="0 0 201 200" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_di_1587_120562)">
3
- <path d="M145.141 155.648L96.0227 129.617C94.7426 128.937 93.1816 129.031 91.9718 129.851L54.4132 155.883C53.0083 156.859 52.3995 158.633 52.9146 160.266C53.4142 161.883 54.9284 163 56.6299 163H143.306C145.094 163 146.663 161.781 147.092 160.031C147.529 158.289 146.717 156.484 145.141 155.648Z" fill="white"/>
4
- </g>
5
- <g filter="url(#filter1_di_1587_120562)">
6
- <path d="M134.4 87.6172C133.885 85.9844 132.379 84.875 130.67 84.875H58.5262C56.6998 84.875 55.1154 86.1484 54.7173 87.9375L41.5968 147.023C41.2534 148.594 41.9012 150.211 43.2281 151.109C43.8837 151.555 44.6486 151.773 45.4057 151.773C46.1862 151.773 46.959 151.547 47.6302 151.078L132.886 91.9922C134.299 91.0234 134.9 89.25 134.4 87.6172Z" fill="#00A76F"/>
7
- </g>
8
- <path d="M150.027 96.172C149.746 94.8985 148.848 93.8595 147.638 93.3829C146.421 92.9063 145.055 93.0704 143.993 93.8048L106.427 119.836C105.303 120.617 104.671 121.922 104.757 123.274C104.835 124.641 105.623 125.859 106.825 126.492L155.935 152.524C156.513 152.828 157.137 152.984 157.762 152.984C158.597 152.984 159.432 152.719 160.127 152.18C161.337 151.258 161.906 149.719 161.579 148.227L150.027 96.172Z" fill="white"/>
9
- <path opacity="0.24" d="M150.027 96.172C149.746 94.8985 148.848 93.8595 147.638 93.3829C146.421 92.9063 145.055 93.0704 143.993 93.8048L106.427 119.836C105.303 120.617 104.671 121.922 104.757 123.274C104.835 124.641 105.623 125.859 106.825 126.492L155.935 152.524C156.513 152.828 157.137 152.984 157.762 152.984C158.597 152.984 159.432 152.719 160.127 152.18C161.337 151.258 161.906 149.719 161.579 148.227L150.027 96.172Z" fill="#007867"/>
10
- <g filter="url(#filter2_di_1587_120562)">
11
- <path d="M66.3318 38C81.3958 38 93.65 50.2656 93.65 65.3438C93.65 79.375 71.733 104.227 69.2353 107.016C68.4939 107.836 67.4402 108.312 66.3318 108.312C65.2235 108.312 64.1698 107.836 63.4283 107.016C60.9306 104.227 39.0137 79.375 39.0137 65.3438C39.0137 50.2656 51.2678 38 66.3318 38ZM66.3318 53.625C59.8658 53.625 54.624 58.8717 54.624 65.3438C54.624 71.8158 59.8658 77.0625 66.3318 77.0625C72.7978 77.0625 78.0396 71.8158 78.0396 65.3438C78.0396 58.8717 72.7978 53.625 66.3318 53.625Z" fill="#FFAB00"/>
12
- </g>
13
- <defs>
14
- <filter id="filter0_di_1587_120562" x="44.7334" y="121.165" width="126.476" height="65.835" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
15
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
16
- <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"/>
17
- <feOffset dx="8" dy="8"/>
18
- <feGaussianBlur stdDeviation="8"/>
19
- <feColorMatrix type="matrix" values="0 0 0 0 0.770709 0 0 0 0 0.792653 0 0 0 0 0.818587 0 0 0 0.16 0"/>
20
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120562"/>
21
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120562" result="shape"/>
22
- <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"/>
23
- <feOffset dx="-2" dy="-2"/>
24
- <feGaussianBlur stdDeviation="2"/>
25
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
26
- <feColorMatrix type="matrix" values="0 0 0 0 0.717499 0 0 0 0 0.740813 0 0 0 0 0.768367 0 0 0 0.48 0"/>
27
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120562"/>
28
- </filter>
29
- <filter id="filter1_di_1587_120562" x="33.5059" y="76.875" width="125.068" height="98.8984" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
30
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
31
- <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"/>
32
- <feOffset dx="8" dy="8"/>
33
- <feGaussianBlur stdDeviation="8"/>
34
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
35
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120562"/>
36
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120562" result="shape"/>
37
- <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"/>
38
- <feOffset dx="-2" dy="-2"/>
39
- <feGaussianBlur stdDeviation="2"/>
40
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
41
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
42
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120562"/>
43
- </filter>
44
- <filter id="filter2_di_1587_120562" x="31.0137" y="30" width="86.6362" height="102.312" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
45
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
46
- <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"/>
47
- <feOffset dx="8" dy="8"/>
48
- <feGaussianBlur stdDeviation="8"/>
49
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
50
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1587_120562"/>
51
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1587_120562" result="shape"/>
52
- <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"/>
53
- <feOffset dx="-2" dy="-2"/>
54
- <feGaussianBlur stdDeviation="2"/>
55
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
56
- <feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
57
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_1587_120562"/>
58
- </filter>
59
- </defs>
60
- </svg>
@@ -1,40 +0,0 @@
1
- <svg width="201" height="200" viewBox="0 0 201 200" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_di_2208_147554)">
3
- <rect x="24.0137" y="44" width="152" height="112" rx="12" fill="white"/>
4
- </g>
5
- <g filter="url(#filter1_di_2208_147554)">
6
- <path d="M144.524 132H55.5168C51.3802 132 48.0137 128.639 48.0137 124.502V75.4979C48.0137 71.3613 51.3802 68 55.5168 68H144.518C148.655 68 152.021 71.3613 152.021 75.4979V124.502C152.027 128.639 148.66 132 144.524 132ZM73.0205 117.004V103.203C73.0205 101.313 75.401 100.477 76.5821 101.954L81.4595 108.049C82.2602 109.05 83.7821 109.05 84.5828 108.049L89.4602 101.954C90.6413 100.477 93.0218 101.313 93.0218 103.203V115.004C93.0218 116.109 93.9172 117.004 95.0218 117.004H101.022C102.127 117.004 103.022 116.109 103.022 115.004V84.9958C103.022 83.8912 102.127 82.9958 101.022 82.9958H93.9832C93.3755 82.9958 92.8009 83.272 92.4213 83.7465L84.583 93.5465C83.7824 94.5475 82.2599 94.5475 81.4593 93.5465L73.621 83.7465C73.2415 83.272 72.6668 82.9958 72.0591 82.9958H65.0199C63.9153 82.9958 63.0199 83.8912 63.0199 84.9958V114.999C63.0199 116.104 63.9153 116.999 65.0199 116.999H73.0153C73.0182 116.999 73.0205 117.001 73.0205 117.004V117.004ZM137.193 103.301C138.305 102.004 137.383 100 135.675 100H132.022C130.918 100 130.022 99.1046 130.022 98V84.9958C130.022 83.8912 129.127 82.9958 128.022 82.9958H122.016C120.912 82.9958 120.016 83.8912 120.016 84.9958V98C120.016 99.1046 119.121 100 118.016 100H114.365C112.656 100 111.734 102.004 112.846 103.302L123.503 115.732C124.301 116.663 125.742 116.663 126.54 115.732L137.193 103.301Z" fill="#00A76F"/>
7
- </g>
8
- <defs>
9
- <filter id="filter0_di_2208_147554" x="16.0137" y="36" width="184" height="144" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
10
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
11
- <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"/>
12
- <feOffset dx="8" dy="8"/>
13
- <feGaussianBlur stdDeviation="8"/>
14
- <feColorMatrix type="matrix" values="0 0 0 0 0.770709 0 0 0 0 0.792653 0 0 0 0 0.818587 0 0 0 0.16 0"/>
15
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2208_147554"/>
16
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2208_147554" result="shape"/>
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 dx="-2" dy="-2"/>
19
- <feGaussianBlur stdDeviation="2"/>
20
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
21
- <feColorMatrix type="matrix" values="0 0 0 0 0.717499 0 0 0 0 0.740813 0 0 0 0 0.768367 0 0 0 0.48 0"/>
22
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_2208_147554"/>
23
- </filter>
24
- <filter id="filter1_di_2208_147554" x="44.0137" y="64" width="120.008" height="80" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
25
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
26
- <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"/>
27
- <feOffset dx="4" dy="4"/>
28
- <feGaussianBlur stdDeviation="4"/>
29
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
30
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2208_147554"/>
31
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2208_147554" result="shape"/>
32
- <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"/>
33
- <feOffset dx="-1" dy="-1"/>
34
- <feGaussianBlur stdDeviation="1"/>
35
- <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
36
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
37
- <feBlend mode="normal" in2="shape" result="effect2_innerShadow_2208_147554"/>
38
- </filter>
39
- </defs>
40
- </svg>