@canmingir/link 1.1.7 → 1.2.0

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 (1370) 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/user.js +21 -35
  66. package/src/layouts/DashboardLayout/header.jsx +3 -5
  67. package/{components → src/lib}/IconSelector/IconSelector.jsx +4 -3
  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/{components → src/lib}/ProjectWizard.jsx +6 -6
  73. package/{minimal/src/components/svg-color/svg-color.jsx → src/lib/SvgColor/SvgColor.jsx} +5 -8
  74. package/src/lib/SvgColor/index.js +1 -0
  75. package/src/lib/index.js +10 -0
  76. package/src/pages/Callback.jsx +63 -13
  77. package/src/stories/Iconify.stories.jsx +183 -0
  78. package/src/stories/Label.stories.jsx +447 -0
  79. package/src/stories/Navbar.stories.jsx +588 -0
  80. package/src/widgets/SettingsDialog.jsx +6 -6
  81. package/vite.config.js +7 -0
  82. package/vitest.config.js +32 -0
  83. package/commands/index.js +0 -111
  84. package/commands/user.json +0 -34
  85. package/components/index.js +0 -2
  86. package/cypress/cypress.js +0 -12
  87. package/minimal/.editorconfig +0 -9
  88. package/minimal/.eslintignore +0 -22
  89. package/minimal/.prettierignore +0 -9
  90. package/minimal/.prettierrc +0 -6
  91. package/minimal/README.md +0 -13
  92. package/minimal/index.html +0 -44
  93. package/minimal/jsconfig.json +0 -5
  94. package/minimal/package-lock.json +0 -20845
  95. package/minimal/package.json +0 -104
  96. package/minimal/public/_redirects +0 -1
  97. package/minimal/public/assets/background/overlay_1.svg +0 -1
  98. package/minimal/public/assets/background/overlay_2.jpg +0 -0
  99. package/minimal/public/assets/background/overlay_3.jpg +0 -0
  100. package/minimal/public/assets/background/overlay_4.jpg +0 -0
  101. package/minimal/public/assets/cyan-blur.png +0 -0
  102. package/minimal/public/assets/icons/app/ic_chrome.svg +0 -6
  103. package/minimal/public/assets/icons/app/ic_drive.svg +0 -5
  104. package/minimal/public/assets/icons/app/ic_dropbox.svg +0 -3
  105. package/minimal/public/assets/icons/app/ic_evernote.svg +0 -3
  106. package/minimal/public/assets/icons/app/ic_github.svg +0 -3
  107. package/minimal/public/assets/icons/app/ic_onedrive.svg +0 -4
  108. package/minimal/public/assets/icons/auth/ic_amplify.svg +0 -12
  109. package/minimal/public/assets/icons/auth/ic_auth0.svg +0 -5
  110. package/minimal/public/assets/icons/auth/ic_firebase.svg +0 -12
  111. package/minimal/public/assets/icons/auth/ic_jwt.svg +0 -15
  112. package/minimal/public/assets/icons/brands/ic_brand_amazon.svg +0 -3
  113. package/minimal/public/assets/icons/brands/ic_brand_hbo.svg +0 -3
  114. package/minimal/public/assets/icons/brands/ic_brand_ibm.svg +0 -3
  115. package/minimal/public/assets/icons/brands/ic_brand_lya.svg +0 -3
  116. package/minimal/public/assets/icons/brands/ic_brand_netflix.svg +0 -3
  117. package/minimal/public/assets/icons/brands/ic_brand_spotify.svg +0 -3
  118. package/minimal/public/assets/icons/components/ic_accordion.svg +0 -11
  119. package/minimal/public/assets/icons/components/ic_alert.svg +0 -6
  120. package/minimal/public/assets/icons/components/ic_autocomplete.svg +0 -8
  121. package/minimal/public/assets/icons/components/ic_avatar.svg +0 -4
  122. package/minimal/public/assets/icons/components/ic_badge.svg +0 -7
  123. package/minimal/public/assets/icons/components/ic_breadcrumbs.svg +0 -4
  124. package/minimal/public/assets/icons/components/ic_buttons.svg +0 -4
  125. package/minimal/public/assets/icons/components/ic_checkbox.svg +0 -4
  126. package/minimal/public/assets/icons/components/ic_chip.svg +0 -5
  127. package/minimal/public/assets/icons/components/ic_colors.svg +0 -5
  128. package/minimal/public/assets/icons/components/ic_data_grid.svg +0 -12
  129. package/minimal/public/assets/icons/components/ic_dialog.svg +0 -8
  130. package/minimal/public/assets/icons/components/ic_extra_animate.svg +0 -26
  131. package/minimal/public/assets/icons/components/ic_extra_carousel.svg +0 -98
  132. package/minimal/public/assets/icons/components/ic_extra_chart.svg +0 -60
  133. package/minimal/public/assets/icons/components/ic_extra_copy_to_clipboard.svg +0 -24
  134. package/minimal/public/assets/icons/components/ic_extra_editor.svg +0 -45
  135. package/minimal/public/assets/icons/components/ic_extra_form_validation.svg +0 -112
  136. package/minimal/public/assets/icons/components/ic_extra_image.svg +0 -59
  137. package/minimal/public/assets/icons/components/ic_extra_label.svg +0 -40
  138. package/minimal/public/assets/icons/components/ic_extra_lightbox.svg +0 -97
  139. package/minimal/public/assets/icons/components/ic_extra_map.svg +0 -60
  140. package/minimal/public/assets/icons/components/ic_extra_markdown.svg +0 -40
  141. package/minimal/public/assets/icons/components/ic_extra_mega_menu.svg +0 -120
  142. package/minimal/public/assets/icons/components/ic_extra_multi_language.svg +0 -59
  143. package/minimal/public/assets/icons/components/ic_extra_navigation_bar.svg +0 -122
  144. package/minimal/public/assets/icons/components/ic_extra_organization_chart.svg +0 -101
  145. package/minimal/public/assets/icons/components/ic_extra_scroll.svg +0 -67
  146. package/minimal/public/assets/icons/components/ic_extra_scroll_progress.svg +0 -46
  147. package/minimal/public/assets/icons/components/ic_extra_snackbar.svg +0 -47
  148. package/minimal/public/assets/icons/components/ic_extra_text_max_line.svg +0 -100
  149. package/minimal/public/assets/icons/components/ic_extra_upload.svg +0 -40
  150. package/minimal/public/assets/icons/components/ic_grid.svg +0 -8
  151. package/minimal/public/assets/icons/components/ic_icons.svg +0 -4
  152. package/minimal/public/assets/icons/components/ic_list.svg +0 -12
  153. package/minimal/public/assets/icons/components/ic_menu.svg +0 -7
  154. package/minimal/public/assets/icons/components/ic_pagination.svg +0 -6
  155. package/minimal/public/assets/icons/components/ic_pickers.svg +0 -18
  156. package/minimal/public/assets/icons/components/ic_popover.svg +0 -6
  157. package/minimal/public/assets/icons/components/ic_progress.svg +0 -4
  158. package/minimal/public/assets/icons/components/ic_radio_button.svg +0 -4
  159. package/minimal/public/assets/icons/components/ic_rating.svg +0 -9
  160. package/minimal/public/assets/icons/components/ic_shadows.svg +0 -4
  161. package/minimal/public/assets/icons/components/ic_slider.svg +0 -5
  162. package/minimal/public/assets/icons/components/ic_stepper.svg +0 -6
  163. package/minimal/public/assets/icons/components/ic_switch.svg +0 -4
  164. package/minimal/public/assets/icons/components/ic_table.svg +0 -10
  165. package/minimal/public/assets/icons/components/ic_tabs.svg +0 -5
  166. package/minimal/public/assets/icons/components/ic_textfield.svg +0 -5
  167. package/minimal/public/assets/icons/components/ic_timeline.svg +0 -12
  168. package/minimal/public/assets/icons/components/ic_tooltip.svg +0 -7
  169. package/minimal/public/assets/icons/components/ic_transfer_list.svg +0 -13
  170. package/minimal/public/assets/icons/components/ic_tree_view.svg +0 -11
  171. package/minimal/public/assets/icons/components/ic_typography.svg +0 -4
  172. package/minimal/public/assets/icons/empty/ic_cart.svg +0 -76
  173. package/minimal/public/assets/icons/empty/ic_content.svg +0 -57
  174. package/minimal/public/assets/icons/empty/ic_email_disabled.svg +0 -44
  175. package/minimal/public/assets/icons/empty/ic_email_selected.svg +0 -57
  176. package/minimal/public/assets/icons/empty/ic_folder_empty.svg +0 -32
  177. package/minimal/public/assets/icons/empty/ic_mail.svg +0 -56
  178. package/minimal/public/assets/icons/faqs/ic_account.svg +0 -34
  179. package/minimal/public/assets/icons/faqs/ic_assurances.svg +0 -33
  180. package/minimal/public/assets/icons/faqs/ic_delivery.svg +0 -30
  181. package/minimal/public/assets/icons/faqs/ic_package.svg +0 -29
  182. package/minimal/public/assets/icons/faqs/ic_payment.svg +0 -33
  183. package/minimal/public/assets/icons/faqs/ic_refund.svg +0 -31
  184. package/minimal/public/assets/icons/files/ic_ai.svg +0 -25
  185. package/minimal/public/assets/icons/files/ic_audio.svg +0 -24
  186. package/minimal/public/assets/icons/files/ic_document.svg +0 -19
  187. package/minimal/public/assets/icons/files/ic_excel.svg +0 -19
  188. package/minimal/public/assets/icons/files/ic_file.svg +0 -18
  189. package/minimal/public/assets/icons/files/ic_folder.svg +0 -5
  190. package/minimal/public/assets/icons/files/ic_img.svg +0 -26
  191. package/minimal/public/assets/icons/files/ic_js.svg +0 -12
  192. package/minimal/public/assets/icons/files/ic_pdf.svg +0 -19
  193. package/minimal/public/assets/icons/files/ic_power_point.svg +0 -20
  194. package/minimal/public/assets/icons/files/ic_pts.svg +0 -25
  195. package/minimal/public/assets/icons/files/ic_txt.svg +0 -26
  196. package/minimal/public/assets/icons/files/ic_video.svg +0 -20
  197. package/minimal/public/assets/icons/files/ic_word.svg +0 -19
  198. package/minimal/public/assets/icons/files/ic_zip.svg +0 -27
  199. package/minimal/public/assets/icons/glass/ic_glass_bag.png +0 -0
  200. package/minimal/public/assets/icons/glass/ic_glass_buy.png +0 -0
  201. package/minimal/public/assets/icons/glass/ic_glass_message.png +0 -0
  202. package/minimal/public/assets/icons/glass/ic_glass_users.png +0 -0
  203. package/minimal/public/assets/icons/home/ic_design.svg +0 -6
  204. package/minimal/public/assets/icons/home/ic_development.svg +0 -5
  205. package/minimal/public/assets/icons/home/ic_make_brand.svg +0 -6
  206. package/minimal/public/assets/icons/navbar/ic_analytics.svg +0 -8
  207. package/minimal/public/assets/icons/navbar/ic_banking.svg +0 -10
  208. package/minimal/public/assets/icons/navbar/ic_blank.svg +0 -4
  209. package/minimal/public/assets/icons/navbar/ic_blog.svg +0 -7
  210. package/minimal/public/assets/icons/navbar/ic_booking.svg +0 -4
  211. package/minimal/public/assets/icons/navbar/ic_calendar.svg +0 -5
  212. package/minimal/public/assets/icons/navbar/ic_chat.svg +0 -6
  213. package/minimal/public/assets/icons/navbar/ic_dashboard.svg +0 -4
  214. package/minimal/public/assets/icons/navbar/ic_disabled.svg +0 -4
  215. package/minimal/public/assets/icons/navbar/ic_ecommerce.svg +0 -5
  216. package/minimal/public/assets/icons/navbar/ic_external.svg +0 -4
  217. package/minimal/public/assets/icons/navbar/ic_file.svg +0 -6
  218. package/minimal/public/assets/icons/navbar/ic_folder.svg +0 -4
  219. package/minimal/public/assets/icons/navbar/ic_invoice.svg +0 -5
  220. package/minimal/public/assets/icons/navbar/ic_job.svg +0 -4
  221. package/minimal/public/assets/icons/navbar/ic_kanban.svg +0 -5
  222. package/minimal/public/assets/icons/navbar/ic_label.svg +0 -4
  223. package/minimal/public/assets/icons/navbar/ic_lock.svg +0 -4
  224. package/minimal/public/assets/icons/navbar/ic_mail.svg +0 -6
  225. package/minimal/public/assets/icons/navbar/ic_menu_item.svg +0 -5
  226. package/minimal/public/assets/icons/navbar/ic_order.svg +0 -7
  227. package/minimal/public/assets/icons/navbar/ic_product.svg +0 -4
  228. package/minimal/public/assets/icons/navbar/ic_tour.svg +0 -4
  229. package/minimal/public/assets/icons/navbar/ic_user.svg +0 -4
  230. package/minimal/public/assets/icons/notification/ic_chat.svg +0 -28
  231. package/minimal/public/assets/icons/notification/ic_delivery.svg +0 -20
  232. package/minimal/public/assets/icons/notification/ic_mail.svg +0 -15
  233. package/minimal/public/assets/icons/notification/ic_order.svg +0 -45
  234. package/minimal/public/assets/icons/platforms/ic_figma.svg +0 -7
  235. package/minimal/public/assets/icons/platforms/ic_js.svg +0 -4
  236. package/minimal/public/assets/icons/platforms/ic_nextjs.svg +0 -3
  237. package/minimal/public/assets/icons/platforms/ic_ts.svg +0 -4
  238. package/minimal/public/assets/icons/platforms/ic_vite.svg +0 -15
  239. package/minimal/public/assets/icons/setting/ic_align_left.svg +0 -7
  240. package/minimal/public/assets/icons/setting/ic_align_right.svg +0 -7
  241. package/minimal/public/assets/icons/setting/ic_collapse.svg +0 -4
  242. package/minimal/public/assets/icons/setting/ic_contrast.svg +0 -5
  243. package/minimal/public/assets/icons/setting/ic_contrast_bold.svg +0 -4
  244. package/minimal/public/assets/icons/setting/ic_exit_full_screen.svg +0 -6
  245. package/minimal/public/assets/icons/setting/ic_full_screen.svg +0 -6
  246. package/minimal/public/assets/icons/setting/ic_moon.svg +0 -4
  247. package/minimal/public/assets/icons/setting/ic_setting.svg +0 -6
  248. package/minimal/public/assets/icons/setting/ic_sun.svg +0 -13
  249. package/minimal/public/assets/illustrations/characters/character_1.png +0 -0
  250. package/minimal/public/assets/illustrations/characters/character_10.png +0 -0
  251. package/minimal/public/assets/illustrations/characters/character_11.png +0 -0
  252. package/minimal/public/assets/illustrations/characters/character_2.png +0 -0
  253. package/minimal/public/assets/illustrations/characters/character_3.png +0 -0
  254. package/minimal/public/assets/illustrations/characters/character_4.png +0 -0
  255. package/minimal/public/assets/illustrations/characters/character_5.png +0 -0
  256. package/minimal/public/assets/illustrations/characters/character_6.png +0 -0
  257. package/minimal/public/assets/illustrations/characters/character_7.png +0 -0
  258. package/minimal/public/assets/illustrations/characters/character_8.png +0 -0
  259. package/minimal/public/assets/illustrations/characters/character_9.png +0 -0
  260. package/minimal/public/assets/illustrations/illustration_dashboard.png +0 -0
  261. package/minimal/public/assets/images/about/hero.jpg +0 -0
  262. package/minimal/public/assets/images/about/testimonials.jpg +0 -0
  263. package/minimal/public/assets/images/about/vision.jpg +0 -0
  264. package/minimal/public/assets/images/about/what_1.png +0 -0
  265. package/minimal/public/assets/images/about/what_2.png +0 -0
  266. package/minimal/public/assets/images/contact/hero.jpg +0 -0
  267. package/minimal/public/assets/images/faqs/hero.jpg +0 -0
  268. package/minimal/public/assets/images/home/clean/page_1.webp +0 -0
  269. package/minimal/public/assets/images/home/clean/page_10.webp +0 -0
  270. package/minimal/public/assets/images/home/clean/page_2.webp +0 -0
  271. package/minimal/public/assets/images/home/clean/page_3.webp +0 -0
  272. package/minimal/public/assets/images/home/clean/page_4.webp +0 -0
  273. package/minimal/public/assets/images/home/clean/page_5.webp +0 -0
  274. package/minimal/public/assets/images/home/clean/page_6.webp +0 -0
  275. package/minimal/public/assets/images/home/clean/page_7.webp +0 -0
  276. package/minimal/public/assets/images/home/clean/page_8.webp +0 -0
  277. package/minimal/public/assets/images/home/clean/page_9.webp +0 -0
  278. package/minimal/public/assets/images/home/darkmode.webp +0 -0
  279. package/minimal/public/assets/images/home/for_designer.webp +0 -0
  280. package/minimal/public/assets/images/home/hero/dark_1.webp +0 -0
  281. package/minimal/public/assets/images/home/hero/dark_2.webp +0 -0
  282. package/minimal/public/assets/images/home/hero/light_1.webp +0 -0
  283. package/minimal/public/assets/images/home/hero/light_2.webp +0 -0
  284. package/minimal/public/assets/images/home/presets/block_blue.webp +0 -0
  285. package/minimal/public/assets/images/home/presets/block_cyan.webp +0 -0
  286. package/minimal/public/assets/images/home/presets/block_default.webp +0 -0
  287. package/minimal/public/assets/images/home/presets/block_orange.webp +0 -0
  288. package/minimal/public/assets/images/home/presets/block_purple.webp +0 -0
  289. package/minimal/public/assets/images/home/presets/block_red.webp +0 -0
  290. package/minimal/public/assets/images/home/presets/chart_blue.webp +0 -0
  291. package/minimal/public/assets/images/home/presets/chart_cyan.webp +0 -0
  292. package/minimal/public/assets/images/home/presets/chart_default.webp +0 -0
  293. package/minimal/public/assets/images/home/presets/chart_orange.webp +0 -0
  294. package/minimal/public/assets/images/home/presets/chart_purple.webp +0 -0
  295. package/minimal/public/assets/images/home/presets/chart_red.webp +0 -0
  296. package/minimal/public/assets/images/home/presets/grid.webp +0 -0
  297. package/minimal/public/assets/images/home/presets/screen_blue.webp +0 -0
  298. package/minimal/public/assets/images/home/presets/screen_cyan.webp +0 -0
  299. package/minimal/public/assets/images/home/presets/screen_default.webp +0 -0
  300. package/minimal/public/assets/images/home/presets/screen_orange.webp +0 -0
  301. package/minimal/public/assets/images/home/presets/screen_purple.webp +0 -0
  302. package/minimal/public/assets/images/home/presets/screen_red.webp +0 -0
  303. package/minimal/public/assets/images/home/presets/sidebar_blue.webp +0 -0
  304. package/minimal/public/assets/images/home/presets/sidebar_cyan.webp +0 -0
  305. package/minimal/public/assets/images/home/presets/sidebar_default.webp +0 -0
  306. package/minimal/public/assets/images/home/presets/sidebar_orange.webp +0 -0
  307. package/minimal/public/assets/images/home/presets/sidebar_purple.webp +0 -0
  308. package/minimal/public/assets/images/home/presets/sidebar_red.webp +0 -0
  309. package/minimal/public/assets/images/home/rocket.webp +0 -0
  310. package/minimal/public/assets/images/home/zone_landing.webp +0 -0
  311. package/minimal/public/assets/placeholder.svg +0 -8
  312. package/minimal/public/assets/red-blur.png +0 -0
  313. package/minimal/public/assets/transparent.png +0 -0
  314. package/minimal/public/favicon/android-chrome-192x192.png +0 -0
  315. package/minimal/public/favicon/android-chrome-512x512.png +0 -0
  316. package/minimal/public/favicon/apple-touch-icon.png +0 -0
  317. package/minimal/public/favicon/favicon-16x16.png +0 -0
  318. package/minimal/public/favicon/favicon-32x32.png +0 -0
  319. package/minimal/public/favicon/favicon.ico +0 -0
  320. package/minimal/public/fonts/CircularStd-Bold.otf +0 -0
  321. package/minimal/public/fonts/CircularStd-Book.otf +0 -0
  322. package/minimal/public/fonts/CircularStd-Medium.otf +0 -0
  323. package/minimal/public/fonts/Roboto-Bold.ttf +0 -0
  324. package/minimal/public/fonts/Roboto-Regular.ttf +0 -0
  325. package/minimal/public/fonts/index.css +0 -22
  326. package/minimal/public/logo/logo_full.svg +0 -1
  327. package/minimal/public/logo/logo_single.png +0 -0
  328. package/minimal/public/logo/logo_single.svg +0 -1
  329. package/minimal/public/manifest.json +0 -20
  330. package/minimal/public/robots.txt +0 -3
  331. package/minimal/src/_mock/_blog.js +0 -16
  332. package/minimal/src/_mock/_calendar.js +0 -14
  333. package/minimal/src/_mock/_files.js +0 -123
  334. package/minimal/src/_mock/_invoice.js +0 -65
  335. package/minimal/src/_mock/_job.js +0 -172
  336. package/minimal/src/_mock/_mock.js +0 -75
  337. package/minimal/src/_mock/_order.js +0 -95
  338. package/minimal/src/_mock/_others.js +0 -253
  339. package/minimal/src/_mock/_overview.js +0 -330
  340. package/minimal/src/_mock/_product.js +0 -88
  341. package/minimal/src/_mock/_tour.js +0 -150
  342. package/minimal/src/_mock/_user.js +0 -157
  343. package/minimal/src/_mock/assets.js +0 -527
  344. package/minimal/src/_mock/index.js +0 -16
  345. package/minimal/src/_mock/map/cities.js +0 -182
  346. package/minimal/src/_mock/map/countries.js +0 -86
  347. package/minimal/src/_mock/map/map-style-basic-v8.json +0 -554
  348. package/minimal/src/api/blog.js +0 -89
  349. package/minimal/src/api/calendar.js +0 -115
  350. package/minimal/src/api/chat.js +0 -206
  351. package/minimal/src/api/kanban.js +0 -401
  352. package/minimal/src/api/mail.js +0 -72
  353. package/minimal/src/api/product.js +0 -68
  354. package/minimal/src/app.jsx +0 -74
  355. package/minimal/src/assets/data/countries.js +0 -425
  356. package/minimal/src/assets/data/index.js +0 -1
  357. package/minimal/src/assets/icons/email-inbox-icon.jsx +0 -140
  358. package/minimal/src/assets/icons/index.js +0 -6
  359. package/minimal/src/assets/icons/password-icon.jsx +0 -107
  360. package/minimal/src/assets/icons/plan-free-icon.jsx +0 -49
  361. package/minimal/src/assets/icons/plan-premium-icon.jsx +0 -86
  362. package/minimal/src/assets/icons/plan-starter-icon.jsx +0 -73
  363. package/minimal/src/assets/icons/sent-icon.jsx +0 -73
  364. package/minimal/src/assets/illustrations/avatar-shape.jsx +0 -36
  365. package/minimal/src/assets/illustrations/background-shape.jsx +0 -31
  366. package/minimal/src/assets/illustrations/booking-illustration.jsx +0 -307
  367. package/minimal/src/assets/illustrations/check-in-illustration.jsx +0 -96
  368. package/minimal/src/assets/illustrations/check-out-illustration.jsx +0 -69
  369. package/minimal/src/assets/illustrations/coming-soon-illustration.jsx +0 -118
  370. package/minimal/src/assets/illustrations/forbidden-illustration.jsx +0 -88
  371. package/minimal/src/assets/illustrations/index.js +0 -15
  372. package/minimal/src/assets/illustrations/maintenance-illustration.jsx +0 -215
  373. package/minimal/src/assets/illustrations/motivation-illustration.jsx +0 -70
  374. package/minimal/src/assets/illustrations/order-complete-illustration.jsx +0 -122
  375. package/minimal/src/assets/illustrations/page-not-found-illustration.jsx +0 -74
  376. package/minimal/src/assets/illustrations/seo-illustration.jsx +0 -234
  377. package/minimal/src/assets/illustrations/sever-error-illustration.jsx +0 -148
  378. package/minimal/src/assets/illustrations/upgrade-storage-illustration.jsx +0 -157
  379. package/minimal/src/assets/illustrations/upload-illustration.jsx +0 -617
  380. package/minimal/src/auth/context/amplify/auth-consumer.jsx +0 -19
  381. package/minimal/src/auth/context/amplify/auth-context.js +0 -5
  382. package/minimal/src/auth/context/amplify/auth-provider.jsx +0 -183
  383. package/minimal/src/auth/context/amplify/index.js +0 -3
  384. package/minimal/src/auth/context/auth0/auth-consumer.jsx +0 -19
  385. package/minimal/src/auth/context/auth0/auth-context.js +0 -5
  386. package/minimal/src/auth/context/auth0/auth-provider.jsx +0 -101
  387. package/minimal/src/auth/context/auth0/index.js +0 -3
  388. package/minimal/src/auth/context/firebase/auth-consumer.jsx +0 -19
  389. package/minimal/src/auth/context/firebase/auth-context.js +0 -5
  390. package/minimal/src/auth/context/firebase/auth-provider.jsx +0 -202
  391. package/minimal/src/auth/context/firebase/index.js +0 -3
  392. package/minimal/src/auth/context/jwt/auth-consumer.jsx +0 -19
  393. package/minimal/src/auth/context/jwt/auth-context.js +0 -5
  394. package/minimal/src/auth/context/jwt/auth-provider.jsx +0 -184
  395. package/minimal/src/auth/context/jwt/index.js +0 -3
  396. package/minimal/src/auth/context/jwt/utils.js +0 -74
  397. package/minimal/src/auth/guard/auth-guard.jsx +0 -71
  398. package/minimal/src/auth/guard/guest-guard.jsx +0 -49
  399. package/minimal/src/auth/guard/index.js +0 -3
  400. package/minimal/src/auth/guard/role-based-guard.jsx +0 -57
  401. package/minimal/src/auth/hooks/index.js +0 -1
  402. package/minimal/src/auth/hooks/use-auth-context.js +0 -16
  403. package/minimal/src/components/animate/index.js +0 -6
  404. package/minimal/src/components/animate/motion-container.jsx +0 -43
  405. package/minimal/src/components/animate/motion-lazy.jsx +0 -16
  406. package/minimal/src/components/animate/motion-viewport.jsx +0 -36
  407. package/minimal/src/components/animate/variants/actions.js +0 -6
  408. package/minimal/src/components/animate/variants/background.js +0 -103
  409. package/minimal/src/components/animate/variants/bounce.js +0 -111
  410. package/minimal/src/components/animate/variants/container.js +0 -22
  411. package/minimal/src/components/animate/variants/fade.js +0 -131
  412. package/minimal/src/components/animate/variants/flip.js +0 -58
  413. package/minimal/src/components/animate/variants/index.js +0 -12
  414. package/minimal/src/components/animate/variants/path.js +0 -14
  415. package/minimal/src/components/animate/variants/rotate.js +0 -37
  416. package/minimal/src/components/animate/variants/scale.js +0 -58
  417. package/minimal/src/components/animate/variants/slide.js +0 -69
  418. package/minimal/src/components/animate/variants/transition.js +0 -22
  419. package/minimal/src/components/animate/variants/zoom.js +0 -134
  420. package/minimal/src/components/carousel/arrow-icons.jsx +0 -42
  421. package/minimal/src/components/carousel/carousel-arrow-index.jsx +0 -69
  422. package/minimal/src/components/carousel/carousel-arrows.jsx +0 -127
  423. package/minimal/src/components/carousel/carousel-dots.jsx +0 -85
  424. package/minimal/src/components/carousel/index.js +0 -9
  425. package/minimal/src/components/carousel/use-carousel.js +0 -65
  426. package/minimal/src/components/chart/chart.js +0 -67
  427. package/minimal/src/components/chart/index.js +0 -5
  428. package/minimal/src/components/chart/use-chart.js +0 -216
  429. package/minimal/src/components/color-utils/color-picker.jsx +0 -111
  430. package/minimal/src/components/color-utils/color-preview.jsx +0 -42
  431. package/minimal/src/components/color-utils/index.js +0 -2
  432. package/minimal/src/components/custom-breadcrumbs/custom-breadcrumbs.jsx +0 -97
  433. package/minimal/src/components/custom-breadcrumbs/index.js +0 -1
  434. package/minimal/src/components/custom-breadcrumbs/link-item.jsx +0 -62
  435. package/minimal/src/components/custom-date-range-picker/custom-date-range-picker.jsx +0 -130
  436. package/minimal/src/components/custom-date-range-picker/index.js +0 -5
  437. package/minimal/src/components/custom-date-range-picker/use-date-range-picker.js +0 -65
  438. package/minimal/src/components/custom-date-range-picker/utils.js +0 -32
  439. package/minimal/src/components/custom-dialog/confirm-dialog.jsx +0 -35
  440. package/minimal/src/components/custom-dialog/index.js +0 -1
  441. package/minimal/src/components/custom-popover/custom-popover.jsx +0 -72
  442. package/minimal/src/components/custom-popover/index.js +0 -3
  443. package/minimal/src/components/custom-popover/styles.js +0 -82
  444. package/minimal/src/components/custom-popover/use-popover.js +0 -22
  445. package/minimal/src/components/custom-popover/utils.js +0 -100
  446. package/minimal/src/components/editor/editor.jsx +0 -71
  447. package/minimal/src/components/editor/index.js +0 -1
  448. package/minimal/src/components/editor/styles.js +0 -180
  449. package/minimal/src/components/editor/toolbar.jsx +0 -108
  450. package/minimal/src/components/empty-content/empty-content.jsx +0 -63
  451. package/minimal/src/components/empty-content/index.js +0 -1
  452. package/minimal/src/components/file-thumbnail/download-button.jsx +0 -49
  453. package/minimal/src/components/file-thumbnail/file-thumbnail.jsx +0 -78
  454. package/minimal/src/components/file-thumbnail/index.js +0 -5
  455. package/minimal/src/components/file-thumbnail/utils.js +0 -148
  456. package/minimal/src/components/hook-form/form-provider.jsx +0 -18
  457. package/minimal/src/components/hook-form/index.js +0 -13
  458. package/minimal/src/components/hook-form/rhf-autocomplete.jsx +0 -41
  459. package/minimal/src/components/hook-form/rhf-checkbox.jsx +0 -113
  460. package/minimal/src/components/hook-form/rhf-code.jsx +0 -43
  461. package/minimal/src/components/hook-form/rhf-editor.jsx +0 -56
  462. package/minimal/src/components/hook-form/rhf-radio-group.jsx +0 -78
  463. package/minimal/src/components/hook-form/rhf-select.jsx +0 -151
  464. package/minimal/src/components/hook-form/rhf-slider.jsx +0 -32
  465. package/minimal/src/components/hook-form/rhf-switch.jsx +0 -33
  466. package/minimal/src/components/hook-form/rhf-text-field.jsx +0 -41
  467. package/minimal/src/components/hook-form/rhf-upload.jsx +0 -105
  468. package/minimal/src/components/iconify/iconify.jsx +0 -26
  469. package/minimal/src/components/iconify/index.js +0 -1
  470. package/minimal/src/components/image/image.jsx +0 -141
  471. package/minimal/src/components/image/index.js +0 -1
  472. package/minimal/src/components/image/utils.js +0 -15
  473. package/minimal/src/components/index.js +0 -214
  474. package/minimal/src/components/label/index.js +0 -1
  475. package/minimal/src/components/label/label.jsx +0 -61
  476. package/minimal/src/components/label/styles.js +0 -77
  477. package/minimal/src/components/lightbox/index.js +0 -5
  478. package/minimal/src/components/lightbox/lightbox.jsx +0 -152
  479. package/minimal/src/components/lightbox/styles.jsx +0 -52
  480. package/minimal/src/components/lightbox/use-light-box.js +0 -30
  481. package/minimal/src/components/loading-screen/index.js +0 -2
  482. package/minimal/src/components/loading-screen/loading-screen.jsx +0 -30
  483. package/minimal/src/components/loading-screen/splash-screen.jsx +0 -100
  484. package/minimal/src/components/logo/index.js +0 -1
  485. package/minimal/src/components/logo/logo.jsx +0 -95
  486. package/minimal/src/components/map/index.js +0 -5
  487. package/minimal/src/components/map/map-control.jsx +0 -36
  488. package/minimal/src/components/map/map-marker.jsx +0 -33
  489. package/minimal/src/components/map/map-popup.jsx +0 -18
  490. package/minimal/src/components/map/styles.jsx +0 -107
  491. package/minimal/src/components/markdown/index.js +0 -1
  492. package/minimal/src/components/markdown/markdown.jsx +0 -51
  493. package/minimal/src/components/markdown/styles.js +0 -146
  494. package/minimal/src/components/mega-menu/common/menu-more-link.jsx +0 -33
  495. package/minimal/src/components/mega-menu/common/menu-products.jsx +0 -81
  496. package/minimal/src/components/mega-menu/common/menu-tags.jsx +0 -47
  497. package/minimal/src/components/mega-menu/common/nav-sub-list.jsx +0 -64
  498. package/minimal/src/components/mega-menu/horizontal/mega-menu-desktop-horizontal.jsx +0 -33
  499. package/minimal/src/components/mega-menu/horizontal/nav-item.jsx +0 -104
  500. package/minimal/src/components/mega-menu/horizontal/nav-list.jsx +0 -169
  501. package/minimal/src/components/mega-menu/index.js +0 -3
  502. package/minimal/src/components/mega-menu/mobile/mega-menu-mobile.jsx +0 -22
  503. package/minimal/src/components/mega-menu/mobile/nav-item.jsx +0 -95
  504. package/minimal/src/components/mega-menu/mobile/nav-list.jsx +0 -218
  505. package/minimal/src/components/mega-menu/vertical/mega-menu-desktop-vertical.jsx +0 -31
  506. package/minimal/src/components/mega-menu/vertical/nav-item.jsx +0 -99
  507. package/minimal/src/components/mega-menu/vertical/nav-list.jsx +0 -124
  508. package/minimal/src/components/nav-basic/desktop/nav-basic-desktop.jsx +0 -25
  509. package/minimal/src/components/nav-basic/desktop/nav-item.jsx +0 -166
  510. package/minimal/src/components/nav-basic/desktop/nav-list.jsx +0 -122
  511. package/minimal/src/components/nav-basic/index.js +0 -2
  512. package/minimal/src/components/nav-basic/mobile/nav-basic-mobile.jsx +0 -25
  513. package/minimal/src/components/nav-basic/mobile/nav-item.jsx +0 -171
  514. package/minimal/src/components/nav-basic/mobile/nav-list.jsx +0 -87
  515. package/minimal/src/components/nav-section/horizontal/index.js +0 -1
  516. package/minimal/src/components/nav-section/horizontal/nav-item.jsx +0 -246
  517. package/minimal/src/components/nav-section/horizontal/nav-list.jsx +0 -126
  518. package/minimal/src/components/nav-section/horizontal/nav-section-horizontal.jsx +0 -54
  519. package/minimal/src/components/nav-section/index.js +0 -3
  520. package/minimal/src/components/nav-section/mini/index.js +0 -1
  521. package/minimal/src/components/nav-section/mini/nav-item.jsx +0 -260
  522. package/minimal/src/components/nav-section/mini/nav-list.jsx +0 -119
  523. package/minimal/src/components/nav-section/mini/nav-section-mini.jsx +0 -42
  524. package/minimal/src/components/nav-section/vertical/index.js +0 -1
  525. package/minimal/src/components/nav-section/vertical/nav-item.jsx +0 -298
  526. package/minimal/src/components/nav-section/vertical/nav-list.jsx +0 -95
  527. package/minimal/src/components/nav-section/vertical/nav-section-vertical.jsx +0 -89
  528. package/minimal/src/components/organizational-chart/common/group-node.jsx +0 -115
  529. package/minimal/src/components/organizational-chart/common/simple-node.jsx +0 -32
  530. package/minimal/src/components/organizational-chart/common/standard-node.jsx +0 -95
  531. package/minimal/src/components/organizational-chart/index.js +0 -1
  532. package/minimal/src/components/organizational-chart/organizational-chart.jsx +0 -106
  533. package/minimal/src/components/progress-bar/index.js +0 -3
  534. package/minimal/src/components/progress-bar/progress-bar.jsx +0 -48
  535. package/minimal/src/components/progress-bar/styles.jsx +0 -40
  536. package/minimal/src/components/scroll-progress/index.js +0 -1
  537. package/minimal/src/components/scroll-progress/scroll-progress.jsx +0 -58
  538. package/minimal/src/components/scrollbar/index.js +0 -1
  539. package/minimal/src/components/scrollbar/scrollbar.jsx +0 -44
  540. package/minimal/src/components/scrollbar/styles.js +0 -26
  541. package/minimal/src/components/search-not-found/index.js +0 -1
  542. package/minimal/src/components/search-not-found/search-not-found.jsx +0 -38
  543. package/minimal/src/components/settings/context/index.js +0 -2
  544. package/minimal/src/components/settings/context/settings-context.js +0 -13
  545. package/minimal/src/components/settings/context/settings-provider.jsx +0 -80
  546. package/minimal/src/components/settings/drawer/base-option.jsx +0 -59
  547. package/minimal/src/components/settings/drawer/fullscreen-option.jsx +0 -57
  548. package/minimal/src/components/settings/drawer/index.js +0 -1
  549. package/minimal/src/components/settings/drawer/layout-options.jsx +0 -153
  550. package/minimal/src/components/settings/drawer/presets-options.jsx +0 -55
  551. package/minimal/src/components/settings/drawer/settings-drawer.jsx +0 -193
  552. package/minimal/src/components/settings/drawer/stretch-options.jsx +0 -70
  553. package/minimal/src/components/settings/index.js +0 -3
  554. package/minimal/src/components/snackbar/index.js +0 -3
  555. package/minimal/src/components/snackbar/snackbar-provider.jsx +0 -73
  556. package/minimal/src/components/snackbar/styles.js +0 -47
  557. package/minimal/src/components/svg-color/index.js +0 -1
  558. package/minimal/src/components/table/index.js +0 -10
  559. package/minimal/src/components/table/table-empty-rows.jsx +0 -29
  560. package/minimal/src/components/table/table-head-custom.jsx +0 -90
  561. package/minimal/src/components/table/table-no-data.jsx +0 -34
  562. package/minimal/src/components/table/table-pagination-custom.jsx +0 -51
  563. package/minimal/src/components/table/table-selected-action.jsx +0 -75
  564. package/minimal/src/components/table/table-skeleton.jsx +0 -23
  565. package/minimal/src/components/table/use-table.js +0 -123
  566. package/minimal/src/components/table/utils.js +0 -27
  567. package/minimal/src/components/text-max-line/index.js +0 -3
  568. package/minimal/src/components/text-max-line/text-max-line.jsx +0 -67
  569. package/minimal/src/components/text-max-line/use-typography.js +0 -38
  570. package/minimal/src/components/upload/errors-rejection-files.jsx +0 -55
  571. package/minimal/src/components/upload/index.js +0 -8
  572. package/minimal/src/components/upload/preview-multi-file.jsx +0 -121
  573. package/minimal/src/components/upload/preview-single-file.jsx +0 -36
  574. package/minimal/src/components/upload/upload-avatar.jsx +0 -151
  575. package/minimal/src/components/upload/upload-box.jsx +0 -65
  576. package/minimal/src/components/upload/upload.jsx +0 -186
  577. package/minimal/src/config-global.js +0 -34
  578. package/minimal/src/global.css +0 -20
  579. package/minimal/src/hooks/use-boolean.js +0 -27
  580. package/minimal/src/hooks/use-copy-to-clipboard.js +0 -27
  581. package/minimal/src/hooks/use-countdown.js +0 -78
  582. package/minimal/src/hooks/use-debounce.js +0 -19
  583. package/minimal/src/hooks/use-double-click.js +0 -29
  584. package/minimal/src/hooks/use-event-listener.js +0 -33
  585. package/minimal/src/hooks/use-local-storage.js +0 -89
  586. package/minimal/src/hooks/use-mocked-user.js +0 -34
  587. package/minimal/src/hooks/use-off-set-top.js +0 -36
  588. package/minimal/src/hooks/use-responsive.js +0 -47
  589. package/minimal/src/hooks/use-scroll-to-top.js +0 -14
  590. package/minimal/src/layouts/auth/classic.jsx +0 -158
  591. package/minimal/src/layouts/auth/modern-compact.jsx +0 -56
  592. package/minimal/src/layouts/auth/modern.jsx +0 -95
  593. package/minimal/src/layouts/common/account-popover.jsx +0 -132
  594. package/minimal/src/layouts/common/contacts-popover.jsx +0 -73
  595. package/minimal/src/layouts/common/header-shadow.jsx +0 -31
  596. package/minimal/src/layouts/common/header-simple.jsx +0 -69
  597. package/minimal/src/layouts/common/language-popover.jsx +0 -64
  598. package/minimal/src/layouts/common/login-button.jsx +0 -21
  599. package/minimal/src/layouts/common/nav-toggle-button.jsx +0 -63
  600. package/minimal/src/layouts/common/nav-upgrade.jsx +0 -61
  601. package/minimal/src/layouts/common/notifications-popover/index.jsx +0 -191
  602. package/minimal/src/layouts/common/notifications-popover/notification-item.jsx +0 -246
  603. package/minimal/src/layouts/common/searchbar/index.jsx +0 -171
  604. package/minimal/src/layouts/common/searchbar/result-item.jsx +0 -69
  605. package/minimal/src/layouts/common/searchbar/utils.js +0 -86
  606. package/minimal/src/layouts/common/settings-button.jsx +0 -62
  607. package/minimal/src/layouts/compact/index.jsx +0 -35
  608. package/minimal/src/layouts/config-layout.js +0 -12
  609. package/minimal/src/layouts/dashboard/config-navigation.jsx +0 -324
  610. package/minimal/src/layouts/dashboard/header.jsx +0 -118
  611. package/minimal/src/layouts/dashboard/index.jsx +0 -88
  612. package/minimal/src/layouts/dashboard/main.jsx +0 -74
  613. package/minimal/src/layouts/dashboard/nav-horizontal.jsx +0 -65
  614. package/minimal/src/layouts/dashboard/nav-mini.jsx +0 -57
  615. package/minimal/src/layouts/dashboard/nav-vertical.jsx +0 -106
  616. package/minimal/src/layouts/main/config-navigation.jsx +0 -90
  617. package/minimal/src/layouts/main/footer.jsx +0 -172
  618. package/minimal/src/layouts/main/header.jsx +0 -112
  619. package/minimal/src/layouts/main/index.jsx +0 -40
  620. package/minimal/src/layouts/main/nav/desktop/index.jsx +0 -21
  621. package/minimal/src/layouts/main/nav/desktop/nav-item.jsx +0 -184
  622. package/minimal/src/layouts/main/nav/desktop/nav-list.jsx +0 -158
  623. package/minimal/src/layouts/main/nav/mobile/index.jsx +0 -67
  624. package/minimal/src/layouts/main/nav/mobile/nav-item.jsx +0 -90
  625. package/minimal/src/layouts/main/nav/mobile/nav-list.jsx +0 -83
  626. package/minimal/src/layouts/simple/index.jsx +0 -19
  627. package/minimal/src/locales/config-lang.js +0 -79
  628. package/minimal/src/locales/i18n.js +0 -39
  629. package/minimal/src/locales/index.js +0 -5
  630. package/minimal/src/locales/langs/ar.json +0 -54
  631. package/minimal/src/locales/langs/cn.json +0 -54
  632. package/minimal/src/locales/langs/en.json +0 -54
  633. package/minimal/src/locales/langs/fr.json +0 -54
  634. package/minimal/src/locales/langs/vi.json +0 -54
  635. package/minimal/src/locales/localization-provider.jsx +0 -22
  636. package/minimal/src/locales/use-locales.js +0 -44
  637. package/minimal/src/main.jsx +0 -20
  638. package/minimal/src/pages/403.jsx +0 -17
  639. package/minimal/src/pages/404.jsx +0 -17
  640. package/minimal/src/pages/500.jsx +0 -17
  641. package/minimal/src/pages/about-us.jsx +0 -17
  642. package/minimal/src/pages/auth/amplify/forgot-password.jsx +0 -17
  643. package/minimal/src/pages/auth/amplify/login.jsx +0 -17
  644. package/minimal/src/pages/auth/amplify/new-password.jsx +0 -17
  645. package/minimal/src/pages/auth/amplify/register.jsx +0 -17
  646. package/minimal/src/pages/auth/amplify/verify.jsx +0 -17
  647. package/minimal/src/pages/auth/auth0/callback.js +0 -6
  648. package/minimal/src/pages/auth/auth0/login.jsx +0 -17
  649. package/minimal/src/pages/auth/firebase/forgot-password.jsx +0 -17
  650. package/minimal/src/pages/auth/firebase/login.jsx +0 -17
  651. package/minimal/src/pages/auth/firebase/register.jsx +0 -17
  652. package/minimal/src/pages/auth/firebase/verify.jsx +0 -17
  653. package/minimal/src/pages/auth/jwt/login.jsx +0 -17
  654. package/minimal/src/pages/auth/jwt/register.jsx +0 -17
  655. package/minimal/src/pages/auth-demo/classic/forgot-password.jsx +0 -17
  656. package/minimal/src/pages/auth-demo/classic/login.jsx +0 -17
  657. package/minimal/src/pages/auth-demo/classic/new-password.jsx +0 -17
  658. package/minimal/src/pages/auth-demo/classic/register.jsx +0 -17
  659. package/minimal/src/pages/auth-demo/classic/verify.jsx +0 -17
  660. package/minimal/src/pages/auth-demo/modern/forgot-password.jsx +0 -17
  661. package/minimal/src/pages/auth-demo/modern/login.jsx +0 -17
  662. package/minimal/src/pages/auth-demo/modern/new-password.jsx +0 -17
  663. package/minimal/src/pages/auth-demo/modern/register.jsx +0 -17
  664. package/minimal/src/pages/auth-demo/modern/verify.jsx +0 -17
  665. package/minimal/src/pages/coming-soon.jsx +0 -17
  666. package/minimal/src/pages/components/extra/animate.jsx +0 -17
  667. package/minimal/src/pages/components/extra/carousel.jsx +0 -17
  668. package/minimal/src/pages/components/extra/chart.jsx +0 -17
  669. package/minimal/src/pages/components/extra/copy-to-clipboard.jsx +0 -17
  670. package/minimal/src/pages/components/extra/editor.jsx +0 -17
  671. package/minimal/src/pages/components/extra/form-validation.jsx +0 -17
  672. package/minimal/src/pages/components/extra/image.jsx +0 -17
  673. package/minimal/src/pages/components/extra/label.jsx +0 -17
  674. package/minimal/src/pages/components/extra/lightbox.jsx +0 -17
  675. package/minimal/src/pages/components/extra/map.jsx +0 -17
  676. package/minimal/src/pages/components/extra/markdown.jsx +0 -17
  677. package/minimal/src/pages/components/extra/mega-menu.jsx +0 -17
  678. package/minimal/src/pages/components/extra/multi-language.jsx +0 -17
  679. package/minimal/src/pages/components/extra/navigation-bar.jsx +0 -17
  680. package/minimal/src/pages/components/extra/organization-chart.jsx +0 -17
  681. package/minimal/src/pages/components/extra/scroll-progress.jsx +0 -17
  682. package/minimal/src/pages/components/extra/scroll.jsx +0 -17
  683. package/minimal/src/pages/components/extra/snackbar.jsx +0 -17
  684. package/minimal/src/pages/components/extra/text-max-line.jsx +0 -17
  685. package/minimal/src/pages/components/extra/upload.jsx +0 -17
  686. package/minimal/src/pages/components/foundation/colors.jsx +0 -17
  687. package/minimal/src/pages/components/foundation/grid.jsx +0 -17
  688. package/minimal/src/pages/components/foundation/icons.jsx +0 -17
  689. package/minimal/src/pages/components/foundation/shadows.jsx +0 -17
  690. package/minimal/src/pages/components/foundation/typography.jsx +0 -17
  691. package/minimal/src/pages/components/index.jsx +0 -17
  692. package/minimal/src/pages/components/mui/accordion.jsx +0 -17
  693. package/minimal/src/pages/components/mui/alert.jsx +0 -17
  694. package/minimal/src/pages/components/mui/autocomplete.jsx +0 -17
  695. package/minimal/src/pages/components/mui/avatar.jsx +0 -17
  696. package/minimal/src/pages/components/mui/badge.jsx +0 -17
  697. package/minimal/src/pages/components/mui/breadcrumbs.jsx +0 -17
  698. package/minimal/src/pages/components/mui/buttons.jsx +0 -17
  699. package/minimal/src/pages/components/mui/checkbox.jsx +0 -17
  700. package/minimal/src/pages/components/mui/chip.jsx +0 -17
  701. package/minimal/src/pages/components/mui/data-grid.jsx +0 -17
  702. package/minimal/src/pages/components/mui/dialog.jsx +0 -17
  703. package/minimal/src/pages/components/mui/list.jsx +0 -17
  704. package/minimal/src/pages/components/mui/menu.jsx +0 -17
  705. package/minimal/src/pages/components/mui/pagination.jsx +0 -17
  706. package/minimal/src/pages/components/mui/pickers.jsx +0 -17
  707. package/minimal/src/pages/components/mui/popover.jsx +0 -17
  708. package/minimal/src/pages/components/mui/progress.jsx +0 -17
  709. package/minimal/src/pages/components/mui/radio-button.jsx +0 -17
  710. package/minimal/src/pages/components/mui/rating.jsx +0 -17
  711. package/minimal/src/pages/components/mui/slider.jsx +0 -17
  712. package/minimal/src/pages/components/mui/stepper.jsx +0 -17
  713. package/minimal/src/pages/components/mui/switch.jsx +0 -17
  714. package/minimal/src/pages/components/mui/table.jsx +0 -17
  715. package/minimal/src/pages/components/mui/tabs.jsx +0 -17
  716. package/minimal/src/pages/components/mui/textfield.jsx +0 -17
  717. package/minimal/src/pages/components/mui/timeline.jsx +0 -17
  718. package/minimal/src/pages/components/mui/tooltip.jsx +0 -17
  719. package/minimal/src/pages/components/mui/transfer-list.jsx +0 -17
  720. package/minimal/src/pages/contact-us.jsx +0 -17
  721. package/minimal/src/pages/dashboard/analytics.jsx +0 -17
  722. package/minimal/src/pages/dashboard/app.jsx +0 -17
  723. package/minimal/src/pages/dashboard/banking.jsx +0 -17
  724. package/minimal/src/pages/dashboard/blank.jsx +0 -17
  725. package/minimal/src/pages/dashboard/booking.jsx +0 -17
  726. package/minimal/src/pages/dashboard/calendar.jsx +0 -17
  727. package/minimal/src/pages/dashboard/chat.jsx +0 -17
  728. package/minimal/src/pages/dashboard/ecommerce.jsx +0 -17
  729. package/minimal/src/pages/dashboard/file-manager.jsx +0 -17
  730. package/minimal/src/pages/dashboard/file.jsx +0 -17
  731. package/minimal/src/pages/dashboard/invoice/details.jsx +0 -23
  732. package/minimal/src/pages/dashboard/invoice/edit.jsx +0 -23
  733. package/minimal/src/pages/dashboard/invoice/list.jsx +0 -17
  734. package/minimal/src/pages/dashboard/invoice/new.jsx +0 -17
  735. package/minimal/src/pages/dashboard/job/details.jsx +0 -23
  736. package/minimal/src/pages/dashboard/job/edit.jsx +0 -23
  737. package/minimal/src/pages/dashboard/job/list.jsx +0 -17
  738. package/minimal/src/pages/dashboard/job/new.jsx +0 -17
  739. package/minimal/src/pages/dashboard/kanban.jsx +0 -17
  740. package/minimal/src/pages/dashboard/mail.jsx +0 -17
  741. package/minimal/src/pages/dashboard/order/details.jsx +0 -23
  742. package/minimal/src/pages/dashboard/order/list.jsx +0 -17
  743. package/minimal/src/pages/dashboard/permission.jsx +0 -17
  744. package/minimal/src/pages/dashboard/post/details.jsx +0 -23
  745. package/minimal/src/pages/dashboard/post/edit.jsx +0 -23
  746. package/minimal/src/pages/dashboard/post/list.jsx +0 -17
  747. package/minimal/src/pages/dashboard/post/new.jsx +0 -17
  748. package/minimal/src/pages/dashboard/product/details.jsx +0 -23
  749. package/minimal/src/pages/dashboard/product/edit.jsx +0 -23
  750. package/minimal/src/pages/dashboard/product/list.jsx +0 -17
  751. package/minimal/src/pages/dashboard/product/new.jsx +0 -17
  752. package/minimal/src/pages/dashboard/tour/details.jsx +0 -23
  753. package/minimal/src/pages/dashboard/tour/edit.jsx +0 -23
  754. package/minimal/src/pages/dashboard/tour/list.jsx +0 -17
  755. package/minimal/src/pages/dashboard/tour/new.jsx +0 -17
  756. package/minimal/src/pages/dashboard/user/account.jsx +0 -17
  757. package/minimal/src/pages/dashboard/user/cards.jsx +0 -17
  758. package/minimal/src/pages/dashboard/user/edit.jsx +0 -23
  759. package/minimal/src/pages/dashboard/user/list.jsx +0 -17
  760. package/minimal/src/pages/dashboard/user/new.jsx +0 -17
  761. package/minimal/src/pages/dashboard/user/profile.jsx +0 -17
  762. package/minimal/src/pages/faqs.jsx +0 -17
  763. package/minimal/src/pages/home.jsx +0 -17
  764. package/minimal/src/pages/maintenance.jsx +0 -17
  765. package/minimal/src/pages/payment.jsx +0 -17
  766. package/minimal/src/pages/post/details.jsx +0 -23
  767. package/minimal/src/pages/post/list.jsx +0 -17
  768. package/minimal/src/pages/pricing.jsx +0 -17
  769. package/minimal/src/pages/product/checkout.jsx +0 -17
  770. package/minimal/src/pages/product/details.jsx +0 -23
  771. package/minimal/src/pages/product/list.jsx +0 -17
  772. package/minimal/src/routes/components/index.js +0 -1
  773. package/minimal/src/routes/components/router-link.jsx +0 -13
  774. package/minimal/src/routes/hooks/index.js +0 -6
  775. package/minimal/src/routes/hooks/use-active-link.js +0 -13
  776. package/minimal/src/routes/hooks/use-params.js +0 -10
  777. package/minimal/src/routes/hooks/use-pathname.js +0 -10
  778. package/minimal/src/routes/hooks/use-router.js +0 -21
  779. package/minimal/src/routes/hooks/use-search-params.js +0 -10
  780. package/minimal/src/routes/paths.js +0 -180
  781. package/minimal/src/routes/sections/auth-demo.jsx +0 -112
  782. package/minimal/src/routes/sections/auth.jsx +0 -175
  783. package/minimal/src/routes/sections/components.jsx +0 -173
  784. package/minimal/src/routes/sections/dashboard.jsx +0 -165
  785. package/minimal/src/routes/sections/index.jsx +0 -50
  786. package/minimal/src/routes/sections/main.jsx +0 -94
  787. package/minimal/src/sections/_examples/component-block.jsx +0 -45
  788. package/minimal/src/sections/_examples/component-card.jsx +0 -54
  789. package/minimal/src/sections/_examples/component-hero.jsx +0 -80
  790. package/minimal/src/sections/_examples/config-navigation.js +0 -73
  791. package/minimal/src/sections/_examples/extra/animate-view/background/container.jsx +0 -42
  792. package/minimal/src/sections/_examples/extra/animate-view/background/index.jsx +0 -61
  793. package/minimal/src/sections/_examples/extra/animate-view/background/toolbar.jsx +0 -22
  794. package/minimal/src/sections/_examples/extra/animate-view/control-panel.jsx +0 -58
  795. package/minimal/src/sections/_examples/extra/animate-view/dialog/container.jsx +0 -72
  796. package/minimal/src/sections/_examples/extra/animate-view/dialog/index.jsx +0 -76
  797. package/minimal/src/sections/_examples/extra/animate-view/get-variant.js +0 -91
  798. package/minimal/src/sections/_examples/extra/animate-view/index.jsx +0 -78
  799. package/minimal/src/sections/_examples/extra/animate-view/inview/container.jsx +0 -80
  800. package/minimal/src/sections/_examples/extra/animate-view/inview/index.jsx +0 -129
  801. package/minimal/src/sections/_examples/extra/animate-view/inview/toolbar.jsx +0 -57
  802. package/minimal/src/sections/_examples/extra/animate-view/other/buttons.jsx +0 -86
  803. package/minimal/src/sections/_examples/extra/animate-view/other/index.jsx +0 -48
  804. package/minimal/src/sections/_examples/extra/animate-view/other/logo.jsx +0 -60
  805. package/minimal/src/sections/_examples/extra/animate-view/scroll/container.jsx +0 -60
  806. package/minimal/src/sections/_examples/extra/animate-view/scroll/index.jsx +0 -80
  807. package/minimal/src/sections/_examples/extra/animate-view/scroll/toolbar.jsx +0 -29
  808. package/minimal/src/sections/_examples/extra/carousel-view/carousel-animation.jsx +0 -113
  809. package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-1.jsx +0 -35
  810. package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-2.jsx +0 -53
  811. package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-3.jsx +0 -57
  812. package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-4.jsx +0 -89
  813. package/minimal/src/sections/_examples/extra/carousel-view/carousel-center-mode.jsx +0 -125
  814. package/minimal/src/sections/_examples/extra/carousel-view/carousel-thumbnail.jsx +0 -160
  815. package/minimal/src/sections/_examples/extra/carousel-view/index.jsx +0 -124
  816. package/minimal/src/sections/_examples/extra/chart-view/chart-area.jsx +0 -35
  817. package/minimal/src/sections/_examples/extra/chart-view/chart-bar.jsx +0 -43
  818. package/minimal/src/sections/_examples/extra/chart-view/chart-column-multiple.jsx +0 -32
  819. package/minimal/src/sections/_examples/extra/chart-view/chart-column-negative.jsx +0 -77
  820. package/minimal/src/sections/_examples/extra/chart-view/chart-column-single.jsx +0 -34
  821. package/minimal/src/sections/_examples/extra/chart-view/chart-column-stacked.jsx +0 -50
  822. package/minimal/src/sections/_examples/extra/chart-view/chart-donut.jsx +0 -42
  823. package/minimal/src/sections/_examples/extra/chart-view/chart-line.jsx +0 -27
  824. package/minimal/src/sections/_examples/extra/chart-view/chart-mixed.jsx +0 -59
  825. package/minimal/src/sections/_examples/extra/chart-view/chart-pie.jsx +0 -48
  826. package/minimal/src/sections/_examples/extra/chart-view/chart-radar-bar.jsx +0 -73
  827. package/minimal/src/sections/_examples/extra/chart-view/chart-radial-bar.jsx +0 -73
  828. package/minimal/src/sections/_examples/extra/chart-view/index.jsx +0 -234
  829. package/minimal/src/sections/_examples/extra/copy-to-clipboard-view.jsx +0 -115
  830. package/minimal/src/sections/_examples/extra/editor-view.jsx +0 -95
  831. package/minimal/src/sections/_examples/extra/form-validation-view/index.jsx +0 -59
  832. package/minimal/src/sections/_examples/extra/form-validation-view/react-hook-form.jsx +0 -405
  833. package/minimal/src/sections/_examples/extra/form-validation-view/schema.js +0 -50
  834. package/minimal/src/sections/_examples/extra/form-validation-view/values-preview.jsx +0 -87
  835. package/minimal/src/sections/_examples/extra/image-view.jsx +0 -94
  836. package/minimal/src/sections/_examples/extra/label-view.jsx +0 -116
  837. package/minimal/src/sections/_examples/extra/lightbox-view.jsx +0 -239
  838. package/minimal/src/sections/_examples/extra/map-view/change-theme/control-panel.jsx +0 -41
  839. package/minimal/src/sections/_examples/extra/map-view/change-theme/index.jsx +0 -41
  840. package/minimal/src/sections/_examples/extra/map-view/clusters/index.jsx +0 -61
  841. package/minimal/src/sections/_examples/extra/map-view/clusters/layers.js +0 -37
  842. package/minimal/src/sections/_examples/extra/map-view/draggable-markers/control-panel.jsx +0 -49
  843. package/minimal/src/sections/_examples/extra/map-view/draggable-markers/index.jsx +0 -56
  844. package/minimal/src/sections/_examples/extra/map-view/heatmap/control-panel.jsx +0 -91
  845. package/minimal/src/sections/_examples/extra/map-view/heatmap/index.jsx +0 -94
  846. package/minimal/src/sections/_examples/extra/map-view/heatmap/map-style.js +0 -40
  847. package/minimal/src/sections/_examples/extra/map-view/index.jsx +0 -183
  848. package/minimal/src/sections/_examples/extra/map-view/interaction/control-panel.jsx +0 -85
  849. package/minimal/src/sections/_examples/extra/map-view/interaction/index.jsx +0 -56
  850. package/minimal/src/sections/_examples/extra/map-view/map-geo-json-animation.jsx +0 -68
  851. package/minimal/src/sections/_examples/extra/map-view/map-highlight-by-filter.jsx +0 -83
  852. package/minimal/src/sections/_examples/extra/map-view/map-markers-popups.jsx +0 -95
  853. package/minimal/src/sections/_examples/extra/map-view/side-by-side/control-panel.jsx +0 -28
  854. package/minimal/src/sections/_examples/extra/map-view/side-by-side/index.jsx +0 -106
  855. package/minimal/src/sections/_examples/extra/map-view/viewport-animation/control-panel.jsx +0 -39
  856. package/minimal/src/sections/_examples/extra/map-view/viewport-animation/index.jsx +0 -44
  857. package/minimal/src/sections/_examples/extra/markdown-view.jsx +0 -204
  858. package/minimal/src/sections/_examples/extra/mega-menu-view.jsx +0 -318
  859. package/minimal/src/sections/_examples/extra/multi-language-view.jsx +0 -124
  860. package/minimal/src/sections/_examples/extra/navigation-bar-view.jsx +0 -564
  861. package/minimal/src/sections/_examples/extra/organizational-chart-view.jsx +0 -206
  862. package/minimal/src/sections/_examples/extra/scroll-progress-view.jsx +0 -136
  863. package/minimal/src/sections/_examples/extra/scroll-view.jsx +0 -113
  864. package/minimal/src/sections/_examples/extra/snackbar-view.jsx +0 -212
  865. package/minimal/src/sections/_examples/extra/text-max-line-view.jsx +0 -112
  866. package/minimal/src/sections/_examples/extra/upload-view.jsx +0 -190
  867. package/minimal/src/sections/_examples/foundation/colors-view.jsx +0 -181
  868. package/minimal/src/sections/_examples/foundation/grid-view.jsx +0 -154
  869. package/minimal/src/sections/_examples/foundation/icons-view.jsx +0 -95
  870. package/minimal/src/sections/_examples/foundation/index.js +0 -5
  871. package/minimal/src/sections/_examples/foundation/shadows-view.jsx +0 -122
  872. package/minimal/src/sections/_examples/foundation/typography-view.jsx +0 -153
  873. package/minimal/src/sections/_examples/mui/accordion-view.jsx +0 -101
  874. package/minimal/src/sections/_examples/mui/alert-view.jsx +0 -176
  875. package/minimal/src/sections/_examples/mui/autocomplete-view.jsx +0 -384
  876. package/minimal/src/sections/_examples/mui/avatar-view.jsx +0 -188
  877. package/minimal/src/sections/_examples/mui/badge-view.jsx +0 -139
  878. package/minimal/src/sections/_examples/mui/breadcrumbs-view.jsx +0 -158
  879. package/minimal/src/sections/_examples/mui/button-view/button-groups.jsx +0 -111
  880. package/minimal/src/sections/_examples/mui/button-view/button-variants.jsx +0 -144
  881. package/minimal/src/sections/_examples/mui/button-view/floating-action-button.jsx +0 -198
  882. package/minimal/src/sections/_examples/mui/button-view/icon-buttons.jsx +0 -90
  883. package/minimal/src/sections/_examples/mui/button-view/index.jsx +0 -102
  884. package/minimal/src/sections/_examples/mui/button-view/toggle-buttons.jsx +0 -183
  885. package/minimal/src/sections/_examples/mui/checkbox-view.jsx +0 -187
  886. package/minimal/src/sections/_examples/mui/chip-view/chip.jsx +0 -241
  887. package/minimal/src/sections/_examples/mui/chip-view/index.jsx +0 -72
  888. package/minimal/src/sections/_examples/mui/data-grid-view/data-grid-basic.jsx +0 -65
  889. package/minimal/src/sections/_examples/mui/data-grid-view/data-grid-custom.jsx +0 -236
  890. package/minimal/src/sections/_examples/mui/data-grid-view/index.jsx +0 -95
  891. package/minimal/src/sections/_examples/mui/dialog-view/alert-dialog.jsx +0 -39
  892. package/minimal/src/sections/_examples/mui/dialog-view/form-dialog.jsx +0 -52
  893. package/minimal/src/sections/_examples/mui/dialog-view/full-screen-dialog.jsx +0 -68
  894. package/minimal/src/sections/_examples/mui/dialog-view/index.jsx +0 -77
  895. package/minimal/src/sections/_examples/mui/dialog-view/max-width-dialog.jsx +0 -105
  896. package/minimal/src/sections/_examples/mui/dialog-view/scroll-dialog.jsx +0 -74
  897. package/minimal/src/sections/_examples/mui/dialog-view/simple-dialog.jsx +0 -69
  898. package/minimal/src/sections/_examples/mui/dialog-view/transitions-dialog.jsx +0 -49
  899. package/minimal/src/sections/_examples/mui/list-view.jsx +0 -324
  900. package/minimal/src/sections/_examples/mui/menu-view.jsx +0 -193
  901. package/minimal/src/sections/_examples/mui/pagination-view.jsx +0 -126
  902. package/minimal/src/sections/_examples/mui/picker-view/index.jsx +0 -76
  903. package/minimal/src/sections/_examples/mui/picker-view/picker-date-range.jsx +0 -91
  904. package/minimal/src/sections/_examples/mui/picker-view/picker-date-time.jsx +0 -74
  905. package/minimal/src/sections/_examples/mui/picker-view/picker-date.jsx +0 -140
  906. package/minimal/src/sections/_examples/mui/picker-view/picker-time.jsx +0 -115
  907. package/minimal/src/sections/_examples/mui/popover-view.jsx +0 -186
  908. package/minimal/src/sections/_examples/mui/progress-view/index.jsx +0 -99
  909. package/minimal/src/sections/_examples/mui/progress-view/progress-circular.jsx +0 -58
  910. package/minimal/src/sections/_examples/mui/progress-view/progress-linear.jsx +0 -86
  911. package/minimal/src/sections/_examples/mui/radio-button-view.jsx +0 -117
  912. package/minimal/src/sections/_examples/mui/rating-view.jsx +0 -184
  913. package/minimal/src/sections/_examples/mui/slider-view.jsx +0 -204
  914. package/minimal/src/sections/_examples/mui/stepper-view/customized-steppers.jsx +0 -260
  915. package/minimal/src/sections/_examples/mui/stepper-view/horizontal-linear-stepper.jsx +0 -125
  916. package/minimal/src/sections/_examples/mui/stepper-view/index.jsx +0 -95
  917. package/minimal/src/sections/_examples/mui/stepper-view/linear-alternative-label-stepper.jsx +0 -123
  918. package/minimal/src/sections/_examples/mui/stepper-view/vertical-linear-stepper.jsx +0 -89
  919. package/minimal/src/sections/_examples/mui/switch-view.jsx +0 -99
  920. package/minimal/src/sections/_examples/mui/table-view/basic-table.jsx +0 -56
  921. package/minimal/src/sections/_examples/mui/table-view/collapsible-table.jsx +0 -143
  922. package/minimal/src/sections/_examples/mui/table-view/grouping-fixed-header-table.jsx +0 -135
  923. package/minimal/src/sections/_examples/mui/table-view/index.jsx +0 -75
  924. package/minimal/src/sections/_examples/mui/table-view/sorting-selecting-table.jsx +0 -187
  925. package/minimal/src/sections/_examples/mui/table-view/utils.js +0 -24
  926. package/minimal/src/sections/_examples/mui/tabs-view.jsx +0 -211
  927. package/minimal/src/sections/_examples/mui/textfield-view/index.jsx +0 -86
  928. package/minimal/src/sections/_examples/mui/textfield-view/textfield.jsx +0 -278
  929. package/minimal/src/sections/_examples/mui/timeline-view.jsx +0 -237
  930. package/minimal/src/sections/_examples/mui/tooltip-view.jsx +0 -184
  931. package/minimal/src/sections/_examples/mui/transfer-list-view/enhanced-transfer-list.jsx +0 -159
  932. package/minimal/src/sections/_examples/mui/transfer-list-view/index.jsx +0 -52
  933. package/minimal/src/sections/_examples/mui/transfer-list-view/simple-transfer-list.jsx +0 -154
  934. package/minimal/src/sections/_examples/view.jsx +0 -120
  935. package/minimal/src/sections/about/about-hero.jsx +0 -93
  936. package/minimal/src/sections/about/about-team.jsx +0 -158
  937. package/minimal/src/sections/about/about-testimonials.jsx +0 -202
  938. package/minimal/src/sections/about/about-vision.jsx +0 -105
  939. package/minimal/src/sections/about/about-what.jsx +0 -133
  940. package/minimal/src/sections/about/view/about-view.jsx +0 -23
  941. package/minimal/src/sections/about/view/index.js +0 -1
  942. package/minimal/src/sections/account/account-billing-address.jsx +0 -130
  943. package/minimal/src/sections/account/account-billing-history.jsx +0 -78
  944. package/minimal/src/sections/account/account-billing-payment.jsx +0 -60
  945. package/minimal/src/sections/account/account-billing-plan.jsx +0 -225
  946. package/minimal/src/sections/account/account-billing.jsx +0 -35
  947. package/minimal/src/sections/account/account-change-password.jsx +0 -125
  948. package/minimal/src/sections/account/account-general.jsx +0 -201
  949. package/minimal/src/sections/account/account-notifications.jsx +0 -131
  950. package/minimal/src/sections/account/account-social-links.jsx +0 -87
  951. package/minimal/src/sections/account/view/index.js +0 -1
  952. package/minimal/src/sections/account/view/user-account-view.jsx +0 -106
  953. package/minimal/src/sections/address/address-item.jsx +0 -61
  954. package/minimal/src/sections/address/address-list-dialog.jsx +0 -165
  955. package/minimal/src/sections/address/address-new-form.jsx +0 -176
  956. package/minimal/src/sections/address/index.js +0 -3
  957. package/minimal/src/sections/auth/amplify/amplify-forgot-password-view.jsx +0 -112
  958. package/minimal/src/sections/auth/amplify/amplify-login-view.jsx +0 -140
  959. package/minimal/src/sections/auth/amplify/amplify-new-password-view.jsx +0 -199
  960. package/minimal/src/sections/auth/amplify/amplify-register-view.jsx +0 -163
  961. package/minimal/src/sections/auth/amplify/amplify-verify-view.jsx +0 -154
  962. package/minimal/src/sections/auth/amplify/index.js +0 -5
  963. package/minimal/src/sections/auth/auth0/auth0-login-view.jsx +0 -120
  964. package/minimal/src/sections/auth/auth0/index.js +0 -1
  965. package/minimal/src/sections/auth/firebase/firebase-forgot-password-view.jsx +0 -112
  966. package/minimal/src/sections/auth/firebase/firebase-login-view.jsx +0 -198
  967. package/minimal/src/sections/auth/firebase/firebase-register-view.jsx +0 -220
  968. package/minimal/src/sections/auth/firebase/firebase-verify-view.jsx +0 -56
  969. package/minimal/src/sections/auth/firebase/index.js +0 -4
  970. package/minimal/src/sections/auth/jwt/index.js +0 -2
  971. package/minimal/src/sections/auth/jwt/jwt-login-view.jsx +0 -137
  972. package/minimal/src/sections/auth/jwt/jwt-register-view.jsx +0 -164
  973. package/minimal/src/sections/auth-demo/classic/classic-forgot-password-view.jsx +0 -100
  974. package/minimal/src/sections/auth-demo/classic/classic-login-view.jsx +0 -118
  975. package/minimal/src/sections/auth-demo/classic/classic-new-password-view.jsx +0 -167
  976. package/minimal/src/sections/auth-demo/classic/classic-register-view.jsx +0 -140
  977. package/minimal/src/sections/auth-demo/classic/classic-verify-view.jsx +0 -122
  978. package/minimal/src/sections/auth-demo/classic/index.js +0 -5
  979. package/minimal/src/sections/auth-demo/modern/index.js +0 -5
  980. package/minimal/src/sections/auth-demo/modern/modern-forgot-password-view.jsx +0 -102
  981. package/minimal/src/sections/auth-demo/modern/modern-login-view.jsx +0 -120
  982. package/minimal/src/sections/auth-demo/modern/modern-new-password-view.jsx +0 -167
  983. package/minimal/src/sections/auth-demo/modern/modern-register-view.jsx +0 -142
  984. package/minimal/src/sections/auth-demo/modern/modern-verify-view.jsx +0 -122
  985. package/minimal/src/sections/blank/view.jsx +0 -29
  986. package/minimal/src/sections/blog/post-comment-form.jsx +0 -80
  987. package/minimal/src/sections/blog/post-comment-item.jsx +0 -88
  988. package/minimal/src/sections/blog/post-comment-list.jsx +0 -55
  989. package/minimal/src/sections/blog/post-details-hero.jsx +0 -124
  990. package/minimal/src/sections/blog/post-details-preview.jsx +0 -96
  991. package/minimal/src/sections/blog/post-details-toolbar.jsx +0 -111
  992. package/minimal/src/sections/blog/post-item-horizontal.jsx +0 -183
  993. package/minimal/src/sections/blog/post-item.jsx +0 -203
  994. package/minimal/src/sections/blog/post-list-horizontal.jsx +0 -59
  995. package/minimal/src/sections/blog/post-list.jsx +0 -66
  996. package/minimal/src/sections/blog/post-new-edit-form.jsx +0 -315
  997. package/minimal/src/sections/blog/post-search.jsx +0 -129
  998. package/minimal/src/sections/blog/post-skeleton.jsx +0 -94
  999. package/minimal/src/sections/blog/post-sort.jsx +0 -56
  1000. package/minimal/src/sections/blog/view/index.js +0 -6
  1001. package/minimal/src/sections/blog/view/post-create-view.jsx +0 -40
  1002. package/minimal/src/sections/blog/view/post-details-home-view.jsx +0 -188
  1003. package/minimal/src/sections/blog/view/post-details-view.jsx +0 -172
  1004. package/minimal/src/sections/blog/view/post-edit-view.jsx +0 -50
  1005. package/minimal/src/sections/blog/view/post-list-home-view.jsx +0 -99
  1006. package/minimal/src/sections/blog/view/post-list-view.jsx +0 -187
  1007. package/minimal/src/sections/calendar/calendar-filters-result.jsx +0 -132
  1008. package/minimal/src/sections/calendar/calendar-filters.jsx +0 -217
  1009. package/minimal/src/sections/calendar/calendar-form.jsx +0 -198
  1010. package/minimal/src/sections/calendar/calendar-toolbar.jsx +0 -141
  1011. package/minimal/src/sections/calendar/hooks/index.js +0 -2
  1012. package/minimal/src/sections/calendar/hooks/use-calendar.js +0 -168
  1013. package/minimal/src/sections/calendar/hooks/use-event.js +0 -33
  1014. package/minimal/src/sections/calendar/styles.js +0 -163
  1015. package/minimal/src/sections/calendar/view/calendar-view.jsx +0 -265
  1016. package/minimal/src/sections/calendar/view/index.js +0 -1
  1017. package/minimal/src/sections/chat/chat-header-compose.jsx +0 -112
  1018. package/minimal/src/sections/chat/chat-header-detail.jsx +0 -84
  1019. package/minimal/src/sections/chat/chat-message-input.jsx +0 -153
  1020. package/minimal/src/sections/chat/chat-message-item.jsx +0 -153
  1021. package/minimal/src/sections/chat/chat-message-list.jsx +0 -50
  1022. package/minimal/src/sections/chat/chat-nav-account.jsx +0 -115
  1023. package/minimal/src/sections/chat/chat-nav-item.jsx +0 -152
  1024. package/minimal/src/sections/chat/chat-nav-search-results.jsx +0 -64
  1025. package/minimal/src/sections/chat/chat-nav.jsx +0 -264
  1026. package/minimal/src/sections/chat/chat-room-attachments.jsx +0 -125
  1027. package/minimal/src/sections/chat/chat-room-group.jsx +0 -106
  1028. package/minimal/src/sections/chat/chat-room-participant-dialog.jsx +0 -112
  1029. package/minimal/src/sections/chat/chat-room-single.jsx +0 -102
  1030. package/minimal/src/sections/chat/chat-room.jsx +0 -150
  1031. package/minimal/src/sections/chat/chat-skeleton.jsx +0 -33
  1032. package/minimal/src/sections/chat/hooks/index.js +0 -4
  1033. package/minimal/src/sections/chat/hooks/use-collapse-nav.js +0 -35
  1034. package/minimal/src/sections/chat/hooks/use-get-message.js +0 -25
  1035. package/minimal/src/sections/chat/hooks/use-get-nav-item.js +0 -38
  1036. package/minimal/src/sections/chat/hooks/use-messages-scroll.js +0 -33
  1037. package/minimal/src/sections/chat/view/chat-view.jsx +0 -145
  1038. package/minimal/src/sections/chat/view/index.js +0 -1
  1039. package/minimal/src/sections/checkout/checkout-billing-address.jsx +0 -92
  1040. package/minimal/src/sections/checkout/checkout-billing-info.jsx +0 -43
  1041. package/minimal/src/sections/checkout/checkout-cart-product-list.jsx +0 -58
  1042. package/minimal/src/sections/checkout/checkout-cart-product.jsx +0 -81
  1043. package/minimal/src/sections/checkout/checkout-cart.jsx +0 -88
  1044. package/minimal/src/sections/checkout/checkout-delivery.jsx +0 -103
  1045. package/minimal/src/sections/checkout/checkout-order-complete.jsx +0 -116
  1046. package/minimal/src/sections/checkout/checkout-payment-methods.jsx +0 -149
  1047. package/minimal/src/sections/checkout/checkout-payment.jsx +0 -140
  1048. package/minimal/src/sections/checkout/checkout-steps.jsx +0 -103
  1049. package/minimal/src/sections/checkout/checkout-summary.jsx +0 -112
  1050. package/minimal/src/sections/checkout/context/checkout-context.js +0 -13
  1051. package/minimal/src/sections/checkout/context/checkout-provider.jsx +0 -219
  1052. package/minimal/src/sections/checkout/context/index.js +0 -2
  1053. package/minimal/src/sections/checkout/view/checkout-view.jsx +0 -52
  1054. package/minimal/src/sections/checkout/view/index.js +0 -1
  1055. package/minimal/src/sections/coming-soon/view.jsx +0 -113
  1056. package/minimal/src/sections/contact/contact-form.jsx +0 -47
  1057. package/minimal/src/sections/contact/contact-hero.jsx +0 -129
  1058. package/minimal/src/sections/contact/contact-map.jsx +0 -100
  1059. package/minimal/src/sections/contact/view/contact-view.jsx +0 -33
  1060. package/minimal/src/sections/contact/view/index.js +0 -1
  1061. package/minimal/src/sections/error/403-view.jsx +0 -43
  1062. package/minimal/src/sections/error/500-view.jsx +0 -41
  1063. package/minimal/src/sections/error/index.js +0 -3
  1064. package/minimal/src/sections/error/not-found-view.jsx +0 -47
  1065. package/minimal/src/sections/faqs/faqs-category.jsx +0 -172
  1066. package/minimal/src/sections/faqs/faqs-form.jsx +0 -42
  1067. package/minimal/src/sections/faqs/faqs-hero.jsx +0 -111
  1068. package/minimal/src/sections/faqs/faqs-list.jsx +0 -28
  1069. package/minimal/src/sections/faqs/view/faqs-view.jsx +0 -50
  1070. package/minimal/src/sections/faqs/view/index.js +0 -1
  1071. package/minimal/src/sections/file-manager/file-data-activity.jsx +0 -125
  1072. package/minimal/src/sections/file-manager/file-manager-action-selected.jsx +0 -74
  1073. package/minimal/src/sections/file-manager/file-manager-file-details.jsx +0 -281
  1074. package/minimal/src/sections/file-manager/file-manager-file-item.jsx +0 -270
  1075. package/minimal/src/sections/file-manager/file-manager-filters-result.jsx +0 -115
  1076. package/minimal/src/sections/file-manager/file-manager-filters.jsx +0 -217
  1077. package/minimal/src/sections/file-manager/file-manager-folder-item.jsx +0 -309
  1078. package/minimal/src/sections/file-manager/file-manager-grid-view.jsx +0 -201
  1079. package/minimal/src/sections/file-manager/file-manager-invited-item.jsx +0 -113
  1080. package/minimal/src/sections/file-manager/file-manager-new-folder-dialog.jsx +0 -117
  1081. package/minimal/src/sections/file-manager/file-manager-panel.jsx +0 -81
  1082. package/minimal/src/sections/file-manager/file-manager-share-dialog.jsx +0 -95
  1083. package/minimal/src/sections/file-manager/file-manager-table-row.jsx +0 -287
  1084. package/minimal/src/sections/file-manager/file-manager-table.jsx +0 -208
  1085. package/minimal/src/sections/file-manager/file-recent-item.jsx +0 -240
  1086. package/minimal/src/sections/file-manager/file-storage-overview.jsx +0 -110
  1087. package/minimal/src/sections/file-manager/file-upgrade.jsx +0 -60
  1088. package/minimal/src/sections/file-manager/file-widget.jsx +0 -64
  1089. package/minimal/src/sections/file-manager/view/file-manager-view.jsx +0 -284
  1090. package/minimal/src/sections/file-manager/view/index.js +0 -1
  1091. package/minimal/src/sections/home/home-advertisement.jsx +0 -118
  1092. package/minimal/src/sections/home/home-clean-interfaces.jsx +0 -84
  1093. package/minimal/src/sections/home/home-color-presets.jsx +0 -156
  1094. package/minimal/src/sections/home/home-dark-mode.jsx +0 -80
  1095. package/minimal/src/sections/home/home-for-designer.jsx +0 -114
  1096. package/minimal/src/sections/home/home-hero.jsx +0 -425
  1097. package/minimal/src/sections/home/home-hugepack-elements.jsx +0 -473
  1098. package/minimal/src/sections/home/home-looking-for.jsx +0 -93
  1099. package/minimal/src/sections/home/home-minimal.jsx +0 -109
  1100. package/minimal/src/sections/home/home-pricing.jsx +0 -266
  1101. package/minimal/src/sections/home/view/home-view.jsx +0 -83
  1102. package/minimal/src/sections/home/view/index.js +0 -1
  1103. package/minimal/src/sections/invoice/invoice-analytic.jsx +0 -70
  1104. package/minimal/src/sections/invoice/invoice-details.jsx +0 -253
  1105. package/minimal/src/sections/invoice/invoice-new-edit-address.jsx +0 -131
  1106. package/minimal/src/sections/invoice/invoice-new-edit-details.jsx +0 -321
  1107. package/minimal/src/sections/invoice/invoice-new-edit-form.jsx +0 -157
  1108. package/minimal/src/sections/invoice/invoice-new-edit-status-date.jsx +0 -86
  1109. package/minimal/src/sections/invoice/invoice-pdf.jsx +0 -278
  1110. package/minimal/src/sections/invoice/invoice-table-filters-result.jsx +0 -126
  1111. package/minimal/src/sections/invoice/invoice-table-row.jsx +0 -186
  1112. package/minimal/src/sections/invoice/invoice-table-toolbar.jsx +0 -188
  1113. package/minimal/src/sections/invoice/invoice-toolbar.jsx +0 -140
  1114. package/minimal/src/sections/invoice/view/index.js +0 -4
  1115. package/minimal/src/sections/invoice/view/invoice-create-view.jsx +0 -40
  1116. package/minimal/src/sections/invoice/view/invoice-details-view.jsx +0 -46
  1117. package/minimal/src/sections/invoice/view/invoice-edit-view.jsx +0 -48
  1118. package/minimal/src/sections/invoice/view/invoice-list-view.jsx +0 -519
  1119. package/minimal/src/sections/job/job-details-candidates.jsx +0 -114
  1120. package/minimal/src/sections/job/job-details-content.jsx +0 -149
  1121. package/minimal/src/sections/job/job-details-toolbar.jsx +0 -111
  1122. package/minimal/src/sections/job/job-filters-result.jsx +0 -165
  1123. package/minimal/src/sections/job/job-filters.jsx +0 -315
  1124. package/minimal/src/sections/job/job-item.jsx +0 -160
  1125. package/minimal/src/sections/job/job-list.jsx +0 -74
  1126. package/minimal/src/sections/job/job-new-edit-form.jsx +0 -443
  1127. package/minimal/src/sections/job/job-search.jsx +0 -93
  1128. package/minimal/src/sections/job/job-sort.jsx +0 -63
  1129. package/minimal/src/sections/job/view/index.js +0 -4
  1130. package/minimal/src/sections/job/view/job-create-view.jsx +0 -38
  1131. package/minimal/src/sections/job/view/job-details-view.jsx +0 -85
  1132. package/minimal/src/sections/job/view/job-edit-view.jsx +0 -48
  1133. package/minimal/src/sections/job/view/job-list-view.jsx +0 -244
  1134. package/minimal/src/sections/kanban/kanban-column-add.jsx +0 -85
  1135. package/minimal/src/sections/kanban/kanban-column-tool-bar.jsx +0 -149
  1136. package/minimal/src/sections/kanban/kanban-column.jsx +0 -202
  1137. package/minimal/src/sections/kanban/kanban-contacts-dialog.jsx +0 -138
  1138. package/minimal/src/sections/kanban/kanban-details-attachments.jsx +0 -50
  1139. package/minimal/src/sections/kanban/kanban-details-comment-input.jsx +0 -47
  1140. package/minimal/src/sections/kanban/kanban-details-comment-list.jsx +0 -78
  1141. package/minimal/src/sections/kanban/kanban-details-priority.jsx +0 -62
  1142. package/minimal/src/sections/kanban/kanban-details-toolbar.jsx +0 -133
  1143. package/minimal/src/sections/kanban/kanban-details.jsx +0 -303
  1144. package/minimal/src/sections/kanban/kanban-input-name.jsx +0 -36
  1145. package/minimal/src/sections/kanban/kanban-skeleton.jsx +0 -39
  1146. package/minimal/src/sections/kanban/kanban-task-add.jsx +0 -94
  1147. package/minimal/src/sections/kanban/kanban-task-item.jsx +0 -169
  1148. package/minimal/src/sections/kanban/view/index.js +0 -1
  1149. package/minimal/src/sections/kanban/view/kanban-view.jsx +0 -182
  1150. package/minimal/src/sections/mail/mail-compose.jsx +0 -170
  1151. package/minimal/src/sections/mail/mail-details.jsx +0 -335
  1152. package/minimal/src/sections/mail/mail-header.jsx +0 -46
  1153. package/minimal/src/sections/mail/mail-item.jsx +0 -87
  1154. package/minimal/src/sections/mail/mail-list.jsx +0 -121
  1155. package/minimal/src/sections/mail/mail-nav-item.jsx +0 -75
  1156. package/minimal/src/sections/mail/mail-nav.jsx +0 -123
  1157. package/minimal/src/sections/mail/mail-skeleton.jsx +0 -59
  1158. package/minimal/src/sections/mail/view/index.js +0 -1
  1159. package/minimal/src/sections/mail/view/mail-view.jsx +0 -237
  1160. package/minimal/src/sections/maintenance/view.jsx +0 -29
  1161. package/minimal/src/sections/order/order-details-history.jsx +0 -109
  1162. package/minimal/src/sections/order/order-details-info.jsx +0 -169
  1163. package/minimal/src/sections/order/order-details-item.jsx +0 -138
  1164. package/minimal/src/sections/order/order-details-toolbar.jsx +0 -126
  1165. package/minimal/src/sections/order/order-table-filters-result.jsx +0 -108
  1166. package/minimal/src/sections/order/order-table-row.jsx +0 -229
  1167. package/minimal/src/sections/order/order-table-toolbar.jsx +0 -159
  1168. package/minimal/src/sections/order/view/index.js +0 -2
  1169. package/minimal/src/sections/order/view/order-details-view.jsx +0 -74
  1170. package/minimal/src/sections/order/view/order-list-view.jsx +0 -382
  1171. package/minimal/src/sections/overview/analytics/analytics-conversion-rates.jsx +0 -64
  1172. package/minimal/src/sections/overview/analytics/analytics-current-subject.jsx +0 -78
  1173. package/minimal/src/sections/overview/analytics/analytics-current-visits.jsx +0 -101
  1174. package/minimal/src/sections/overview/analytics/analytics-news.jsx +0 -95
  1175. package/minimal/src/sections/overview/analytics/analytics-order-timeline.jsx +0 -79
  1176. package/minimal/src/sections/overview/analytics/analytics-tasks.jsx +0 -135
  1177. package/minimal/src/sections/overview/analytics/analytics-traffic-by-site.jsx +0 -53
  1178. package/minimal/src/sections/overview/analytics/analytics-website-visits.jsx +0 -65
  1179. package/minimal/src/sections/overview/analytics/analytics-widget-summary.jsx +0 -59
  1180. package/minimal/src/sections/overview/analytics/view/index.js +0 -1
  1181. package/minimal/src/sections/overview/analytics/view/overview-analytics-view.jsx +0 -185
  1182. package/minimal/src/sections/overview/app/app-area-installed.jsx +0 -123
  1183. package/minimal/src/sections/overview/app/app-current-download.jsx +0 -103
  1184. package/minimal/src/sections/overview/app/app-featured.jsx +0 -118
  1185. package/minimal/src/sections/overview/app/app-new-invoice.jsx +0 -155
  1186. package/minimal/src/sections/overview/app/app-top-authors.jsx +0 -88
  1187. package/minimal/src/sections/overview/app/app-top-installed-countries.jsx +0 -74
  1188. package/minimal/src/sections/overview/app/app-top-related.jsx +0 -92
  1189. package/minimal/src/sections/overview/app/app-welcome.jsx +0 -83
  1190. package/minimal/src/sections/overview/app/app-widget-summary.jsx +0 -110
  1191. package/minimal/src/sections/overview/app/app-widget.jsx +0 -120
  1192. package/minimal/src/sections/overview/app/view/index.js +0 -1
  1193. package/minimal/src/sections/overview/app/view/overview-app-view.jsx +0 -205
  1194. package/minimal/src/sections/overview/banking/banking-balance-statistics.jsx +0 -113
  1195. package/minimal/src/sections/overview/banking/banking-contacts.jsx +0 -56
  1196. package/minimal/src/sections/overview/banking/banking-current-balance.jsx +0 -193
  1197. package/minimal/src/sections/overview/banking/banking-expenses-categories.jsx +0 -115
  1198. package/minimal/src/sections/overview/banking/banking-invite-friends.jsx +0 -78
  1199. package/minimal/src/sections/overview/banking/banking-quick-transfer.jsx +0 -368
  1200. package/minimal/src/sections/overview/banking/banking-recent-transitions.jsx +0 -223
  1201. package/minimal/src/sections/overview/banking/banking-widget-summary.jsx +0 -144
  1202. package/minimal/src/sections/overview/banking/view/index.js +0 -1
  1203. package/minimal/src/sections/overview/banking/view/overview-banking-view.jsx +0 -202
  1204. package/minimal/src/sections/overview/booking/booking-available.jsx +0 -109
  1205. package/minimal/src/sections/overview/booking/booking-booked.jsx +0 -56
  1206. package/minimal/src/sections/overview/booking/booking-check-in-widgets.jsx +0 -136
  1207. package/minimal/src/sections/overview/booking/booking-customer-reviews.jsx +0 -115
  1208. package/minimal/src/sections/overview/booking/booking-details.jsx +0 -204
  1209. package/minimal/src/sections/overview/booking/booking-newest.jsx +0 -156
  1210. package/minimal/src/sections/overview/booking/booking-statistics.jsx +0 -113
  1211. package/minimal/src/sections/overview/booking/booking-total-incomes.jsx +0 -137
  1212. package/minimal/src/sections/overview/booking/booking-widget-summary.jsx +0 -48
  1213. package/minimal/src/sections/overview/booking/view/index.js +0 -1
  1214. package/minimal/src/sections/overview/booking/view/overview-booking-view.jsx +0 -183
  1215. package/minimal/src/sections/overview/e-commerce/ecommerce-best-salesman.jsx +0 -94
  1216. package/minimal/src/sections/overview/e-commerce/ecommerce-current-balance.jsx +0 -70
  1217. package/minimal/src/sections/overview/e-commerce/ecommerce-latest-products.jsx +0 -84
  1218. package/minimal/src/sections/overview/e-commerce/ecommerce-new-products.jsx +0 -98
  1219. package/minimal/src/sections/overview/e-commerce/ecommerce-sale-by-gender.jsx +0 -102
  1220. package/minimal/src/sections/overview/e-commerce/ecommerce-sales-overview.jsx +0 -65
  1221. package/minimal/src/sections/overview/e-commerce/ecommerce-welcome.jsx +0 -83
  1222. package/minimal/src/sections/overview/e-commerce/ecommerce-widget-summary.jsx +0 -124
  1223. package/minimal/src/sections/overview/e-commerce/ecommerce-yearly-sales.jsx +0 -107
  1224. package/minimal/src/sections/overview/e-commerce/view/index.js +0 -1
  1225. package/minimal/src/sections/overview/e-commerce/view/overview-ecommerce-view.jsx +0 -188
  1226. package/minimal/src/sections/overview/file/view/index.js +0 -1
  1227. package/minimal/src/sections/overview/file/view/overview-file-view.jsx +0 -285
  1228. package/minimal/src/sections/payment/payment-billing-address.jsx +0 -20
  1229. package/minimal/src/sections/payment/payment-card-item.jsx +0 -78
  1230. package/minimal/src/sections/payment/payment-card-list-dialog.jsx +0 -116
  1231. package/minimal/src/sections/payment/payment-methods.jsx +0 -165
  1232. package/minimal/src/sections/payment/payment-new-card-dialog.jsx +0 -99
  1233. package/minimal/src/sections/payment/payment-summary.jsx +0 -103
  1234. package/minimal/src/sections/payment/view/index.js +0 -1
  1235. package/minimal/src/sections/payment/view/payment-view.jsx +0 -58
  1236. package/minimal/src/sections/permission/view.jsx +0 -82
  1237. package/minimal/src/sections/pricing/pricing-card.jsx +0 -151
  1238. package/minimal/src/sections/pricing/view.jsx +0 -84
  1239. package/minimal/src/sections/product/common/cart-icon.jsx +0 -44
  1240. package/minimal/src/sections/product/common/incrementer-button.jsx +0 -62
  1241. package/minimal/src/sections/product/product-details-carousel.jsx +0 -191
  1242. package/minimal/src/sections/product/product-details-description.jsx +0 -34
  1243. package/minimal/src/sections/product/product-details-review.jsx +0 -137
  1244. package/minimal/src/sections/product/product-details-summary.jsx +0 -355
  1245. package/minimal/src/sections/product/product-details-toolbar.jsx +0 -111
  1246. package/minimal/src/sections/product/product-filters-result.jsx +0 -170
  1247. package/minimal/src/sections/product/product-filters.jsx +0 -365
  1248. package/minimal/src/sections/product/product-item.jsx +0 -153
  1249. package/minimal/src/sections/product/product-list.jsx +0 -62
  1250. package/minimal/src/sections/product/product-new-edit-form.jsx +0 -452
  1251. package/minimal/src/sections/product/product-review-item.jsx +0 -123
  1252. package/minimal/src/sections/product/product-review-list.jsx +0 -33
  1253. package/minimal/src/sections/product/product-review-new-form.jsx +0 -115
  1254. package/minimal/src/sections/product/product-search.jsx +0 -131
  1255. package/minimal/src/sections/product/product-skeleton.jsx +0 -81
  1256. package/minimal/src/sections/product/product-sort.jsx +0 -58
  1257. package/minimal/src/sections/product/product-table-filters-result.jsx +0 -115
  1258. package/minimal/src/sections/product/product-table-row.jsx +0 -189
  1259. package/minimal/src/sections/product/product-table-toolbar.jsx +0 -191
  1260. package/minimal/src/sections/product/view/index.js +0 -6
  1261. package/minimal/src/sections/product/view/product-create-view.jsx +0 -38
  1262. package/minimal/src/sections/product/view/product-details-view.jsx +0 -193
  1263. package/minimal/src/sections/product/view/product-edit-view.jsx +0 -45
  1264. package/minimal/src/sections/product/view/product-list-view.jsx +0 -345
  1265. package/minimal/src/sections/product/view/product-shop-details-view.jsx +0 -200
  1266. package/minimal/src/sections/product/view/product-shop-view.jsx +0 -240
  1267. package/minimal/src/sections/tour/tour-details-bookers.jsx +0 -145
  1268. package/minimal/src/sections/tour/tour-details-content.jsx +0 -271
  1269. package/minimal/src/sections/tour/tour-details-toolbar.jsx +0 -111
  1270. package/minimal/src/sections/tour/tour-filters-result.jsx +0 -158
  1271. package/minimal/src/sections/tour/tour-filters.jsx +0 -298
  1272. package/minimal/src/sections/tour/tour-item.jsx +0 -227
  1273. package/minimal/src/sections/tour/tour-list.jsx +0 -74
  1274. package/minimal/src/sections/tour/tour-new-edit-form.jsx +0 -413
  1275. package/minimal/src/sections/tour/tour-search.jsx +0 -123
  1276. package/minimal/src/sections/tour/tour-sort.jsx +0 -63
  1277. package/minimal/src/sections/tour/view/index.js +0 -4
  1278. package/minimal/src/sections/tour/view/tour-create-view.jsx +0 -38
  1279. package/minimal/src/sections/tour/view/tour-details-view.jsx +0 -85
  1280. package/minimal/src/sections/tour/view/tour-edit-view.jsx +0 -48
  1281. package/minimal/src/sections/tour/view/tour-list-view.jsx +0 -252
  1282. package/minimal/src/sections/user/profile-cover.jsx +0 -77
  1283. package/minimal/src/sections/user/profile-followers.jsx +0 -121
  1284. package/minimal/src/sections/user/profile-friends.jsx +0 -180
  1285. package/minimal/src/sections/user/profile-gallery.jsx +0 -97
  1286. package/minimal/src/sections/user/profile-home.jsx +0 -201
  1287. package/minimal/src/sections/user/profile-post-item.jsx +0 -226
  1288. package/minimal/src/sections/user/user-card-list.jsx +0 -29
  1289. package/minimal/src/sections/user/user-card.jsx +0 -124
  1290. package/minimal/src/sections/user/user-new-edit-form.jsx +0 -285
  1291. package/minimal/src/sections/user/user-quick-edit-form.jsx +0 -177
  1292. package/minimal/src/sections/user/user-table-filters-result.jsx +0 -107
  1293. package/minimal/src/sections/user/user-table-row.jsx +0 -138
  1294. package/minimal/src/sections/user/user-table-toolbar.jsx +0 -150
  1295. package/minimal/src/sections/user/view/index.js +0 -5
  1296. package/minimal/src/sections/user/view/user-cards-view.jsx +0 -45
  1297. package/minimal/src/sections/user/view/user-create-view.jsx +0 -38
  1298. package/minimal/src/sections/user/view/user-edit-view.jsx +0 -48
  1299. package/minimal/src/sections/user/view/user-list-view.jsx +0 -367
  1300. package/minimal/src/sections/user/view/user-profile-view.jsx +0 -134
  1301. package/minimal/src/theme/css.js +0 -152
  1302. package/minimal/src/theme/custom-shadows.js +0 -32
  1303. package/minimal/src/theme/index.jsx +0 -80
  1304. package/minimal/src/theme/options/contrast.js +0 -34
  1305. package/minimal/src/theme/options/presets.js +0 -89
  1306. package/minimal/src/theme/options/right-to-left.jsx +0 -31
  1307. package/minimal/src/theme/overrides/components/accordion.js +0 -43
  1308. package/minimal/src/theme/overrides/components/alert.js +0 -68
  1309. package/minimal/src/theme/overrides/components/appbar.js +0 -13
  1310. package/minimal/src/theme/overrides/components/autocomplete.js +0 -44
  1311. package/minimal/src/theme/overrides/components/avatar.js +0 -103
  1312. package/minimal/src/theme/overrides/components/backdrop.js +0 -18
  1313. package/minimal/src/theme/overrides/components/badge.js +0 -90
  1314. package/minimal/src/theme/overrides/components/breadcrumbs.js +0 -21
  1315. package/minimal/src/theme/overrides/components/button-group.js +0 -90
  1316. package/minimal/src/theme/overrides/components/button.js +0 -139
  1317. package/minimal/src/theme/overrides/components/card.js +0 -30
  1318. package/minimal/src/theme/overrides/components/checkbox.js +0 -13
  1319. package/minimal/src/theme/overrides/components/chip.js +0 -123
  1320. package/minimal/src/theme/overrides/components/css-baseline.js +0 -48
  1321. package/minimal/src/theme/overrides/components/data-grid.js +0 -95
  1322. package/minimal/src/theme/overrides/components/date-picker.jsx +0 -83
  1323. package/minimal/src/theme/overrides/components/dialog.js +0 -49
  1324. package/minimal/src/theme/overrides/components/drawer.js +0 -36
  1325. package/minimal/src/theme/overrides/components/fab.js +0 -159
  1326. package/minimal/src/theme/overrides/components/list.js +0 -33
  1327. package/minimal/src/theme/overrides/components/loading-button.js +0 -30
  1328. package/minimal/src/theme/overrides/components/menu.js +0 -15
  1329. package/minimal/src/theme/overrides/components/pagination.js +0 -77
  1330. package/minimal/src/theme/overrides/components/paper.js +0 -18
  1331. package/minimal/src/theme/overrides/components/popover.js +0 -21
  1332. package/minimal/src/theme/overrides/components/progress.js +0 -40
  1333. package/minimal/src/theme/overrides/components/radio.js +0 -22
  1334. package/minimal/src/theme/overrides/components/rating.js +0 -40
  1335. package/minimal/src/theme/overrides/components/select.js +0 -26
  1336. package/minimal/src/theme/overrides/components/skeleton.js +0 -16
  1337. package/minimal/src/theme/overrides/components/slider.js +0 -30
  1338. package/minimal/src/theme/overrides/components/stepper.js +0 -13
  1339. package/minimal/src/theme/overrides/components/svg-icon.js +0 -15
  1340. package/minimal/src/theme/overrides/components/switch.js +0 -66
  1341. package/minimal/src/theme/overrides/components/table.js +0 -79
  1342. package/minimal/src/theme/overrides/components/tabs.js +0 -39
  1343. package/minimal/src/theme/overrides/components/textfield.js +0 -146
  1344. package/minimal/src/theme/overrides/components/timeline.js +0 -20
  1345. package/minimal/src/theme/overrides/components/toggle-button.js +0 -67
  1346. package/minimal/src/theme/overrides/components/tooltip.js +0 -18
  1347. package/minimal/src/theme/overrides/components/tree-view.js +0 -16
  1348. package/minimal/src/theme/overrides/components/typography.js +0 -16
  1349. package/minimal/src/theme/overrides/default-props.jsx +0 -239
  1350. package/minimal/src/theme/overrides/index.js +0 -98
  1351. package/minimal/src/theme/palette.js +0 -144
  1352. package/minimal/src/theme/shadows.js +0 -41
  1353. package/minimal/src/theme/typography.js +0 -107
  1354. package/minimal/src/utils/axios.js +0 -53
  1355. package/minimal/src/utils/change-case.js +0 -13
  1356. package/minimal/src/utils/flatten-array.js +0 -14
  1357. package/minimal/src/utils/format-number.js +0 -37
  1358. package/minimal/src/utils/format-time.js +0 -27
  1359. package/minimal/src/utils/highlight.js +0 -12
  1360. package/minimal/src/utils/storage-available.js +0 -24
  1361. package/minimal/src/utils/uuidv4.js +0 -10
  1362. package/minimal/vercel.json +0 -8
  1363. package/minimal/vite.config.js +0 -35
  1364. package/minimal/yarn.lock +0 -6748
  1365. /package/{components → src/lib}/AddItemWizard/AddItemWizard.jsx +0 -0
  1366. /package/{components → src/lib}/AddItemWizard/index.js +0 -0
  1367. /package/{components → src/lib}/SparkleInput/SparkleInput.jsx +0 -0
  1368. /package/{components → src/lib}/StepComponent/StepComponent.jsx +0 -0
  1369. /package/{components → src/lib}/lib/Icons.js +0 -0
  1370. /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>