@canmingir/link 1.1.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.
- package/.babelrc +3 -0
- package/.browserslistrc +1 -0
- package/.env +2 -0
- package/.eslintignore +3 -0
- package/.eslintrc.json +49 -0
- package/.gitattributes +1 -0
- package/.github/workflows/publish.yml +9 -0
- package/.prettierignore +1 -0
- package/.prettierrc +10 -0
- package/README.md +1 -0
- package/commands/index.js +111 -0
- package/commands/user.json +34 -0
- package/components/AddItemWizard/AddItemWizard.jsx +211 -0
- package/components/AddItemWizard/index.js +1 -0
- package/components/IconSelector/IconSelector.jsx +88 -0
- package/components/ItemSummary/ItemSummary.jsx +77 -0
- package/components/ItemSummary/ItemsSummary.jsx +163 -0
- package/components/ProjectWizard.jsx +137 -0
- package/components/SparkleInput/SparkleInput.jsx +51 -0
- package/components/StepComponent/StepComponent.jsx +98 -0
- package/components/index.js +2 -0
- package/components/lib/Icons.js +40 -0
- package/components/lib/context.json +272 -0
- package/cypress/cypress.js +12 -0
- package/index.js +1 -0
- package/minimal/.editorconfig +9 -0
- package/minimal/.eslintignore +22 -0
- package/minimal/.prettierignore +9 -0
- package/minimal/.prettierrc +6 -0
- package/minimal/README.md +13 -0
- package/minimal/index.html +44 -0
- package/minimal/jsconfig.json +5 -0
- package/minimal/package-lock.json +20845 -0
- package/minimal/package.json +104 -0
- package/minimal/public/_redirects +1 -0
- package/minimal/public/assets/background/overlay_1.svg +1 -0
- package/minimal/public/assets/background/overlay_2.jpg +0 -0
- package/minimal/public/assets/background/overlay_3.jpg +0 -0
- package/minimal/public/assets/background/overlay_4.jpg +0 -0
- package/minimal/public/assets/cyan-blur.png +0 -0
- package/minimal/public/assets/icons/app/ic_chrome.svg +6 -0
- package/minimal/public/assets/icons/app/ic_drive.svg +5 -0
- package/minimal/public/assets/icons/app/ic_dropbox.svg +3 -0
- package/minimal/public/assets/icons/app/ic_evernote.svg +3 -0
- package/minimal/public/assets/icons/app/ic_github.svg +3 -0
- package/minimal/public/assets/icons/app/ic_onedrive.svg +4 -0
- package/minimal/public/assets/icons/auth/ic_amplify.svg +12 -0
- package/minimal/public/assets/icons/auth/ic_auth0.svg +5 -0
- package/minimal/public/assets/icons/auth/ic_firebase.svg +12 -0
- package/minimal/public/assets/icons/auth/ic_jwt.svg +15 -0
- package/minimal/public/assets/icons/brands/ic_brand_amazon.svg +3 -0
- package/minimal/public/assets/icons/brands/ic_brand_hbo.svg +3 -0
- package/minimal/public/assets/icons/brands/ic_brand_ibm.svg +3 -0
- package/minimal/public/assets/icons/brands/ic_brand_lya.svg +3 -0
- package/minimal/public/assets/icons/brands/ic_brand_netflix.svg +3 -0
- package/minimal/public/assets/icons/brands/ic_brand_spotify.svg +3 -0
- package/minimal/public/assets/icons/components/ic_accordion.svg +11 -0
- package/minimal/public/assets/icons/components/ic_alert.svg +6 -0
- package/minimal/public/assets/icons/components/ic_autocomplete.svg +8 -0
- package/minimal/public/assets/icons/components/ic_avatar.svg +4 -0
- package/minimal/public/assets/icons/components/ic_badge.svg +7 -0
- package/minimal/public/assets/icons/components/ic_breadcrumbs.svg +4 -0
- package/minimal/public/assets/icons/components/ic_buttons.svg +4 -0
- package/minimal/public/assets/icons/components/ic_checkbox.svg +4 -0
- package/minimal/public/assets/icons/components/ic_chip.svg +5 -0
- package/minimal/public/assets/icons/components/ic_colors.svg +5 -0
- package/minimal/public/assets/icons/components/ic_data_grid.svg +12 -0
- package/minimal/public/assets/icons/components/ic_dialog.svg +8 -0
- package/minimal/public/assets/icons/components/ic_extra_animate.svg +26 -0
- package/minimal/public/assets/icons/components/ic_extra_carousel.svg +98 -0
- package/minimal/public/assets/icons/components/ic_extra_chart.svg +60 -0
- package/minimal/public/assets/icons/components/ic_extra_copy_to_clipboard.svg +24 -0
- package/minimal/public/assets/icons/components/ic_extra_editor.svg +45 -0
- package/minimal/public/assets/icons/components/ic_extra_form_validation.svg +112 -0
- package/minimal/public/assets/icons/components/ic_extra_image.svg +59 -0
- package/minimal/public/assets/icons/components/ic_extra_label.svg +40 -0
- package/minimal/public/assets/icons/components/ic_extra_lightbox.svg +97 -0
- package/minimal/public/assets/icons/components/ic_extra_map.svg +60 -0
- package/minimal/public/assets/icons/components/ic_extra_markdown.svg +40 -0
- package/minimal/public/assets/icons/components/ic_extra_mega_menu.svg +120 -0
- package/minimal/public/assets/icons/components/ic_extra_multi_language.svg +59 -0
- package/minimal/public/assets/icons/components/ic_extra_navigation_bar.svg +122 -0
- package/minimal/public/assets/icons/components/ic_extra_organization_chart.svg +101 -0
- package/minimal/public/assets/icons/components/ic_extra_scroll.svg +67 -0
- package/minimal/public/assets/icons/components/ic_extra_scroll_progress.svg +46 -0
- package/minimal/public/assets/icons/components/ic_extra_snackbar.svg +47 -0
- package/minimal/public/assets/icons/components/ic_extra_text_max_line.svg +100 -0
- package/minimal/public/assets/icons/components/ic_extra_upload.svg +40 -0
- package/minimal/public/assets/icons/components/ic_grid.svg +8 -0
- package/minimal/public/assets/icons/components/ic_icons.svg +4 -0
- package/minimal/public/assets/icons/components/ic_list.svg +12 -0
- package/minimal/public/assets/icons/components/ic_menu.svg +7 -0
- package/minimal/public/assets/icons/components/ic_pagination.svg +6 -0
- package/minimal/public/assets/icons/components/ic_pickers.svg +18 -0
- package/minimal/public/assets/icons/components/ic_popover.svg +6 -0
- package/minimal/public/assets/icons/components/ic_progress.svg +4 -0
- package/minimal/public/assets/icons/components/ic_radio_button.svg +4 -0
- package/minimal/public/assets/icons/components/ic_rating.svg +9 -0
- package/minimal/public/assets/icons/components/ic_shadows.svg +4 -0
- package/minimal/public/assets/icons/components/ic_slider.svg +5 -0
- package/minimal/public/assets/icons/components/ic_stepper.svg +6 -0
- package/minimal/public/assets/icons/components/ic_switch.svg +4 -0
- package/minimal/public/assets/icons/components/ic_table.svg +10 -0
- package/minimal/public/assets/icons/components/ic_tabs.svg +5 -0
- package/minimal/public/assets/icons/components/ic_textfield.svg +5 -0
- package/minimal/public/assets/icons/components/ic_timeline.svg +12 -0
- package/minimal/public/assets/icons/components/ic_tooltip.svg +7 -0
- package/minimal/public/assets/icons/components/ic_transfer_list.svg +13 -0
- package/minimal/public/assets/icons/components/ic_tree_view.svg +11 -0
- package/minimal/public/assets/icons/components/ic_typography.svg +4 -0
- package/minimal/public/assets/icons/empty/ic_cart.svg +76 -0
- package/minimal/public/assets/icons/empty/ic_content.svg +57 -0
- package/minimal/public/assets/icons/empty/ic_email_disabled.svg +44 -0
- package/minimal/public/assets/icons/empty/ic_email_selected.svg +57 -0
- package/minimal/public/assets/icons/empty/ic_folder_empty.svg +32 -0
- package/minimal/public/assets/icons/empty/ic_mail.svg +56 -0
- package/minimal/public/assets/icons/faqs/ic_account.svg +34 -0
- package/minimal/public/assets/icons/faqs/ic_assurances.svg +33 -0
- package/minimal/public/assets/icons/faqs/ic_delivery.svg +30 -0
- package/minimal/public/assets/icons/faqs/ic_package.svg +29 -0
- package/minimal/public/assets/icons/faqs/ic_payment.svg +33 -0
- package/minimal/public/assets/icons/faqs/ic_refund.svg +31 -0
- package/minimal/public/assets/icons/files/ic_ai.svg +25 -0
- package/minimal/public/assets/icons/files/ic_audio.svg +24 -0
- package/minimal/public/assets/icons/files/ic_document.svg +19 -0
- package/minimal/public/assets/icons/files/ic_excel.svg +19 -0
- package/minimal/public/assets/icons/files/ic_file.svg +18 -0
- package/minimal/public/assets/icons/files/ic_folder.svg +5 -0
- package/minimal/public/assets/icons/files/ic_img.svg +26 -0
- package/minimal/public/assets/icons/files/ic_js.svg +12 -0
- package/minimal/public/assets/icons/files/ic_pdf.svg +19 -0
- package/minimal/public/assets/icons/files/ic_power_point.svg +20 -0
- package/minimal/public/assets/icons/files/ic_pts.svg +25 -0
- package/minimal/public/assets/icons/files/ic_txt.svg +26 -0
- package/minimal/public/assets/icons/files/ic_video.svg +20 -0
- package/minimal/public/assets/icons/files/ic_word.svg +19 -0
- package/minimal/public/assets/icons/files/ic_zip.svg +27 -0
- package/minimal/public/assets/icons/glass/ic_glass_bag.png +0 -0
- package/minimal/public/assets/icons/glass/ic_glass_buy.png +0 -0
- package/minimal/public/assets/icons/glass/ic_glass_message.png +0 -0
- package/minimal/public/assets/icons/glass/ic_glass_users.png +0 -0
- package/minimal/public/assets/icons/home/ic_design.svg +6 -0
- package/minimal/public/assets/icons/home/ic_development.svg +5 -0
- package/minimal/public/assets/icons/home/ic_make_brand.svg +6 -0
- package/minimal/public/assets/icons/navbar/ic_analytics.svg +8 -0
- package/minimal/public/assets/icons/navbar/ic_banking.svg +10 -0
- package/minimal/public/assets/icons/navbar/ic_blank.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_blog.svg +7 -0
- package/minimal/public/assets/icons/navbar/ic_booking.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_calendar.svg +5 -0
- package/minimal/public/assets/icons/navbar/ic_chat.svg +6 -0
- package/minimal/public/assets/icons/navbar/ic_dashboard.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_disabled.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_ecommerce.svg +5 -0
- package/minimal/public/assets/icons/navbar/ic_external.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_file.svg +6 -0
- package/minimal/public/assets/icons/navbar/ic_folder.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_invoice.svg +5 -0
- package/minimal/public/assets/icons/navbar/ic_job.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_kanban.svg +5 -0
- package/minimal/public/assets/icons/navbar/ic_label.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_lock.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_mail.svg +6 -0
- package/minimal/public/assets/icons/navbar/ic_menu_item.svg +5 -0
- package/minimal/public/assets/icons/navbar/ic_order.svg +7 -0
- package/minimal/public/assets/icons/navbar/ic_product.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_tour.svg +4 -0
- package/minimal/public/assets/icons/navbar/ic_user.svg +4 -0
- package/minimal/public/assets/icons/notification/ic_chat.svg +28 -0
- package/minimal/public/assets/icons/notification/ic_delivery.svg +20 -0
- package/minimal/public/assets/icons/notification/ic_mail.svg +15 -0
- package/minimal/public/assets/icons/notification/ic_order.svg +45 -0
- package/minimal/public/assets/icons/platforms/ic_figma.svg +7 -0
- package/minimal/public/assets/icons/platforms/ic_js.svg +4 -0
- package/minimal/public/assets/icons/platforms/ic_nextjs.svg +3 -0
- package/minimal/public/assets/icons/platforms/ic_ts.svg +4 -0
- package/minimal/public/assets/icons/platforms/ic_vite.svg +15 -0
- package/minimal/public/assets/icons/setting/ic_align_left.svg +7 -0
- package/minimal/public/assets/icons/setting/ic_align_right.svg +7 -0
- package/minimal/public/assets/icons/setting/ic_collapse.svg +4 -0
- package/minimal/public/assets/icons/setting/ic_contrast.svg +5 -0
- package/minimal/public/assets/icons/setting/ic_contrast_bold.svg +4 -0
- package/minimal/public/assets/icons/setting/ic_exit_full_screen.svg +6 -0
- package/minimal/public/assets/icons/setting/ic_full_screen.svg +6 -0
- package/minimal/public/assets/icons/setting/ic_moon.svg +4 -0
- package/minimal/public/assets/icons/setting/ic_setting.svg +6 -0
- package/minimal/public/assets/icons/setting/ic_sun.svg +13 -0
- package/minimal/public/assets/illustrations/characters/character_1.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_10.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_11.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_2.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_3.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_4.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_5.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_6.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_7.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_8.png +0 -0
- package/minimal/public/assets/illustrations/characters/character_9.png +0 -0
- package/minimal/public/assets/illustrations/illustration_dashboard.png +0 -0
- package/minimal/public/assets/images/about/hero.jpg +0 -0
- package/minimal/public/assets/images/about/testimonials.jpg +0 -0
- package/minimal/public/assets/images/about/vision.jpg +0 -0
- package/minimal/public/assets/images/about/what_1.png +0 -0
- package/minimal/public/assets/images/about/what_2.png +0 -0
- package/minimal/public/assets/images/contact/hero.jpg +0 -0
- package/minimal/public/assets/images/faqs/hero.jpg +0 -0
- package/minimal/public/assets/images/home/clean/page_1.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_10.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_2.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_3.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_4.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_5.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_6.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_7.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_8.webp +0 -0
- package/minimal/public/assets/images/home/clean/page_9.webp +0 -0
- package/minimal/public/assets/images/home/darkmode.webp +0 -0
- package/minimal/public/assets/images/home/for_designer.webp +0 -0
- package/minimal/public/assets/images/home/hero/dark_1.webp +0 -0
- package/minimal/public/assets/images/home/hero/dark_2.webp +0 -0
- package/minimal/public/assets/images/home/hero/light_1.webp +0 -0
- package/minimal/public/assets/images/home/hero/light_2.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_blue.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_cyan.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_default.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_orange.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_purple.webp +0 -0
- package/minimal/public/assets/images/home/presets/block_red.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_blue.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_cyan.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_default.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_orange.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_purple.webp +0 -0
- package/minimal/public/assets/images/home/presets/chart_red.webp +0 -0
- package/minimal/public/assets/images/home/presets/grid.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_blue.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_cyan.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_default.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_orange.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_purple.webp +0 -0
- package/minimal/public/assets/images/home/presets/screen_red.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_blue.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_cyan.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_default.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_orange.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_purple.webp +0 -0
- package/minimal/public/assets/images/home/presets/sidebar_red.webp +0 -0
- package/minimal/public/assets/images/home/rocket.webp +0 -0
- package/minimal/public/assets/images/home/zone_landing.webp +0 -0
- package/minimal/public/assets/placeholder.svg +8 -0
- package/minimal/public/assets/red-blur.png +0 -0
- package/minimal/public/assets/transparent.png +0 -0
- package/minimal/public/favicon/android-chrome-192x192.png +0 -0
- package/minimal/public/favicon/android-chrome-512x512.png +0 -0
- package/minimal/public/favicon/apple-touch-icon.png +0 -0
- package/minimal/public/favicon/favicon-16x16.png +0 -0
- package/minimal/public/favicon/favicon-32x32.png +0 -0
- package/minimal/public/favicon/favicon.ico +0 -0
- package/minimal/public/fonts/CircularStd-Bold.otf +0 -0
- package/minimal/public/fonts/CircularStd-Book.otf +0 -0
- package/minimal/public/fonts/CircularStd-Medium.otf +0 -0
- package/minimal/public/fonts/Roboto-Bold.ttf +0 -0
- package/minimal/public/fonts/Roboto-Regular.ttf +0 -0
- package/minimal/public/fonts/index.css +22 -0
- package/minimal/public/logo/logo_full.svg +1 -0
- package/minimal/public/logo/logo_single.png +0 -0
- package/minimal/public/logo/logo_single.svg +1 -0
- package/minimal/public/manifest.json +20 -0
- package/minimal/public/robots.txt +3 -0
- package/minimal/src/_mock/_blog.js +16 -0
- package/minimal/src/_mock/_calendar.js +14 -0
- package/minimal/src/_mock/_files.js +123 -0
- package/minimal/src/_mock/_invoice.js +65 -0
- package/minimal/src/_mock/_job.js +172 -0
- package/minimal/src/_mock/_mock.js +75 -0
- package/minimal/src/_mock/_order.js +95 -0
- package/minimal/src/_mock/_others.js +253 -0
- package/minimal/src/_mock/_overview.js +330 -0
- package/minimal/src/_mock/_product.js +88 -0
- package/minimal/src/_mock/_tour.js +150 -0
- package/minimal/src/_mock/_user.js +157 -0
- package/minimal/src/_mock/assets.js +527 -0
- package/minimal/src/_mock/index.js +16 -0
- package/minimal/src/_mock/map/cities.js +182 -0
- package/minimal/src/_mock/map/countries.js +86 -0
- package/minimal/src/_mock/map/map-style-basic-v8.json +554 -0
- package/minimal/src/api/blog.js +89 -0
- package/minimal/src/api/calendar.js +115 -0
- package/minimal/src/api/chat.js +206 -0
- package/minimal/src/api/kanban.js +401 -0
- package/minimal/src/api/mail.js +72 -0
- package/minimal/src/api/product.js +68 -0
- package/minimal/src/app.jsx +74 -0
- package/minimal/src/assets/data/countries.js +425 -0
- package/minimal/src/assets/data/index.js +1 -0
- package/minimal/src/assets/icons/email-inbox-icon.jsx +140 -0
- package/minimal/src/assets/icons/index.js +6 -0
- package/minimal/src/assets/icons/password-icon.jsx +107 -0
- package/minimal/src/assets/icons/plan-free-icon.jsx +49 -0
- package/minimal/src/assets/icons/plan-premium-icon.jsx +86 -0
- package/minimal/src/assets/icons/plan-starter-icon.jsx +73 -0
- package/minimal/src/assets/icons/sent-icon.jsx +73 -0
- package/minimal/src/assets/illustrations/avatar-shape.jsx +36 -0
- package/minimal/src/assets/illustrations/background-shape.jsx +31 -0
- package/minimal/src/assets/illustrations/booking-illustration.jsx +307 -0
- package/minimal/src/assets/illustrations/check-in-illustration.jsx +96 -0
- package/minimal/src/assets/illustrations/check-out-illustration.jsx +69 -0
- package/minimal/src/assets/illustrations/coming-soon-illustration.jsx +118 -0
- package/minimal/src/assets/illustrations/forbidden-illustration.jsx +88 -0
- package/minimal/src/assets/illustrations/index.js +15 -0
- package/minimal/src/assets/illustrations/maintenance-illustration.jsx +215 -0
- package/minimal/src/assets/illustrations/motivation-illustration.jsx +70 -0
- package/minimal/src/assets/illustrations/order-complete-illustration.jsx +122 -0
- package/minimal/src/assets/illustrations/page-not-found-illustration.jsx +74 -0
- package/minimal/src/assets/illustrations/seo-illustration.jsx +234 -0
- package/minimal/src/assets/illustrations/sever-error-illustration.jsx +148 -0
- package/minimal/src/assets/illustrations/upgrade-storage-illustration.jsx +157 -0
- package/minimal/src/assets/illustrations/upload-illustration.jsx +617 -0
- package/minimal/src/auth/context/amplify/auth-consumer.jsx +19 -0
- package/minimal/src/auth/context/amplify/auth-context.js +5 -0
- package/minimal/src/auth/context/amplify/auth-provider.jsx +183 -0
- package/minimal/src/auth/context/amplify/index.js +3 -0
- package/minimal/src/auth/context/auth0/auth-consumer.jsx +19 -0
- package/minimal/src/auth/context/auth0/auth-context.js +5 -0
- package/minimal/src/auth/context/auth0/auth-provider.jsx +101 -0
- package/minimal/src/auth/context/auth0/index.js +3 -0
- package/minimal/src/auth/context/firebase/auth-consumer.jsx +19 -0
- package/minimal/src/auth/context/firebase/auth-context.js +5 -0
- package/minimal/src/auth/context/firebase/auth-provider.jsx +202 -0
- package/minimal/src/auth/context/firebase/index.js +3 -0
- package/minimal/src/auth/context/jwt/auth-consumer.jsx +19 -0
- package/minimal/src/auth/context/jwt/auth-context.js +5 -0
- package/minimal/src/auth/context/jwt/auth-provider.jsx +184 -0
- package/minimal/src/auth/context/jwt/index.js +3 -0
- package/minimal/src/auth/context/jwt/utils.js +74 -0
- package/minimal/src/auth/guard/auth-guard.jsx +71 -0
- package/minimal/src/auth/guard/guest-guard.jsx +49 -0
- package/minimal/src/auth/guard/index.js +3 -0
- package/minimal/src/auth/guard/role-based-guard.jsx +57 -0
- package/minimal/src/auth/hooks/index.js +1 -0
- package/minimal/src/auth/hooks/use-auth-context.js +16 -0
- package/minimal/src/components/animate/index.js +6 -0
- package/minimal/src/components/animate/motion-container.jsx +43 -0
- package/minimal/src/components/animate/motion-lazy.jsx +16 -0
- package/minimal/src/components/animate/motion-viewport.jsx +36 -0
- package/minimal/src/components/animate/variants/actions.js +6 -0
- package/minimal/src/components/animate/variants/background.js +103 -0
- package/minimal/src/components/animate/variants/bounce.js +111 -0
- package/minimal/src/components/animate/variants/container.js +22 -0
- package/minimal/src/components/animate/variants/fade.js +131 -0
- package/minimal/src/components/animate/variants/flip.js +58 -0
- package/minimal/src/components/animate/variants/index.js +12 -0
- package/minimal/src/components/animate/variants/path.js +14 -0
- package/minimal/src/components/animate/variants/rotate.js +37 -0
- package/minimal/src/components/animate/variants/scale.js +58 -0
- package/minimal/src/components/animate/variants/slide.js +69 -0
- package/minimal/src/components/animate/variants/transition.js +22 -0
- package/minimal/src/components/animate/variants/zoom.js +134 -0
- package/minimal/src/components/carousel/arrow-icons.jsx +42 -0
- package/minimal/src/components/carousel/carousel-arrow-index.jsx +69 -0
- package/minimal/src/components/carousel/carousel-arrows.jsx +127 -0
- package/minimal/src/components/carousel/carousel-dots.jsx +85 -0
- package/minimal/src/components/carousel/index.js +9 -0
- package/minimal/src/components/carousel/use-carousel.js +65 -0
- package/minimal/src/components/chart/chart.js +67 -0
- package/minimal/src/components/chart/index.js +5 -0
- package/minimal/src/components/chart/use-chart.js +216 -0
- package/minimal/src/components/color-utils/color-picker.jsx +111 -0
- package/minimal/src/components/color-utils/color-preview.jsx +42 -0
- package/minimal/src/components/color-utils/index.js +2 -0
- package/minimal/src/components/custom-breadcrumbs/custom-breadcrumbs.jsx +97 -0
- package/minimal/src/components/custom-breadcrumbs/index.js +1 -0
- package/minimal/src/components/custom-breadcrumbs/link-item.jsx +62 -0
- package/minimal/src/components/custom-date-range-picker/custom-date-range-picker.jsx +130 -0
- package/minimal/src/components/custom-date-range-picker/index.js +5 -0
- package/minimal/src/components/custom-date-range-picker/use-date-range-picker.js +65 -0
- package/minimal/src/components/custom-date-range-picker/utils.js +32 -0
- package/minimal/src/components/custom-dialog/confirm-dialog.jsx +35 -0
- package/minimal/src/components/custom-dialog/index.js +1 -0
- package/minimal/src/components/custom-popover/custom-popover.jsx +72 -0
- package/minimal/src/components/custom-popover/index.js +3 -0
- package/minimal/src/components/custom-popover/styles.js +82 -0
- package/minimal/src/components/custom-popover/use-popover.js +22 -0
- package/minimal/src/components/custom-popover/utils.js +100 -0
- package/minimal/src/components/editor/editor.jsx +71 -0
- package/minimal/src/components/editor/index.js +1 -0
- package/minimal/src/components/editor/styles.js +180 -0
- package/minimal/src/components/editor/toolbar.jsx +108 -0
- package/minimal/src/components/empty-content/empty-content.jsx +63 -0
- package/minimal/src/components/empty-content/index.js +1 -0
- package/minimal/src/components/file-thumbnail/download-button.jsx +49 -0
- package/minimal/src/components/file-thumbnail/file-thumbnail.jsx +78 -0
- package/minimal/src/components/file-thumbnail/index.js +5 -0
- package/minimal/src/components/file-thumbnail/utils.js +148 -0
- package/minimal/src/components/hook-form/form-provider.jsx +18 -0
- package/minimal/src/components/hook-form/index.js +13 -0
- package/minimal/src/components/hook-form/rhf-autocomplete.jsx +41 -0
- package/minimal/src/components/hook-form/rhf-checkbox.jsx +113 -0
- package/minimal/src/components/hook-form/rhf-code.jsx +43 -0
- package/minimal/src/components/hook-form/rhf-editor.jsx +56 -0
- package/minimal/src/components/hook-form/rhf-radio-group.jsx +78 -0
- package/minimal/src/components/hook-form/rhf-select.jsx +151 -0
- package/minimal/src/components/hook-form/rhf-slider.jsx +32 -0
- package/minimal/src/components/hook-form/rhf-switch.jsx +33 -0
- package/minimal/src/components/hook-form/rhf-text-field.jsx +41 -0
- package/minimal/src/components/hook-form/rhf-upload.jsx +105 -0
- package/minimal/src/components/iconify/iconify.jsx +26 -0
- package/minimal/src/components/iconify/index.js +1 -0
- package/minimal/src/components/image/image.jsx +141 -0
- package/minimal/src/components/image/index.js +1 -0
- package/minimal/src/components/image/utils.js +15 -0
- package/minimal/src/components/index.js +214 -0
- package/minimal/src/components/label/index.js +1 -0
- package/minimal/src/components/label/label.jsx +61 -0
- package/minimal/src/components/label/styles.js +77 -0
- package/minimal/src/components/lightbox/index.js +5 -0
- package/minimal/src/components/lightbox/lightbox.jsx +152 -0
- package/minimal/src/components/lightbox/styles.jsx +52 -0
- package/minimal/src/components/lightbox/use-light-box.js +30 -0
- package/minimal/src/components/loading-screen/index.js +2 -0
- package/minimal/src/components/loading-screen/loading-screen.jsx +30 -0
- package/minimal/src/components/loading-screen/splash-screen.jsx +100 -0
- package/minimal/src/components/logo/index.js +1 -0
- package/minimal/src/components/logo/logo.jsx +95 -0
- package/minimal/src/components/map/index.js +5 -0
- package/minimal/src/components/map/map-control.jsx +36 -0
- package/minimal/src/components/map/map-marker.jsx +33 -0
- package/minimal/src/components/map/map-popup.jsx +18 -0
- package/minimal/src/components/map/styles.jsx +107 -0
- package/minimal/src/components/markdown/index.js +1 -0
- package/minimal/src/components/markdown/markdown.jsx +51 -0
- package/minimal/src/components/markdown/styles.js +146 -0
- package/minimal/src/components/mega-menu/common/menu-more-link.jsx +33 -0
- package/minimal/src/components/mega-menu/common/menu-products.jsx +81 -0
- package/minimal/src/components/mega-menu/common/menu-tags.jsx +47 -0
- package/minimal/src/components/mega-menu/common/nav-sub-list.jsx +64 -0
- package/minimal/src/components/mega-menu/horizontal/mega-menu-desktop-horizontal.jsx +33 -0
- package/minimal/src/components/mega-menu/horizontal/nav-item.jsx +104 -0
- package/minimal/src/components/mega-menu/horizontal/nav-list.jsx +169 -0
- package/minimal/src/components/mega-menu/index.js +3 -0
- package/minimal/src/components/mega-menu/mobile/mega-menu-mobile.jsx +22 -0
- package/minimal/src/components/mega-menu/mobile/nav-item.jsx +95 -0
- package/minimal/src/components/mega-menu/mobile/nav-list.jsx +218 -0
- package/minimal/src/components/mega-menu/vertical/mega-menu-desktop-vertical.jsx +31 -0
- package/minimal/src/components/mega-menu/vertical/nav-item.jsx +99 -0
- package/minimal/src/components/mega-menu/vertical/nav-list.jsx +124 -0
- package/minimal/src/components/nav-basic/desktop/nav-basic-desktop.jsx +25 -0
- package/minimal/src/components/nav-basic/desktop/nav-item.jsx +166 -0
- package/minimal/src/components/nav-basic/desktop/nav-list.jsx +122 -0
- package/minimal/src/components/nav-basic/index.js +2 -0
- package/minimal/src/components/nav-basic/mobile/nav-basic-mobile.jsx +25 -0
- package/minimal/src/components/nav-basic/mobile/nav-item.jsx +171 -0
- package/minimal/src/components/nav-basic/mobile/nav-list.jsx +87 -0
- package/minimal/src/components/nav-section/horizontal/index.js +1 -0
- package/minimal/src/components/nav-section/horizontal/nav-item.jsx +246 -0
- package/minimal/src/components/nav-section/horizontal/nav-list.jsx +126 -0
- package/minimal/src/components/nav-section/horizontal/nav-section-horizontal.jsx +54 -0
- package/minimal/src/components/nav-section/index.js +3 -0
- package/minimal/src/components/nav-section/mini/index.js +1 -0
- package/minimal/src/components/nav-section/mini/nav-item.jsx +260 -0
- package/minimal/src/components/nav-section/mini/nav-list.jsx +119 -0
- package/minimal/src/components/nav-section/mini/nav-section-mini.jsx +42 -0
- package/minimal/src/components/nav-section/vertical/index.js +1 -0
- package/minimal/src/components/nav-section/vertical/nav-item.jsx +298 -0
- package/minimal/src/components/nav-section/vertical/nav-list.jsx +95 -0
- package/minimal/src/components/nav-section/vertical/nav-section-vertical.jsx +89 -0
- package/minimal/src/components/organizational-chart/common/group-node.jsx +115 -0
- package/minimal/src/components/organizational-chart/common/simple-node.jsx +32 -0
- package/minimal/src/components/organizational-chart/common/standard-node.jsx +95 -0
- package/minimal/src/components/organizational-chart/index.js +1 -0
- package/minimal/src/components/organizational-chart/organizational-chart.jsx +106 -0
- package/minimal/src/components/progress-bar/index.js +3 -0
- package/minimal/src/components/progress-bar/progress-bar.jsx +48 -0
- package/minimal/src/components/progress-bar/styles.jsx +40 -0
- package/minimal/src/components/scroll-progress/index.js +1 -0
- package/minimal/src/components/scroll-progress/scroll-progress.jsx +58 -0
- package/minimal/src/components/scrollbar/index.js +1 -0
- package/minimal/src/components/scrollbar/scrollbar.jsx +44 -0
- package/minimal/src/components/scrollbar/styles.js +26 -0
- package/minimal/src/components/search-not-found/index.js +1 -0
- package/minimal/src/components/search-not-found/search-not-found.jsx +38 -0
- package/minimal/src/components/settings/context/index.js +2 -0
- package/minimal/src/components/settings/context/settings-context.js +13 -0
- package/minimal/src/components/settings/context/settings-provider.jsx +80 -0
- package/minimal/src/components/settings/drawer/base-option.jsx +59 -0
- package/minimal/src/components/settings/drawer/fullscreen-option.jsx +57 -0
- package/minimal/src/components/settings/drawer/index.js +1 -0
- package/minimal/src/components/settings/drawer/layout-options.jsx +153 -0
- package/minimal/src/components/settings/drawer/presets-options.jsx +55 -0
- package/minimal/src/components/settings/drawer/settings-drawer.jsx +193 -0
- package/minimal/src/components/settings/drawer/stretch-options.jsx +70 -0
- package/minimal/src/components/settings/index.js +3 -0
- package/minimal/src/components/snackbar/index.js +3 -0
- package/minimal/src/components/snackbar/snackbar-provider.jsx +73 -0
- package/minimal/src/components/snackbar/styles.js +47 -0
- package/minimal/src/components/svg-color/index.js +1 -0
- package/minimal/src/components/svg-color/svg-color.jsx +31 -0
- package/minimal/src/components/table/index.js +10 -0
- package/minimal/src/components/table/table-empty-rows.jsx +29 -0
- package/minimal/src/components/table/table-head-custom.jsx +90 -0
- package/minimal/src/components/table/table-no-data.jsx +34 -0
- package/minimal/src/components/table/table-pagination-custom.jsx +51 -0
- package/minimal/src/components/table/table-selected-action.jsx +75 -0
- package/minimal/src/components/table/table-skeleton.jsx +23 -0
- package/minimal/src/components/table/use-table.js +123 -0
- package/minimal/src/components/table/utils.js +27 -0
- package/minimal/src/components/text-max-line/index.js +3 -0
- package/minimal/src/components/text-max-line/text-max-line.jsx +67 -0
- package/minimal/src/components/text-max-line/use-typography.js +38 -0
- package/minimal/src/components/upload/errors-rejection-files.jsx +55 -0
- package/minimal/src/components/upload/index.js +8 -0
- package/minimal/src/components/upload/preview-multi-file.jsx +121 -0
- package/minimal/src/components/upload/preview-single-file.jsx +36 -0
- package/minimal/src/components/upload/upload-avatar.jsx +151 -0
- package/minimal/src/components/upload/upload-box.jsx +65 -0
- package/minimal/src/components/upload/upload.jsx +186 -0
- package/minimal/src/config-global.js +34 -0
- package/minimal/src/global.css +20 -0
- package/minimal/src/hooks/use-boolean.js +27 -0
- package/minimal/src/hooks/use-copy-to-clipboard.js +27 -0
- package/minimal/src/hooks/use-countdown.js +78 -0
- package/minimal/src/hooks/use-debounce.js +19 -0
- package/minimal/src/hooks/use-double-click.js +29 -0
- package/minimal/src/hooks/use-event-listener.js +33 -0
- package/minimal/src/hooks/use-local-storage.js +89 -0
- package/minimal/src/hooks/use-mocked-user.js +34 -0
- package/minimal/src/hooks/use-off-set-top.js +36 -0
- package/minimal/src/hooks/use-responsive.js +47 -0
- package/minimal/src/hooks/use-scroll-to-top.js +14 -0
- package/minimal/src/layouts/auth/classic.jsx +158 -0
- package/minimal/src/layouts/auth/modern-compact.jsx +56 -0
- package/minimal/src/layouts/auth/modern.jsx +95 -0
- package/minimal/src/layouts/common/account-popover.jsx +132 -0
- package/minimal/src/layouts/common/contacts-popover.jsx +73 -0
- package/minimal/src/layouts/common/header-shadow.jsx +31 -0
- package/minimal/src/layouts/common/header-simple.jsx +69 -0
- package/minimal/src/layouts/common/language-popover.jsx +64 -0
- package/minimal/src/layouts/common/login-button.jsx +21 -0
- package/minimal/src/layouts/common/nav-toggle-button.jsx +63 -0
- package/minimal/src/layouts/common/nav-upgrade.jsx +61 -0
- package/minimal/src/layouts/common/notifications-popover/index.jsx +191 -0
- package/minimal/src/layouts/common/notifications-popover/notification-item.jsx +246 -0
- package/minimal/src/layouts/common/searchbar/index.jsx +171 -0
- package/minimal/src/layouts/common/searchbar/result-item.jsx +69 -0
- package/minimal/src/layouts/common/searchbar/utils.js +86 -0
- package/minimal/src/layouts/common/settings-button.jsx +62 -0
- package/minimal/src/layouts/compact/index.jsx +35 -0
- package/minimal/src/layouts/config-layout.js +12 -0
- package/minimal/src/layouts/dashboard/config-navigation.jsx +324 -0
- package/minimal/src/layouts/dashboard/header.jsx +118 -0
- package/minimal/src/layouts/dashboard/index.jsx +88 -0
- package/minimal/src/layouts/dashboard/main.jsx +74 -0
- package/minimal/src/layouts/dashboard/nav-horizontal.jsx +65 -0
- package/minimal/src/layouts/dashboard/nav-mini.jsx +57 -0
- package/minimal/src/layouts/dashboard/nav-vertical.jsx +106 -0
- package/minimal/src/layouts/main/config-navigation.jsx +90 -0
- package/minimal/src/layouts/main/footer.jsx +172 -0
- package/minimal/src/layouts/main/header.jsx +112 -0
- package/minimal/src/layouts/main/index.jsx +40 -0
- package/minimal/src/layouts/main/nav/desktop/index.jsx +21 -0
- package/minimal/src/layouts/main/nav/desktop/nav-item.jsx +184 -0
- package/minimal/src/layouts/main/nav/desktop/nav-list.jsx +158 -0
- package/minimal/src/layouts/main/nav/mobile/index.jsx +67 -0
- package/minimal/src/layouts/main/nav/mobile/nav-item.jsx +90 -0
- package/minimal/src/layouts/main/nav/mobile/nav-list.jsx +83 -0
- package/minimal/src/layouts/simple/index.jsx +19 -0
- package/minimal/src/locales/config-lang.js +79 -0
- package/minimal/src/locales/i18n.js +39 -0
- package/minimal/src/locales/index.js +5 -0
- package/minimal/src/locales/langs/ar.json +54 -0
- package/minimal/src/locales/langs/cn.json +54 -0
- package/minimal/src/locales/langs/en.json +54 -0
- package/minimal/src/locales/langs/fr.json +54 -0
- package/minimal/src/locales/langs/vi.json +54 -0
- package/minimal/src/locales/localization-provider.jsx +22 -0
- package/minimal/src/locales/use-locales.js +44 -0
- package/minimal/src/main.jsx +20 -0
- package/minimal/src/pages/403.jsx +17 -0
- package/minimal/src/pages/404.jsx +17 -0
- package/minimal/src/pages/500.jsx +17 -0
- package/minimal/src/pages/about-us.jsx +17 -0
- package/minimal/src/pages/auth/amplify/forgot-password.jsx +17 -0
- package/minimal/src/pages/auth/amplify/login.jsx +17 -0
- package/minimal/src/pages/auth/amplify/new-password.jsx +17 -0
- package/minimal/src/pages/auth/amplify/register.jsx +17 -0
- package/minimal/src/pages/auth/amplify/verify.jsx +17 -0
- package/minimal/src/pages/auth/auth0/callback.js +6 -0
- package/minimal/src/pages/auth/auth0/login.jsx +17 -0
- package/minimal/src/pages/auth/firebase/forgot-password.jsx +17 -0
- package/minimal/src/pages/auth/firebase/login.jsx +17 -0
- package/minimal/src/pages/auth/firebase/register.jsx +17 -0
- package/minimal/src/pages/auth/firebase/verify.jsx +17 -0
- package/minimal/src/pages/auth/jwt/login.jsx +17 -0
- package/minimal/src/pages/auth/jwt/register.jsx +17 -0
- package/minimal/src/pages/auth-demo/classic/forgot-password.jsx +17 -0
- package/minimal/src/pages/auth-demo/classic/login.jsx +17 -0
- package/minimal/src/pages/auth-demo/classic/new-password.jsx +17 -0
- package/minimal/src/pages/auth-demo/classic/register.jsx +17 -0
- package/minimal/src/pages/auth-demo/classic/verify.jsx +17 -0
- package/minimal/src/pages/auth-demo/modern/forgot-password.jsx +17 -0
- package/minimal/src/pages/auth-demo/modern/login.jsx +17 -0
- package/minimal/src/pages/auth-demo/modern/new-password.jsx +17 -0
- package/minimal/src/pages/auth-demo/modern/register.jsx +17 -0
- package/minimal/src/pages/auth-demo/modern/verify.jsx +17 -0
- package/minimal/src/pages/coming-soon.jsx +17 -0
- package/minimal/src/pages/components/extra/animate.jsx +17 -0
- package/minimal/src/pages/components/extra/carousel.jsx +17 -0
- package/minimal/src/pages/components/extra/chart.jsx +17 -0
- package/minimal/src/pages/components/extra/copy-to-clipboard.jsx +17 -0
- package/minimal/src/pages/components/extra/editor.jsx +17 -0
- package/minimal/src/pages/components/extra/form-validation.jsx +17 -0
- package/minimal/src/pages/components/extra/image.jsx +17 -0
- package/minimal/src/pages/components/extra/label.jsx +17 -0
- package/minimal/src/pages/components/extra/lightbox.jsx +17 -0
- package/minimal/src/pages/components/extra/map.jsx +17 -0
- package/minimal/src/pages/components/extra/markdown.jsx +17 -0
- package/minimal/src/pages/components/extra/mega-menu.jsx +17 -0
- package/minimal/src/pages/components/extra/multi-language.jsx +17 -0
- package/minimal/src/pages/components/extra/navigation-bar.jsx +17 -0
- package/minimal/src/pages/components/extra/organization-chart.jsx +17 -0
- package/minimal/src/pages/components/extra/scroll-progress.jsx +17 -0
- package/minimal/src/pages/components/extra/scroll.jsx +17 -0
- package/minimal/src/pages/components/extra/snackbar.jsx +17 -0
- package/minimal/src/pages/components/extra/text-max-line.jsx +17 -0
- package/minimal/src/pages/components/extra/upload.jsx +17 -0
- package/minimal/src/pages/components/foundation/colors.jsx +17 -0
- package/minimal/src/pages/components/foundation/grid.jsx +17 -0
- package/minimal/src/pages/components/foundation/icons.jsx +17 -0
- package/minimal/src/pages/components/foundation/shadows.jsx +17 -0
- package/minimal/src/pages/components/foundation/typography.jsx +17 -0
- package/minimal/src/pages/components/index.jsx +17 -0
- package/minimal/src/pages/components/mui/accordion.jsx +17 -0
- package/minimal/src/pages/components/mui/alert.jsx +17 -0
- package/minimal/src/pages/components/mui/autocomplete.jsx +17 -0
- package/minimal/src/pages/components/mui/avatar.jsx +17 -0
- package/minimal/src/pages/components/mui/badge.jsx +17 -0
- package/minimal/src/pages/components/mui/breadcrumbs.jsx +17 -0
- package/minimal/src/pages/components/mui/buttons.jsx +17 -0
- package/minimal/src/pages/components/mui/checkbox.jsx +17 -0
- package/minimal/src/pages/components/mui/chip.jsx +17 -0
- package/minimal/src/pages/components/mui/data-grid.jsx +17 -0
- package/minimal/src/pages/components/mui/dialog.jsx +17 -0
- package/minimal/src/pages/components/mui/list.jsx +17 -0
- package/minimal/src/pages/components/mui/menu.jsx +17 -0
- package/minimal/src/pages/components/mui/pagination.jsx +17 -0
- package/minimal/src/pages/components/mui/pickers.jsx +17 -0
- package/minimal/src/pages/components/mui/popover.jsx +17 -0
- package/minimal/src/pages/components/mui/progress.jsx +17 -0
- package/minimal/src/pages/components/mui/radio-button.jsx +17 -0
- package/minimal/src/pages/components/mui/rating.jsx +17 -0
- package/minimal/src/pages/components/mui/slider.jsx +17 -0
- package/minimal/src/pages/components/mui/stepper.jsx +17 -0
- package/minimal/src/pages/components/mui/switch.jsx +17 -0
- package/minimal/src/pages/components/mui/table.jsx +17 -0
- package/minimal/src/pages/components/mui/tabs.jsx +17 -0
- package/minimal/src/pages/components/mui/textfield.jsx +17 -0
- package/minimal/src/pages/components/mui/timeline.jsx +17 -0
- package/minimal/src/pages/components/mui/tooltip.jsx +17 -0
- package/minimal/src/pages/components/mui/transfer-list.jsx +17 -0
- package/minimal/src/pages/contact-us.jsx +17 -0
- package/minimal/src/pages/dashboard/analytics.jsx +17 -0
- package/minimal/src/pages/dashboard/app.jsx +17 -0
- package/minimal/src/pages/dashboard/banking.jsx +17 -0
- package/minimal/src/pages/dashboard/blank.jsx +17 -0
- package/minimal/src/pages/dashboard/booking.jsx +17 -0
- package/minimal/src/pages/dashboard/calendar.jsx +17 -0
- package/minimal/src/pages/dashboard/chat.jsx +17 -0
- package/minimal/src/pages/dashboard/ecommerce.jsx +17 -0
- package/minimal/src/pages/dashboard/file-manager.jsx +17 -0
- package/minimal/src/pages/dashboard/file.jsx +17 -0
- package/minimal/src/pages/dashboard/invoice/details.jsx +23 -0
- package/minimal/src/pages/dashboard/invoice/edit.jsx +23 -0
- package/minimal/src/pages/dashboard/invoice/list.jsx +17 -0
- package/minimal/src/pages/dashboard/invoice/new.jsx +17 -0
- package/minimal/src/pages/dashboard/job/details.jsx +23 -0
- package/minimal/src/pages/dashboard/job/edit.jsx +23 -0
- package/minimal/src/pages/dashboard/job/list.jsx +17 -0
- package/minimal/src/pages/dashboard/job/new.jsx +17 -0
- package/minimal/src/pages/dashboard/kanban.jsx +17 -0
- package/minimal/src/pages/dashboard/mail.jsx +17 -0
- package/minimal/src/pages/dashboard/order/details.jsx +23 -0
- package/minimal/src/pages/dashboard/order/list.jsx +17 -0
- package/minimal/src/pages/dashboard/permission.jsx +17 -0
- package/minimal/src/pages/dashboard/post/details.jsx +23 -0
- package/minimal/src/pages/dashboard/post/edit.jsx +23 -0
- package/minimal/src/pages/dashboard/post/list.jsx +17 -0
- package/minimal/src/pages/dashboard/post/new.jsx +17 -0
- package/minimal/src/pages/dashboard/product/details.jsx +23 -0
- package/minimal/src/pages/dashboard/product/edit.jsx +23 -0
- package/minimal/src/pages/dashboard/product/list.jsx +17 -0
- package/minimal/src/pages/dashboard/product/new.jsx +17 -0
- package/minimal/src/pages/dashboard/tour/details.jsx +23 -0
- package/minimal/src/pages/dashboard/tour/edit.jsx +23 -0
- package/minimal/src/pages/dashboard/tour/list.jsx +17 -0
- package/minimal/src/pages/dashboard/tour/new.jsx +17 -0
- package/minimal/src/pages/dashboard/user/account.jsx +17 -0
- package/minimal/src/pages/dashboard/user/cards.jsx +17 -0
- package/minimal/src/pages/dashboard/user/edit.jsx +23 -0
- package/minimal/src/pages/dashboard/user/list.jsx +17 -0
- package/minimal/src/pages/dashboard/user/new.jsx +17 -0
- package/minimal/src/pages/dashboard/user/profile.jsx +17 -0
- package/minimal/src/pages/faqs.jsx +17 -0
- package/minimal/src/pages/home.jsx +17 -0
- package/minimal/src/pages/maintenance.jsx +17 -0
- package/minimal/src/pages/payment.jsx +17 -0
- package/minimal/src/pages/post/details.jsx +23 -0
- package/minimal/src/pages/post/list.jsx +17 -0
- package/minimal/src/pages/pricing.jsx +17 -0
- package/minimal/src/pages/product/checkout.jsx +17 -0
- package/minimal/src/pages/product/details.jsx +23 -0
- package/minimal/src/pages/product/list.jsx +17 -0
- package/minimal/src/routes/components/index.js +1 -0
- package/minimal/src/routes/components/router-link.jsx +13 -0
- package/minimal/src/routes/hooks/index.js +6 -0
- package/minimal/src/routes/hooks/use-active-link.js +13 -0
- package/minimal/src/routes/hooks/use-params.js +10 -0
- package/minimal/src/routes/hooks/use-pathname.js +10 -0
- package/minimal/src/routes/hooks/use-router.js +21 -0
- package/minimal/src/routes/hooks/use-search-params.js +10 -0
- package/minimal/src/routes/paths.js +180 -0
- package/minimal/src/routes/sections/auth-demo.jsx +112 -0
- package/minimal/src/routes/sections/auth.jsx +175 -0
- package/minimal/src/routes/sections/components.jsx +173 -0
- package/minimal/src/routes/sections/dashboard.jsx +165 -0
- package/minimal/src/routes/sections/index.jsx +50 -0
- package/minimal/src/routes/sections/main.jsx +94 -0
- package/minimal/src/sections/_examples/component-block.jsx +45 -0
- package/minimal/src/sections/_examples/component-card.jsx +54 -0
- package/minimal/src/sections/_examples/component-hero.jsx +80 -0
- package/minimal/src/sections/_examples/config-navigation.js +73 -0
- package/minimal/src/sections/_examples/extra/animate-view/background/container.jsx +42 -0
- package/minimal/src/sections/_examples/extra/animate-view/background/index.jsx +61 -0
- package/minimal/src/sections/_examples/extra/animate-view/background/toolbar.jsx +22 -0
- package/minimal/src/sections/_examples/extra/animate-view/control-panel.jsx +58 -0
- package/minimal/src/sections/_examples/extra/animate-view/dialog/container.jsx +72 -0
- package/minimal/src/sections/_examples/extra/animate-view/dialog/index.jsx +76 -0
- package/minimal/src/sections/_examples/extra/animate-view/get-variant.js +91 -0
- package/minimal/src/sections/_examples/extra/animate-view/index.jsx +78 -0
- package/minimal/src/sections/_examples/extra/animate-view/inview/container.jsx +80 -0
- package/minimal/src/sections/_examples/extra/animate-view/inview/index.jsx +129 -0
- package/minimal/src/sections/_examples/extra/animate-view/inview/toolbar.jsx +57 -0
- package/minimal/src/sections/_examples/extra/animate-view/other/buttons.jsx +86 -0
- package/minimal/src/sections/_examples/extra/animate-view/other/index.jsx +48 -0
- package/minimal/src/sections/_examples/extra/animate-view/other/logo.jsx +60 -0
- package/minimal/src/sections/_examples/extra/animate-view/scroll/container.jsx +60 -0
- package/minimal/src/sections/_examples/extra/animate-view/scroll/index.jsx +80 -0
- package/minimal/src/sections/_examples/extra/animate-view/scroll/toolbar.jsx +29 -0
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-animation.jsx +113 -0
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-1.jsx +35 -0
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-2.jsx +53 -0
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-3.jsx +57 -0
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-basic-4.jsx +89 -0
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-center-mode.jsx +125 -0
- package/minimal/src/sections/_examples/extra/carousel-view/carousel-thumbnail.jsx +160 -0
- package/minimal/src/sections/_examples/extra/carousel-view/index.jsx +124 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-area.jsx +35 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-bar.jsx +43 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-column-multiple.jsx +32 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-column-negative.jsx +77 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-column-single.jsx +34 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-column-stacked.jsx +50 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-donut.jsx +42 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-line.jsx +27 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-mixed.jsx +59 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-pie.jsx +48 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-radar-bar.jsx +73 -0
- package/minimal/src/sections/_examples/extra/chart-view/chart-radial-bar.jsx +73 -0
- package/minimal/src/sections/_examples/extra/chart-view/index.jsx +234 -0
- package/minimal/src/sections/_examples/extra/copy-to-clipboard-view.jsx +115 -0
- package/minimal/src/sections/_examples/extra/editor-view.jsx +95 -0
- package/minimal/src/sections/_examples/extra/form-validation-view/index.jsx +59 -0
- package/minimal/src/sections/_examples/extra/form-validation-view/react-hook-form.jsx +405 -0
- package/minimal/src/sections/_examples/extra/form-validation-view/schema.js +50 -0
- package/minimal/src/sections/_examples/extra/form-validation-view/values-preview.jsx +87 -0
- package/minimal/src/sections/_examples/extra/image-view.jsx +94 -0
- package/minimal/src/sections/_examples/extra/label-view.jsx +116 -0
- package/minimal/src/sections/_examples/extra/lightbox-view.jsx +239 -0
- package/minimal/src/sections/_examples/extra/map-view/change-theme/control-panel.jsx +41 -0
- package/minimal/src/sections/_examples/extra/map-view/change-theme/index.jsx +41 -0
- package/minimal/src/sections/_examples/extra/map-view/clusters/index.jsx +61 -0
- package/minimal/src/sections/_examples/extra/map-view/clusters/layers.js +37 -0
- package/minimal/src/sections/_examples/extra/map-view/draggable-markers/control-panel.jsx +49 -0
- package/minimal/src/sections/_examples/extra/map-view/draggable-markers/index.jsx +56 -0
- package/minimal/src/sections/_examples/extra/map-view/heatmap/control-panel.jsx +91 -0
- package/minimal/src/sections/_examples/extra/map-view/heatmap/index.jsx +94 -0
- package/minimal/src/sections/_examples/extra/map-view/heatmap/map-style.js +40 -0
- package/minimal/src/sections/_examples/extra/map-view/index.jsx +183 -0
- package/minimal/src/sections/_examples/extra/map-view/interaction/control-panel.jsx +85 -0
- package/minimal/src/sections/_examples/extra/map-view/interaction/index.jsx +56 -0
- package/minimal/src/sections/_examples/extra/map-view/map-geo-json-animation.jsx +68 -0
- package/minimal/src/sections/_examples/extra/map-view/map-highlight-by-filter.jsx +83 -0
- package/minimal/src/sections/_examples/extra/map-view/map-markers-popups.jsx +95 -0
- package/minimal/src/sections/_examples/extra/map-view/side-by-side/control-panel.jsx +28 -0
- package/minimal/src/sections/_examples/extra/map-view/side-by-side/index.jsx +106 -0
- package/minimal/src/sections/_examples/extra/map-view/viewport-animation/control-panel.jsx +39 -0
- package/minimal/src/sections/_examples/extra/map-view/viewport-animation/index.jsx +44 -0
- package/minimal/src/sections/_examples/extra/markdown-view.jsx +204 -0
- package/minimal/src/sections/_examples/extra/mega-menu-view.jsx +318 -0
- package/minimal/src/sections/_examples/extra/multi-language-view.jsx +124 -0
- package/minimal/src/sections/_examples/extra/navigation-bar-view.jsx +564 -0
- package/minimal/src/sections/_examples/extra/organizational-chart-view.jsx +206 -0
- package/minimal/src/sections/_examples/extra/scroll-progress-view.jsx +136 -0
- package/minimal/src/sections/_examples/extra/scroll-view.jsx +113 -0
- package/minimal/src/sections/_examples/extra/snackbar-view.jsx +212 -0
- package/minimal/src/sections/_examples/extra/text-max-line-view.jsx +112 -0
- package/minimal/src/sections/_examples/extra/upload-view.jsx +190 -0
- package/minimal/src/sections/_examples/foundation/colors-view.jsx +181 -0
- package/minimal/src/sections/_examples/foundation/grid-view.jsx +154 -0
- package/minimal/src/sections/_examples/foundation/icons-view.jsx +95 -0
- package/minimal/src/sections/_examples/foundation/index.js +5 -0
- package/minimal/src/sections/_examples/foundation/shadows-view.jsx +122 -0
- package/minimal/src/sections/_examples/foundation/typography-view.jsx +153 -0
- package/minimal/src/sections/_examples/mui/accordion-view.jsx +101 -0
- package/minimal/src/sections/_examples/mui/alert-view.jsx +176 -0
- package/minimal/src/sections/_examples/mui/autocomplete-view.jsx +384 -0
- package/minimal/src/sections/_examples/mui/avatar-view.jsx +188 -0
- package/minimal/src/sections/_examples/mui/badge-view.jsx +139 -0
- package/minimal/src/sections/_examples/mui/breadcrumbs-view.jsx +158 -0
- package/minimal/src/sections/_examples/mui/button-view/button-groups.jsx +111 -0
- package/minimal/src/sections/_examples/mui/button-view/button-variants.jsx +144 -0
- package/minimal/src/sections/_examples/mui/button-view/floating-action-button.jsx +198 -0
- package/minimal/src/sections/_examples/mui/button-view/icon-buttons.jsx +90 -0
- package/minimal/src/sections/_examples/mui/button-view/index.jsx +102 -0
- package/minimal/src/sections/_examples/mui/button-view/toggle-buttons.jsx +183 -0
- package/minimal/src/sections/_examples/mui/checkbox-view.jsx +187 -0
- package/minimal/src/sections/_examples/mui/chip-view/chip.jsx +241 -0
- package/minimal/src/sections/_examples/mui/chip-view/index.jsx +72 -0
- package/minimal/src/sections/_examples/mui/data-grid-view/data-grid-basic.jsx +65 -0
- package/minimal/src/sections/_examples/mui/data-grid-view/data-grid-custom.jsx +236 -0
- package/minimal/src/sections/_examples/mui/data-grid-view/index.jsx +95 -0
- package/minimal/src/sections/_examples/mui/dialog-view/alert-dialog.jsx +39 -0
- package/minimal/src/sections/_examples/mui/dialog-view/form-dialog.jsx +52 -0
- package/minimal/src/sections/_examples/mui/dialog-view/full-screen-dialog.jsx +68 -0
- package/minimal/src/sections/_examples/mui/dialog-view/index.jsx +77 -0
- package/minimal/src/sections/_examples/mui/dialog-view/max-width-dialog.jsx +105 -0
- package/minimal/src/sections/_examples/mui/dialog-view/scroll-dialog.jsx +74 -0
- package/minimal/src/sections/_examples/mui/dialog-view/simple-dialog.jsx +69 -0
- package/minimal/src/sections/_examples/mui/dialog-view/transitions-dialog.jsx +49 -0
- package/minimal/src/sections/_examples/mui/list-view.jsx +324 -0
- package/minimal/src/sections/_examples/mui/menu-view.jsx +193 -0
- package/minimal/src/sections/_examples/mui/pagination-view.jsx +126 -0
- package/minimal/src/sections/_examples/mui/picker-view/index.jsx +76 -0
- package/minimal/src/sections/_examples/mui/picker-view/picker-date-range.jsx +91 -0
- package/minimal/src/sections/_examples/mui/picker-view/picker-date-time.jsx +74 -0
- package/minimal/src/sections/_examples/mui/picker-view/picker-date.jsx +140 -0
- package/minimal/src/sections/_examples/mui/picker-view/picker-time.jsx +115 -0
- package/minimal/src/sections/_examples/mui/popover-view.jsx +186 -0
- package/minimal/src/sections/_examples/mui/progress-view/index.jsx +99 -0
- package/minimal/src/sections/_examples/mui/progress-view/progress-circular.jsx +58 -0
- package/minimal/src/sections/_examples/mui/progress-view/progress-linear.jsx +86 -0
- package/minimal/src/sections/_examples/mui/radio-button-view.jsx +117 -0
- package/minimal/src/sections/_examples/mui/rating-view.jsx +184 -0
- package/minimal/src/sections/_examples/mui/slider-view.jsx +204 -0
- package/minimal/src/sections/_examples/mui/stepper-view/customized-steppers.jsx +260 -0
- package/minimal/src/sections/_examples/mui/stepper-view/horizontal-linear-stepper.jsx +125 -0
- package/minimal/src/sections/_examples/mui/stepper-view/index.jsx +95 -0
- package/minimal/src/sections/_examples/mui/stepper-view/linear-alternative-label-stepper.jsx +123 -0
- package/minimal/src/sections/_examples/mui/stepper-view/vertical-linear-stepper.jsx +89 -0
- package/minimal/src/sections/_examples/mui/switch-view.jsx +99 -0
- package/minimal/src/sections/_examples/mui/table-view/basic-table.jsx +56 -0
- package/minimal/src/sections/_examples/mui/table-view/collapsible-table.jsx +143 -0
- package/minimal/src/sections/_examples/mui/table-view/grouping-fixed-header-table.jsx +135 -0
- package/minimal/src/sections/_examples/mui/table-view/index.jsx +75 -0
- package/minimal/src/sections/_examples/mui/table-view/sorting-selecting-table.jsx +187 -0
- package/minimal/src/sections/_examples/mui/table-view/utils.js +24 -0
- package/minimal/src/sections/_examples/mui/tabs-view.jsx +211 -0
- package/minimal/src/sections/_examples/mui/textfield-view/index.jsx +86 -0
- package/minimal/src/sections/_examples/mui/textfield-view/textfield.jsx +278 -0
- package/minimal/src/sections/_examples/mui/timeline-view.jsx +237 -0
- package/minimal/src/sections/_examples/mui/tooltip-view.jsx +184 -0
- package/minimal/src/sections/_examples/mui/transfer-list-view/enhanced-transfer-list.jsx +159 -0
- package/minimal/src/sections/_examples/mui/transfer-list-view/index.jsx +52 -0
- package/minimal/src/sections/_examples/mui/transfer-list-view/simple-transfer-list.jsx +154 -0
- package/minimal/src/sections/_examples/view.jsx +120 -0
- package/minimal/src/sections/about/about-hero.jsx +93 -0
- package/minimal/src/sections/about/about-team.jsx +158 -0
- package/minimal/src/sections/about/about-testimonials.jsx +202 -0
- package/minimal/src/sections/about/about-vision.jsx +105 -0
- package/minimal/src/sections/about/about-what.jsx +133 -0
- package/minimal/src/sections/about/view/about-view.jsx +23 -0
- package/minimal/src/sections/about/view/index.js +1 -0
- package/minimal/src/sections/account/account-billing-address.jsx +130 -0
- package/minimal/src/sections/account/account-billing-history.jsx +78 -0
- package/minimal/src/sections/account/account-billing-payment.jsx +60 -0
- package/minimal/src/sections/account/account-billing-plan.jsx +225 -0
- package/minimal/src/sections/account/account-billing.jsx +35 -0
- package/minimal/src/sections/account/account-change-password.jsx +125 -0
- package/minimal/src/sections/account/account-general.jsx +201 -0
- package/minimal/src/sections/account/account-notifications.jsx +131 -0
- package/minimal/src/sections/account/account-social-links.jsx +87 -0
- package/minimal/src/sections/account/view/index.js +1 -0
- package/minimal/src/sections/account/view/user-account-view.jsx +106 -0
- package/minimal/src/sections/address/address-item.jsx +61 -0
- package/minimal/src/sections/address/address-list-dialog.jsx +165 -0
- package/minimal/src/sections/address/address-new-form.jsx +176 -0
- package/minimal/src/sections/address/index.js +3 -0
- package/minimal/src/sections/auth/amplify/amplify-forgot-password-view.jsx +112 -0
- package/minimal/src/sections/auth/amplify/amplify-login-view.jsx +140 -0
- package/minimal/src/sections/auth/amplify/amplify-new-password-view.jsx +199 -0
- package/minimal/src/sections/auth/amplify/amplify-register-view.jsx +163 -0
- package/minimal/src/sections/auth/amplify/amplify-verify-view.jsx +154 -0
- package/minimal/src/sections/auth/amplify/index.js +5 -0
- package/minimal/src/sections/auth/auth0/auth0-login-view.jsx +120 -0
- package/minimal/src/sections/auth/auth0/index.js +1 -0
- package/minimal/src/sections/auth/firebase/firebase-forgot-password-view.jsx +112 -0
- package/minimal/src/sections/auth/firebase/firebase-login-view.jsx +198 -0
- package/minimal/src/sections/auth/firebase/firebase-register-view.jsx +220 -0
- package/minimal/src/sections/auth/firebase/firebase-verify-view.jsx +56 -0
- package/minimal/src/sections/auth/firebase/index.js +4 -0
- package/minimal/src/sections/auth/jwt/index.js +2 -0
- package/minimal/src/sections/auth/jwt/jwt-login-view.jsx +137 -0
- package/minimal/src/sections/auth/jwt/jwt-register-view.jsx +164 -0
- package/minimal/src/sections/auth-demo/classic/classic-forgot-password-view.jsx +100 -0
- package/minimal/src/sections/auth-demo/classic/classic-login-view.jsx +118 -0
- package/minimal/src/sections/auth-demo/classic/classic-new-password-view.jsx +167 -0
- package/minimal/src/sections/auth-demo/classic/classic-register-view.jsx +140 -0
- package/minimal/src/sections/auth-demo/classic/classic-verify-view.jsx +122 -0
- package/minimal/src/sections/auth-demo/classic/index.js +5 -0
- package/minimal/src/sections/auth-demo/modern/index.js +5 -0
- package/minimal/src/sections/auth-demo/modern/modern-forgot-password-view.jsx +102 -0
- package/minimal/src/sections/auth-demo/modern/modern-login-view.jsx +120 -0
- package/minimal/src/sections/auth-demo/modern/modern-new-password-view.jsx +167 -0
- package/minimal/src/sections/auth-demo/modern/modern-register-view.jsx +142 -0
- package/minimal/src/sections/auth-demo/modern/modern-verify-view.jsx +122 -0
- package/minimal/src/sections/blank/view.jsx +29 -0
- package/minimal/src/sections/blog/post-comment-form.jsx +80 -0
- package/minimal/src/sections/blog/post-comment-item.jsx +88 -0
- package/minimal/src/sections/blog/post-comment-list.jsx +55 -0
- package/minimal/src/sections/blog/post-details-hero.jsx +124 -0
- package/minimal/src/sections/blog/post-details-preview.jsx +96 -0
- package/minimal/src/sections/blog/post-details-toolbar.jsx +111 -0
- package/minimal/src/sections/blog/post-item-horizontal.jsx +183 -0
- package/minimal/src/sections/blog/post-item.jsx +203 -0
- package/minimal/src/sections/blog/post-list-horizontal.jsx +59 -0
- package/minimal/src/sections/blog/post-list.jsx +66 -0
- package/minimal/src/sections/blog/post-new-edit-form.jsx +315 -0
- package/minimal/src/sections/blog/post-search.jsx +129 -0
- package/minimal/src/sections/blog/post-skeleton.jsx +94 -0
- package/minimal/src/sections/blog/post-sort.jsx +56 -0
- package/minimal/src/sections/blog/view/index.js +6 -0
- package/minimal/src/sections/blog/view/post-create-view.jsx +40 -0
- package/minimal/src/sections/blog/view/post-details-home-view.jsx +188 -0
- package/minimal/src/sections/blog/view/post-details-view.jsx +172 -0
- package/minimal/src/sections/blog/view/post-edit-view.jsx +50 -0
- package/minimal/src/sections/blog/view/post-list-home-view.jsx +99 -0
- package/minimal/src/sections/blog/view/post-list-view.jsx +187 -0
- package/minimal/src/sections/calendar/calendar-filters-result.jsx +132 -0
- package/minimal/src/sections/calendar/calendar-filters.jsx +217 -0
- package/minimal/src/sections/calendar/calendar-form.jsx +198 -0
- package/minimal/src/sections/calendar/calendar-toolbar.jsx +141 -0
- package/minimal/src/sections/calendar/hooks/index.js +2 -0
- package/minimal/src/sections/calendar/hooks/use-calendar.js +168 -0
- package/minimal/src/sections/calendar/hooks/use-event.js +33 -0
- package/minimal/src/sections/calendar/styles.js +163 -0
- package/minimal/src/sections/calendar/view/calendar-view.jsx +265 -0
- package/minimal/src/sections/calendar/view/index.js +1 -0
- package/minimal/src/sections/chat/chat-header-compose.jsx +112 -0
- package/minimal/src/sections/chat/chat-header-detail.jsx +84 -0
- package/minimal/src/sections/chat/chat-message-input.jsx +153 -0
- package/minimal/src/sections/chat/chat-message-item.jsx +153 -0
- package/minimal/src/sections/chat/chat-message-list.jsx +50 -0
- package/minimal/src/sections/chat/chat-nav-account.jsx +115 -0
- package/minimal/src/sections/chat/chat-nav-item.jsx +152 -0
- package/minimal/src/sections/chat/chat-nav-search-results.jsx +64 -0
- package/minimal/src/sections/chat/chat-nav.jsx +264 -0
- package/minimal/src/sections/chat/chat-room-attachments.jsx +125 -0
- package/minimal/src/sections/chat/chat-room-group.jsx +106 -0
- package/minimal/src/sections/chat/chat-room-participant-dialog.jsx +112 -0
- package/minimal/src/sections/chat/chat-room-single.jsx +102 -0
- package/minimal/src/sections/chat/chat-room.jsx +150 -0
- package/minimal/src/sections/chat/chat-skeleton.jsx +33 -0
- package/minimal/src/sections/chat/hooks/index.js +4 -0
- package/minimal/src/sections/chat/hooks/use-collapse-nav.js +35 -0
- package/minimal/src/sections/chat/hooks/use-get-message.js +25 -0
- package/minimal/src/sections/chat/hooks/use-get-nav-item.js +38 -0
- package/minimal/src/sections/chat/hooks/use-messages-scroll.js +33 -0
- package/minimal/src/sections/chat/view/chat-view.jsx +145 -0
- package/minimal/src/sections/chat/view/index.js +1 -0
- package/minimal/src/sections/checkout/checkout-billing-address.jsx +92 -0
- package/minimal/src/sections/checkout/checkout-billing-info.jsx +43 -0
- package/minimal/src/sections/checkout/checkout-cart-product-list.jsx +58 -0
- package/minimal/src/sections/checkout/checkout-cart-product.jsx +81 -0
- package/minimal/src/sections/checkout/checkout-cart.jsx +88 -0
- package/minimal/src/sections/checkout/checkout-delivery.jsx +103 -0
- package/minimal/src/sections/checkout/checkout-order-complete.jsx +116 -0
- package/minimal/src/sections/checkout/checkout-payment-methods.jsx +149 -0
- package/minimal/src/sections/checkout/checkout-payment.jsx +140 -0
- package/minimal/src/sections/checkout/checkout-steps.jsx +103 -0
- package/minimal/src/sections/checkout/checkout-summary.jsx +112 -0
- package/minimal/src/sections/checkout/context/checkout-context.js +13 -0
- package/minimal/src/sections/checkout/context/checkout-provider.jsx +219 -0
- package/minimal/src/sections/checkout/context/index.js +2 -0
- package/minimal/src/sections/checkout/view/checkout-view.jsx +52 -0
- package/minimal/src/sections/checkout/view/index.js +1 -0
- package/minimal/src/sections/coming-soon/view.jsx +113 -0
- package/minimal/src/sections/contact/contact-form.jsx +47 -0
- package/minimal/src/sections/contact/contact-hero.jsx +129 -0
- package/minimal/src/sections/contact/contact-map.jsx +100 -0
- package/minimal/src/sections/contact/view/contact-view.jsx +33 -0
- package/minimal/src/sections/contact/view/index.js +1 -0
- package/minimal/src/sections/error/403-view.jsx +43 -0
- package/minimal/src/sections/error/500-view.jsx +41 -0
- package/minimal/src/sections/error/index.js +3 -0
- package/minimal/src/sections/error/not-found-view.jsx +47 -0
- package/minimal/src/sections/faqs/faqs-category.jsx +172 -0
- package/minimal/src/sections/faqs/faqs-form.jsx +42 -0
- package/minimal/src/sections/faqs/faqs-hero.jsx +111 -0
- package/minimal/src/sections/faqs/faqs-list.jsx +28 -0
- package/minimal/src/sections/faqs/view/faqs-view.jsx +50 -0
- package/minimal/src/sections/faqs/view/index.js +1 -0
- package/minimal/src/sections/file-manager/file-data-activity.jsx +125 -0
- package/minimal/src/sections/file-manager/file-manager-action-selected.jsx +74 -0
- package/minimal/src/sections/file-manager/file-manager-file-details.jsx +281 -0
- package/minimal/src/sections/file-manager/file-manager-file-item.jsx +270 -0
- package/minimal/src/sections/file-manager/file-manager-filters-result.jsx +115 -0
- package/minimal/src/sections/file-manager/file-manager-filters.jsx +217 -0
- package/minimal/src/sections/file-manager/file-manager-folder-item.jsx +309 -0
- package/minimal/src/sections/file-manager/file-manager-grid-view.jsx +201 -0
- package/minimal/src/sections/file-manager/file-manager-invited-item.jsx +113 -0
- package/minimal/src/sections/file-manager/file-manager-new-folder-dialog.jsx +117 -0
- package/minimal/src/sections/file-manager/file-manager-panel.jsx +81 -0
- package/minimal/src/sections/file-manager/file-manager-share-dialog.jsx +95 -0
- package/minimal/src/sections/file-manager/file-manager-table-row.jsx +287 -0
- package/minimal/src/sections/file-manager/file-manager-table.jsx +208 -0
- package/minimal/src/sections/file-manager/file-recent-item.jsx +240 -0
- package/minimal/src/sections/file-manager/file-storage-overview.jsx +110 -0
- package/minimal/src/sections/file-manager/file-upgrade.jsx +60 -0
- package/minimal/src/sections/file-manager/file-widget.jsx +64 -0
- package/minimal/src/sections/file-manager/view/file-manager-view.jsx +284 -0
- package/minimal/src/sections/file-manager/view/index.js +1 -0
- package/minimal/src/sections/home/home-advertisement.jsx +118 -0
- package/minimal/src/sections/home/home-clean-interfaces.jsx +84 -0
- package/minimal/src/sections/home/home-color-presets.jsx +156 -0
- package/minimal/src/sections/home/home-dark-mode.jsx +80 -0
- package/minimal/src/sections/home/home-for-designer.jsx +114 -0
- package/minimal/src/sections/home/home-hero.jsx +425 -0
- package/minimal/src/sections/home/home-hugepack-elements.jsx +473 -0
- package/minimal/src/sections/home/home-looking-for.jsx +93 -0
- package/minimal/src/sections/home/home-minimal.jsx +109 -0
- package/minimal/src/sections/home/home-pricing.jsx +266 -0
- package/minimal/src/sections/home/view/home-view.jsx +83 -0
- package/minimal/src/sections/home/view/index.js +1 -0
- package/minimal/src/sections/invoice/invoice-analytic.jsx +70 -0
- package/minimal/src/sections/invoice/invoice-details.jsx +253 -0
- package/minimal/src/sections/invoice/invoice-new-edit-address.jsx +131 -0
- package/minimal/src/sections/invoice/invoice-new-edit-details.jsx +321 -0
- package/minimal/src/sections/invoice/invoice-new-edit-form.jsx +157 -0
- package/minimal/src/sections/invoice/invoice-new-edit-status-date.jsx +86 -0
- package/minimal/src/sections/invoice/invoice-pdf.jsx +278 -0
- package/minimal/src/sections/invoice/invoice-table-filters-result.jsx +126 -0
- package/minimal/src/sections/invoice/invoice-table-row.jsx +186 -0
- package/minimal/src/sections/invoice/invoice-table-toolbar.jsx +188 -0
- package/minimal/src/sections/invoice/invoice-toolbar.jsx +140 -0
- package/minimal/src/sections/invoice/view/index.js +4 -0
- package/minimal/src/sections/invoice/view/invoice-create-view.jsx +40 -0
- package/minimal/src/sections/invoice/view/invoice-details-view.jsx +46 -0
- package/minimal/src/sections/invoice/view/invoice-edit-view.jsx +48 -0
- package/minimal/src/sections/invoice/view/invoice-list-view.jsx +519 -0
- package/minimal/src/sections/job/job-details-candidates.jsx +114 -0
- package/minimal/src/sections/job/job-details-content.jsx +149 -0
- package/minimal/src/sections/job/job-details-toolbar.jsx +111 -0
- package/minimal/src/sections/job/job-filters-result.jsx +165 -0
- package/minimal/src/sections/job/job-filters.jsx +315 -0
- package/minimal/src/sections/job/job-item.jsx +160 -0
- package/minimal/src/sections/job/job-list.jsx +74 -0
- package/minimal/src/sections/job/job-new-edit-form.jsx +443 -0
- package/minimal/src/sections/job/job-search.jsx +93 -0
- package/minimal/src/sections/job/job-sort.jsx +63 -0
- package/minimal/src/sections/job/view/index.js +4 -0
- package/minimal/src/sections/job/view/job-create-view.jsx +38 -0
- package/minimal/src/sections/job/view/job-details-view.jsx +85 -0
- package/minimal/src/sections/job/view/job-edit-view.jsx +48 -0
- package/minimal/src/sections/job/view/job-list-view.jsx +244 -0
- package/minimal/src/sections/kanban/kanban-column-add.jsx +85 -0
- package/minimal/src/sections/kanban/kanban-column-tool-bar.jsx +149 -0
- package/minimal/src/sections/kanban/kanban-column.jsx +202 -0
- package/minimal/src/sections/kanban/kanban-contacts-dialog.jsx +138 -0
- package/minimal/src/sections/kanban/kanban-details-attachments.jsx +50 -0
- package/minimal/src/sections/kanban/kanban-details-comment-input.jsx +47 -0
- package/minimal/src/sections/kanban/kanban-details-comment-list.jsx +78 -0
- package/minimal/src/sections/kanban/kanban-details-priority.jsx +62 -0
- package/minimal/src/sections/kanban/kanban-details-toolbar.jsx +133 -0
- package/minimal/src/sections/kanban/kanban-details.jsx +303 -0
- package/minimal/src/sections/kanban/kanban-input-name.jsx +36 -0
- package/minimal/src/sections/kanban/kanban-skeleton.jsx +39 -0
- package/minimal/src/sections/kanban/kanban-task-add.jsx +94 -0
- package/minimal/src/sections/kanban/kanban-task-item.jsx +169 -0
- package/minimal/src/sections/kanban/view/index.js +1 -0
- package/minimal/src/sections/kanban/view/kanban-view.jsx +182 -0
- package/minimal/src/sections/mail/mail-compose.jsx +170 -0
- package/minimal/src/sections/mail/mail-details.jsx +335 -0
- package/minimal/src/sections/mail/mail-header.jsx +46 -0
- package/minimal/src/sections/mail/mail-item.jsx +87 -0
- package/minimal/src/sections/mail/mail-list.jsx +121 -0
- package/minimal/src/sections/mail/mail-nav-item.jsx +75 -0
- package/minimal/src/sections/mail/mail-nav.jsx +123 -0
- package/minimal/src/sections/mail/mail-skeleton.jsx +59 -0
- package/minimal/src/sections/mail/view/index.js +1 -0
- package/minimal/src/sections/mail/view/mail-view.jsx +237 -0
- package/minimal/src/sections/maintenance/view.jsx +29 -0
- package/minimal/src/sections/order/order-details-history.jsx +109 -0
- package/minimal/src/sections/order/order-details-info.jsx +169 -0
- package/minimal/src/sections/order/order-details-item.jsx +138 -0
- package/minimal/src/sections/order/order-details-toolbar.jsx +126 -0
- package/minimal/src/sections/order/order-table-filters-result.jsx +108 -0
- package/minimal/src/sections/order/order-table-row.jsx +229 -0
- package/minimal/src/sections/order/order-table-toolbar.jsx +159 -0
- package/minimal/src/sections/order/view/index.js +2 -0
- package/minimal/src/sections/order/view/order-details-view.jsx +74 -0
- package/minimal/src/sections/order/view/order-list-view.jsx +382 -0
- package/minimal/src/sections/overview/analytics/analytics-conversion-rates.jsx +64 -0
- package/minimal/src/sections/overview/analytics/analytics-current-subject.jsx +78 -0
- package/minimal/src/sections/overview/analytics/analytics-current-visits.jsx +101 -0
- package/minimal/src/sections/overview/analytics/analytics-news.jsx +95 -0
- package/minimal/src/sections/overview/analytics/analytics-order-timeline.jsx +79 -0
- package/minimal/src/sections/overview/analytics/analytics-tasks.jsx +135 -0
- package/minimal/src/sections/overview/analytics/analytics-traffic-by-site.jsx +53 -0
- package/minimal/src/sections/overview/analytics/analytics-website-visits.jsx +65 -0
- package/minimal/src/sections/overview/analytics/analytics-widget-summary.jsx +59 -0
- package/minimal/src/sections/overview/analytics/view/index.js +1 -0
- package/minimal/src/sections/overview/analytics/view/overview-analytics-view.jsx +185 -0
- package/minimal/src/sections/overview/app/app-area-installed.jsx +123 -0
- package/minimal/src/sections/overview/app/app-current-download.jsx +103 -0
- package/minimal/src/sections/overview/app/app-featured.jsx +118 -0
- package/minimal/src/sections/overview/app/app-new-invoice.jsx +155 -0
- package/minimal/src/sections/overview/app/app-top-authors.jsx +88 -0
- package/minimal/src/sections/overview/app/app-top-installed-countries.jsx +74 -0
- package/minimal/src/sections/overview/app/app-top-related.jsx +92 -0
- package/minimal/src/sections/overview/app/app-welcome.jsx +83 -0
- package/minimal/src/sections/overview/app/app-widget-summary.jsx +110 -0
- package/minimal/src/sections/overview/app/app-widget.jsx +120 -0
- package/minimal/src/sections/overview/app/view/index.js +1 -0
- package/minimal/src/sections/overview/app/view/overview-app-view.jsx +205 -0
- package/minimal/src/sections/overview/banking/banking-balance-statistics.jsx +113 -0
- package/minimal/src/sections/overview/banking/banking-contacts.jsx +56 -0
- package/minimal/src/sections/overview/banking/banking-current-balance.jsx +193 -0
- package/minimal/src/sections/overview/banking/banking-expenses-categories.jsx +115 -0
- package/minimal/src/sections/overview/banking/banking-invite-friends.jsx +78 -0
- package/minimal/src/sections/overview/banking/banking-quick-transfer.jsx +368 -0
- package/minimal/src/sections/overview/banking/banking-recent-transitions.jsx +223 -0
- package/minimal/src/sections/overview/banking/banking-widget-summary.jsx +144 -0
- package/minimal/src/sections/overview/banking/view/index.js +1 -0
- package/minimal/src/sections/overview/banking/view/overview-banking-view.jsx +202 -0
- package/minimal/src/sections/overview/booking/booking-available.jsx +109 -0
- package/minimal/src/sections/overview/booking/booking-booked.jsx +56 -0
- package/minimal/src/sections/overview/booking/booking-check-in-widgets.jsx +136 -0
- package/minimal/src/sections/overview/booking/booking-customer-reviews.jsx +115 -0
- package/minimal/src/sections/overview/booking/booking-details.jsx +204 -0
- package/minimal/src/sections/overview/booking/booking-newest.jsx +156 -0
- package/minimal/src/sections/overview/booking/booking-statistics.jsx +113 -0
- package/minimal/src/sections/overview/booking/booking-total-incomes.jsx +137 -0
- package/minimal/src/sections/overview/booking/booking-widget-summary.jsx +48 -0
- package/minimal/src/sections/overview/booking/view/index.js +1 -0
- package/minimal/src/sections/overview/booking/view/overview-booking-view.jsx +183 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-best-salesman.jsx +94 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-current-balance.jsx +70 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-latest-products.jsx +84 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-new-products.jsx +98 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-sale-by-gender.jsx +102 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-sales-overview.jsx +65 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-welcome.jsx +83 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-widget-summary.jsx +124 -0
- package/minimal/src/sections/overview/e-commerce/ecommerce-yearly-sales.jsx +107 -0
- package/minimal/src/sections/overview/e-commerce/view/index.js +1 -0
- package/minimal/src/sections/overview/e-commerce/view/overview-ecommerce-view.jsx +188 -0
- package/minimal/src/sections/overview/file/view/index.js +1 -0
- package/minimal/src/sections/overview/file/view/overview-file-view.jsx +285 -0
- package/minimal/src/sections/payment/payment-billing-address.jsx +20 -0
- package/minimal/src/sections/payment/payment-card-item.jsx +78 -0
- package/minimal/src/sections/payment/payment-card-list-dialog.jsx +116 -0
- package/minimal/src/sections/payment/payment-methods.jsx +165 -0
- package/minimal/src/sections/payment/payment-new-card-dialog.jsx +99 -0
- package/minimal/src/sections/payment/payment-summary.jsx +103 -0
- package/minimal/src/sections/payment/view/index.js +1 -0
- package/minimal/src/sections/payment/view/payment-view.jsx +58 -0
- package/minimal/src/sections/permission/view.jsx +82 -0
- package/minimal/src/sections/pricing/pricing-card.jsx +151 -0
- package/minimal/src/sections/pricing/view.jsx +84 -0
- package/minimal/src/sections/product/common/cart-icon.jsx +44 -0
- package/minimal/src/sections/product/common/incrementer-button.jsx +62 -0
- package/minimal/src/sections/product/product-details-carousel.jsx +191 -0
- package/minimal/src/sections/product/product-details-description.jsx +34 -0
- package/minimal/src/sections/product/product-details-review.jsx +137 -0
- package/minimal/src/sections/product/product-details-summary.jsx +355 -0
- package/minimal/src/sections/product/product-details-toolbar.jsx +111 -0
- package/minimal/src/sections/product/product-filters-result.jsx +170 -0
- package/minimal/src/sections/product/product-filters.jsx +365 -0
- package/minimal/src/sections/product/product-item.jsx +153 -0
- package/minimal/src/sections/product/product-list.jsx +62 -0
- package/minimal/src/sections/product/product-new-edit-form.jsx +452 -0
- package/minimal/src/sections/product/product-review-item.jsx +123 -0
- package/minimal/src/sections/product/product-review-list.jsx +33 -0
- package/minimal/src/sections/product/product-review-new-form.jsx +115 -0
- package/minimal/src/sections/product/product-search.jsx +131 -0
- package/minimal/src/sections/product/product-skeleton.jsx +81 -0
- package/minimal/src/sections/product/product-sort.jsx +58 -0
- package/minimal/src/sections/product/product-table-filters-result.jsx +115 -0
- package/minimal/src/sections/product/product-table-row.jsx +189 -0
- package/minimal/src/sections/product/product-table-toolbar.jsx +191 -0
- package/minimal/src/sections/product/view/index.js +6 -0
- package/minimal/src/sections/product/view/product-create-view.jsx +38 -0
- package/minimal/src/sections/product/view/product-details-view.jsx +193 -0
- package/minimal/src/sections/product/view/product-edit-view.jsx +45 -0
- package/minimal/src/sections/product/view/product-list-view.jsx +345 -0
- package/minimal/src/sections/product/view/product-shop-details-view.jsx +200 -0
- package/minimal/src/sections/product/view/product-shop-view.jsx +240 -0
- package/minimal/src/sections/tour/tour-details-bookers.jsx +145 -0
- package/minimal/src/sections/tour/tour-details-content.jsx +271 -0
- package/minimal/src/sections/tour/tour-details-toolbar.jsx +111 -0
- package/minimal/src/sections/tour/tour-filters-result.jsx +158 -0
- package/minimal/src/sections/tour/tour-filters.jsx +298 -0
- package/minimal/src/sections/tour/tour-item.jsx +227 -0
- package/minimal/src/sections/tour/tour-list.jsx +74 -0
- package/minimal/src/sections/tour/tour-new-edit-form.jsx +413 -0
- package/minimal/src/sections/tour/tour-search.jsx +123 -0
- package/minimal/src/sections/tour/tour-sort.jsx +63 -0
- package/minimal/src/sections/tour/view/index.js +4 -0
- package/minimal/src/sections/tour/view/tour-create-view.jsx +38 -0
- package/minimal/src/sections/tour/view/tour-details-view.jsx +85 -0
- package/minimal/src/sections/tour/view/tour-edit-view.jsx +48 -0
- package/minimal/src/sections/tour/view/tour-list-view.jsx +252 -0
- package/minimal/src/sections/user/profile-cover.jsx +77 -0
- package/minimal/src/sections/user/profile-followers.jsx +121 -0
- package/minimal/src/sections/user/profile-friends.jsx +180 -0
- package/minimal/src/sections/user/profile-gallery.jsx +97 -0
- package/minimal/src/sections/user/profile-home.jsx +201 -0
- package/minimal/src/sections/user/profile-post-item.jsx +226 -0
- package/minimal/src/sections/user/user-card-list.jsx +29 -0
- package/minimal/src/sections/user/user-card.jsx +124 -0
- package/minimal/src/sections/user/user-new-edit-form.jsx +285 -0
- package/minimal/src/sections/user/user-quick-edit-form.jsx +177 -0
- package/minimal/src/sections/user/user-table-filters-result.jsx +107 -0
- package/minimal/src/sections/user/user-table-row.jsx +138 -0
- package/minimal/src/sections/user/user-table-toolbar.jsx +150 -0
- package/minimal/src/sections/user/view/index.js +5 -0
- package/minimal/src/sections/user/view/user-cards-view.jsx +45 -0
- package/minimal/src/sections/user/view/user-create-view.jsx +38 -0
- package/minimal/src/sections/user/view/user-edit-view.jsx +48 -0
- package/minimal/src/sections/user/view/user-list-view.jsx +367 -0
- package/minimal/src/sections/user/view/user-profile-view.jsx +134 -0
- package/minimal/src/theme/css.js +152 -0
- package/minimal/src/theme/custom-shadows.js +32 -0
- package/minimal/src/theme/index.jsx +80 -0
- package/minimal/src/theme/options/contrast.js +34 -0
- package/minimal/src/theme/options/presets.js +89 -0
- package/minimal/src/theme/options/right-to-left.jsx +31 -0
- package/minimal/src/theme/overrides/components/accordion.js +43 -0
- package/minimal/src/theme/overrides/components/alert.js +68 -0
- package/minimal/src/theme/overrides/components/appbar.js +13 -0
- package/minimal/src/theme/overrides/components/autocomplete.js +44 -0
- package/minimal/src/theme/overrides/components/avatar.js +103 -0
- package/minimal/src/theme/overrides/components/backdrop.js +18 -0
- package/minimal/src/theme/overrides/components/badge.js +90 -0
- package/minimal/src/theme/overrides/components/breadcrumbs.js +21 -0
- package/minimal/src/theme/overrides/components/button-group.js +90 -0
- package/minimal/src/theme/overrides/components/button.js +139 -0
- package/minimal/src/theme/overrides/components/card.js +30 -0
- package/minimal/src/theme/overrides/components/checkbox.js +13 -0
- package/minimal/src/theme/overrides/components/chip.js +123 -0
- package/minimal/src/theme/overrides/components/css-baseline.js +48 -0
- package/minimal/src/theme/overrides/components/data-grid.js +95 -0
- package/minimal/src/theme/overrides/components/date-picker.jsx +83 -0
- package/minimal/src/theme/overrides/components/dialog.js +49 -0
- package/minimal/src/theme/overrides/components/drawer.js +36 -0
- package/minimal/src/theme/overrides/components/fab.js +159 -0
- package/minimal/src/theme/overrides/components/list.js +33 -0
- package/minimal/src/theme/overrides/components/loading-button.js +30 -0
- package/minimal/src/theme/overrides/components/menu.js +15 -0
- package/minimal/src/theme/overrides/components/pagination.js +77 -0
- package/minimal/src/theme/overrides/components/paper.js +18 -0
- package/minimal/src/theme/overrides/components/popover.js +21 -0
- package/minimal/src/theme/overrides/components/progress.js +40 -0
- package/minimal/src/theme/overrides/components/radio.js +22 -0
- package/minimal/src/theme/overrides/components/rating.js +40 -0
- package/minimal/src/theme/overrides/components/select.js +26 -0
- package/minimal/src/theme/overrides/components/skeleton.js +16 -0
- package/minimal/src/theme/overrides/components/slider.js +30 -0
- package/minimal/src/theme/overrides/components/stepper.js +13 -0
- package/minimal/src/theme/overrides/components/svg-icon.js +15 -0
- package/minimal/src/theme/overrides/components/switch.js +66 -0
- package/minimal/src/theme/overrides/components/table.js +79 -0
- package/minimal/src/theme/overrides/components/tabs.js +39 -0
- package/minimal/src/theme/overrides/components/textfield.js +146 -0
- package/minimal/src/theme/overrides/components/timeline.js +20 -0
- package/minimal/src/theme/overrides/components/toggle-button.js +67 -0
- package/minimal/src/theme/overrides/components/tooltip.js +18 -0
- package/minimal/src/theme/overrides/components/tree-view.js +16 -0
- package/minimal/src/theme/overrides/components/typography.js +16 -0
- package/minimal/src/theme/overrides/default-props.jsx +239 -0
- package/minimal/src/theme/overrides/index.js +98 -0
- package/minimal/src/theme/palette.js +144 -0
- package/minimal/src/theme/shadows.js +41 -0
- package/minimal/src/theme/typography.js +107 -0
- package/minimal/src/utils/axios.js +53 -0
- package/minimal/src/utils/change-case.js +13 -0
- package/minimal/src/utils/flatten-array.js +14 -0
- package/minimal/src/utils/format-number.js +37 -0
- package/minimal/src/utils/format-time.js +27 -0
- package/minimal/src/utils/highlight.js +12 -0
- package/minimal/src/utils/storage-available.js +24 -0
- package/minimal/src/utils/uuidv4.js +10 -0
- package/minimal/vercel.json +8 -0
- package/minimal/vite.config.js +35 -0
- package/minimal/yarn.lock +6748 -0
- package/package.json +94 -0
- package/project/.eslintrc.cjs +22 -0
- package/project/config.js +18 -0
- package/project/config.menu.js +39 -0
- package/project/config.template.js +31 -0
- package/project/cypress/e2e/layouts.cy.js +170 -0
- package/project/cypress/e2e/login.cy.js +35 -0
- package/project/cypress/e2e/selectbar.cy.js +80 -0
- package/project/cypress/fixtures/CONFIG/MENU_CONFIG.js +39 -0
- package/project/cypress/fixtures/EMPEROR/EMPERORS_GET.json +51 -0
- package/project/cypress/fixtures/EMPEROR/EMPERORS_POST.json +9 -0
- package/project/cypress/fixtures/OAUTH/GITHUB/user.json +46 -0
- package/project/cypress/fixtures/example.json +5 -0
- package/project/cypress/support/commands.js +104 -0
- package/project/cypress/support/e2e.js +1 -0
- package/project/cypress.config.js +10 -0
- package/project/index.html +12 -0
- package/project/media/ProjectIcons/3d.png +0 -0
- package/project/media/ProjectIcons/box.png +0 -0
- package/project/media/ProjectIcons/cafe.png +0 -0
- package/project/media/ProjectIcons/cargo.png +0 -0
- package/project/media/ProjectIcons/cloud.png +0 -0
- package/project/media/ProjectIcons/code.png +0 -0
- package/project/media/ProjectIcons/company.png +0 -0
- package/project/media/ProjectIcons/conversation.png +0 -0
- package/project/media/ProjectIcons/distributed.png +0 -0
- package/project/media/ProjectIcons/fingerprint.png +0 -0
- package/project/media/ProjectIcons/forest.png +0 -0
- package/project/media/ProjectIcons/headphones.png +0 -0
- package/project/media/ProjectIcons/office.png +0 -0
- package/project/media/ProjectIcons/path.png +0 -0
- package/project/media/ProjectIcons/printer.png +0 -0
- package/project/media/ProjectIcons/project.png +0 -0
- package/project/media/ProjectIcons/resume.png +0 -0
- package/project/media/ProjectIcons/rocket.png +0 -0
- package/project/media/ProjectIcons/rtruck.png +0 -0
- package/project/media/ProjectIcons/sign.png +0 -0
- package/project/media/ProjectIcons/site.png +0 -0
- package/project/media/ProjectIcons/truck.png +0 -0
- package/project/media/logo.png +0 -0
- package/project/package-lock.json +22434 -0
- package/project/package.json +42 -0
- package/project/public/assets/background/overlay_2.jpg +0 -0
- package/project/public/assets/illustrations/illustration_dashboard.png +0 -0
- package/project/public/media/largeLogo.png +0 -0
- package/project/public/media/logo.png +0 -0
- package/project/public/vite.svg +1 -0
- package/project/routes.jsx +47 -0
- package/project/server/mock.json +110 -0
- package/project/server/oauthMock.js +27 -0
- package/project/server/package-lock.json +1505 -0
- package/project/server/package.json +20 -0
- package/project/server/server.js +127 -0
- package/project/src/Container.jsx +7 -0
- package/project/src/components/ActionButton.jsx +18 -0
- package/project/src/hooks/useEmperor.jsx +21 -0
- package/project/src/http/index.js +39 -0
- package/project/src/main.jsx +10 -0
- package/project/src/pages/Battles.jsx +16 -0
- package/project/src/pages/Emperor.jsx +50 -0
- package/project/src/pages/index.jsx +33 -0
- package/project/src/theme.js +151 -0
- package/project/src/widgets/ActionButton.jsx +68 -0
- package/project/src/widgets/AddNewEmperor.jsx +120 -0
- package/project/src/widgets/ProjectContainer.jsx +27 -0
- package/project/vite.config.js +6 -0
- package/project/vite.config.js.timestamp-1709564450418-45fdd27900806.mjs +341 -0
- package/public/assets/background/overlay_2.jpg +0 -0
- package/public/assets/illustrations/illustration_dashboard.png +0 -0
- package/public/vite.svg +1 -0
- package/src/ContextProvider/ContextProvider.jsx +19 -0
- package/src/GlobalSnackMessage/GlobalSnackMessage.jsx +45 -0
- package/src/GlobalSnackMessage/index.js +1 -0
- package/src/GlobalSnackMessage/styles.js +3 -0
- package/src/Platform.jsx +76 -0
- package/src/RouteManager/RouteManager.jsx +56 -0
- package/src/RouteManager/index.js +1 -0
- package/src/assets/illustrations/avatar-shape.jsx +31 -0
- package/src/assets/illustrations/background-shape.jsx +37 -0
- package/src/assets/illustrations/booking-illustration.jsx +335 -0
- package/src/assets/illustrations/check-in-illustration.jsx +96 -0
- package/src/assets/illustrations/check-out-illustration.jsx +69 -0
- package/src/assets/illustrations/coming-soon-illustration.jsx +125 -0
- package/src/assets/illustrations/forbidden-illustration.jsx +95 -0
- package/src/assets/illustrations/index.js +2 -0
- package/src/assets/illustrations/maintenance-illustration.jsx +228 -0
- package/src/assets/illustrations/motivation-illustration.jsx +74 -0
- package/src/assets/illustrations/order-complete-illustration.jsx +126 -0
- package/src/assets/illustrations/page-not-found-illustration.jsx +81 -0
- package/src/assets/illustrations/seo-illustration.jsx +244 -0
- package/src/assets/illustrations/sever-error-illustration.jsx +152 -0
- package/src/assets/illustrations/upgrade-storage-illustration.jsx +161 -0
- package/src/assets/illustrations/upload-illustration.jsx +622 -0
- package/src/components/Iconify/Iconify.jsx +18 -0
- package/src/components/Iconify/index.js +1 -0
- package/src/components/MiniTopBar/MiniTopBar.jsx +20 -0
- package/src/components/MiniTopBar/index.js +1 -0
- package/src/components/MiniTopBar/styles.js +6 -0
- package/src/components/NucleoidLoginForm/NucleoidLoginForm.jsx +69 -0
- package/src/components/NucleoidLoginForm/index.js +1 -0
- package/src/components/NucleoidLoginForm/styles.js +3 -0
- package/src/components/Sidebar/Sidebar.jsx +76 -0
- package/src/components/Sidebar/index.js +1 -0
- package/src/components/Sidebar/styles.js +25 -0
- package/src/components/SocialLoginButtons/SocialLoginButtons.jsx +55 -0
- package/src/components/SocialLoginButtons/index.js +1 -0
- package/src/components/SocialLoginButtons/styles.js +3 -0
- package/src/components/TopNavBar/TopNavBar.jsx +186 -0
- package/src/components/TopNavBar/index.js +1 -0
- package/src/components/TopNavBar/styles.js +7 -0
- package/src/components/animate/index.js +6 -0
- package/src/components/animate/motion-container.jsx +40 -0
- package/src/components/animate/motion-lazy.jsx +13 -0
- package/src/components/animate/motion-viewport.jsx +32 -0
- package/src/components/animate/variants/actions.js +6 -0
- package/src/components/animate/variants/background.js +103 -0
- package/src/components/animate/variants/bounce.js +111 -0
- package/src/components/animate/variants/container.js +22 -0
- package/src/components/animate/variants/fade.js +131 -0
- package/src/components/animate/variants/flip.js +58 -0
- package/src/components/animate/variants/index.js +12 -0
- package/src/components/animate/variants/path.js +14 -0
- package/src/components/animate/variants/rotate.js +37 -0
- package/src/components/animate/variants/scale.js +58 -0
- package/src/components/animate/variants/slide.js +69 -0
- package/src/components/animate/variants/transition.js +22 -0
- package/src/components/animate/variants/zoom.js +134 -0
- package/src/components/chart/chart.js +69 -0
- package/src/components/chart/index.js +5 -0
- package/src/components/chart/use-chart.js +215 -0
- package/src/components/custom-popover/custom-popover.jsx +48 -0
- package/src/components/custom-popover/index.js +3 -0
- package/src/components/custom-popover/styles.js +84 -0
- package/src/components/custom-popover/use-popover.js +22 -0
- package/src/components/custom-popover/utils.js +100 -0
- package/src/components/file-thumbnail/download-button.jsx +41 -0
- package/src/components/file-thumbnail/file-thumbnail.jsx +74 -0
- package/src/components/file-thumbnail/index.js +5 -0
- package/src/components/file-thumbnail/utils.js +148 -0
- package/src/components/image/image.jsx +121 -0
- package/src/components/image/index.js +1 -0
- package/src/components/image/utils.js +15 -0
- package/src/components/label/index.js +1 -0
- package/src/components/label/label.jsx +53 -0
- package/src/components/label/styles.js +78 -0
- package/src/components/loading-screen/index.js +2 -0
- package/src/components/loading-screen/loading-screen.jsx +25 -0
- package/src/components/loading-screen/splash-screen.jsx +97 -0
- package/src/components/logo/index.js +1 -0
- package/src/components/logo/logo.jsx +30 -0
- package/src/components/logo/styles.js +17 -0
- package/src/components/nav-section/horizontal/index.js +1 -0
- package/src/components/nav-section/horizontal/nav-item.jsx +230 -0
- package/src/components/nav-section/horizontal/nav-list.jsx +120 -0
- package/src/components/nav-section/horizontal/nav-section-horizontal.jsx +45 -0
- package/src/components/nav-section/index.js +3 -0
- package/src/components/nav-section/mini/index.js +1 -0
- package/src/components/nav-section/mini/nav-item.jsx +249 -0
- package/src/components/nav-section/mini/nav-list.jsx +114 -0
- package/src/components/nav-section/mini/nav-section-mini.jsx +39 -0
- package/src/components/nav-section/vertical/index.js +1 -0
- package/src/components/nav-section/vertical/nav-item.jsx +302 -0
- package/src/components/nav-section/vertical/nav-list.jsx +73 -0
- package/src/components/nav-section/vertical/nav-section-vertical.jsx +78 -0
- package/src/components/scrollbar/index.js +1 -0
- package/src/components/scrollbar/scrollbar.jsx +41 -0
- package/src/components/scrollbar/styles.js +27 -0
- package/src/components/search-not-found/index.js +1 -0
- package/src/components/search-not-found/search-not-found.jsx +31 -0
- package/src/components/settings/context/index.js +2 -0
- package/src/components/settings/context/settings-context.js +14 -0
- package/src/components/settings/context/settings-provider.jsx +52 -0
- package/src/components/settings/drawer/base-option.jsx +54 -0
- package/src/components/settings/drawer/fullscreen-option.jsx +60 -0
- package/src/components/settings/drawer/index.js +1 -0
- package/src/components/settings/drawer/layout-options.jsx +146 -0
- package/src/components/settings/drawer/presets-options.jsx +55 -0
- package/src/components/settings/drawer/settings-drawer.jsx +191 -0
- package/src/components/settings/drawer/stretch-options.jsx +69 -0
- package/src/components/settings/index.js +3 -0
- package/src/components/svg-color/index.js +1 -0
- package/src/components/svg-color/svg-color.jsx +25 -0
- package/src/config/config.js +47 -0
- package/src/config/schemas.js +134 -0
- package/src/context/reducer.js +55 -0
- package/src/global.css +2 -0
- package/src/hooks/index.js +2 -0
- package/src/hooks/use-boolean.js +27 -0
- package/src/hooks/use-event-listener.js +34 -0
- package/src/hooks/use-local-storage.js +89 -0
- package/src/hooks/use-off-set-top.js +37 -0
- package/src/hooks/use-responsive.js +47 -0
- package/src/hooks/use-scroll-to-top.js +14 -0
- package/src/hooks/use-user.js +58 -0
- package/src/hooks/useApi.js +25 -0
- package/src/hooks/useItemsState.js +23 -0
- package/src/hooks/useProjects.js +24 -0
- package/src/hooks/useSettings.jsx +51 -0
- package/src/http/index.js +152 -0
- package/src/http/oauth.js +27 -0
- package/src/http/user.js +92 -0
- package/src/layouts/AppLayout.jsx +113 -0
- package/src/layouts/CompactLayout/CompactLayout.jsx +32 -0
- package/src/layouts/CompactLayout/index.js +1 -0
- package/src/layouts/DashboardLayout/DashboardLayout.jsx +87 -0
- package/src/layouts/DashboardLayout/config-navigation.jsx +0 -0
- package/src/layouts/DashboardLayout/header.jsx +106 -0
- package/src/layouts/DashboardLayout/index.js +2 -0
- package/src/layouts/DashboardLayout/main.jsx +64 -0
- package/src/layouts/DashboardLayout/nav-horizontal.jsx +62 -0
- package/src/layouts/DashboardLayout/nav-mini.jsx +79 -0
- package/src/layouts/DashboardLayout/nav-vertical.jsx +201 -0
- package/src/layouts/FullScreenLayout/FullScreenLayout.jsx +101 -0
- package/src/layouts/FullScreenLayout/index.js +1 -0
- package/src/layouts/FullScreenLayout/nav-horizontal.jsx +45 -0
- package/src/layouts/FullScreenLayout/nav-vertical.jsx +136 -0
- package/src/layouts/MainLayout/MainLayout.jsx +21 -0
- package/src/layouts/MainLayout/footer.jsx +153 -0
- package/src/layouts/MainLayout/header.jsx +81 -0
- package/src/layouts/MainLayout/index.js +1 -0
- package/src/layouts/MainLayout/nav/desktop/index.jsx +20 -0
- package/src/layouts/MainLayout/nav/desktop/nav-item.jsx +186 -0
- package/src/layouts/MainLayout/nav/desktop/nav-list.jsx +145 -0
- package/src/layouts/MainLayout/nav/mobile/index.jsx +60 -0
- package/src/layouts/MainLayout/nav/mobile/nav-item.jsx +90 -0
- package/src/layouts/MainLayout/nav/mobile/nav-list.jsx +72 -0
- package/src/layouts/Page.jsx +16 -0
- package/src/layouts/SimpleLayout/SimpleLayout.jsx +8 -0
- package/src/layouts/SimpleLayout/index.js +1 -0
- package/src/layouts/TwoSideLayout/TwoSideLayout.jsx +31 -0
- package/src/layouts/TwoSideLayout/index.js +1 -0
- package/src/layouts/auth/classic.jsx +95 -0
- package/src/layouts/auth/modern-compact.jsx +51 -0
- package/src/layouts/auth/modern.jsx +93 -0
- package/src/layouts/common/ProjectBar/index.jsx +324 -0
- package/src/layouts/common/ProjectBar/result-item.jsx +90 -0
- package/src/layouts/common/ProjectBar/utils.js +86 -0
- package/src/layouts/common/account-popover.jsx +117 -0
- package/src/layouts/common/header-shadow.jsx +26 -0
- package/src/layouts/common/header-sim.jsx +52 -0
- package/src/layouts/common/header-simple.jsx +76 -0
- package/src/layouts/common/nav-toggle-button.jsx +57 -0
- package/src/layouts/common/notifications-popover/index.jsx +177 -0
- package/src/layouts/common/notifications-popover/notification-item.jsx +252 -0
- package/src/layouts/common/settings-button.jsx +48 -0
- package/src/layouts/config-layout.js +12 -0
- package/src/layouts/index.js +7 -0
- package/src/pages/404.jsx +17 -0
- package/src/pages/Callback.jsx +66 -0
- package/src/pages/ConfigError.jsx +49 -0
- package/src/pages/LoginPage.jsx +35 -0
- package/src/routes/components/index.js +1 -0
- package/src/routes/components/router-link.jsx +11 -0
- package/src/routes/hooks/index.js +4 -0
- package/src/routes/hooks/use-active-link.js +15 -0
- package/src/routes/hooks/use-pathname.js +10 -0
- package/src/routes/hooks/use-router.js +21 -0
- package/src/theme/css.js +152 -0
- package/src/theme/custom-shadows.js +47 -0
- package/src/theme/index.jsx +63 -0
- package/src/theme/options/contrast.js +34 -0
- package/src/theme/options/presets.js +89 -0
- package/src/theme/options/right-to-left.jsx +26 -0
- package/src/theme/overrides/components/accordion.js +43 -0
- package/src/theme/overrides/components/alert.js +69 -0
- package/src/theme/overrides/components/appbar.js +13 -0
- package/src/theme/overrides/components/autocomplete.js +44 -0
- package/src/theme/overrides/components/avatar.js +111 -0
- package/src/theme/overrides/components/backdrop.js +18 -0
- package/src/theme/overrides/components/badge.js +90 -0
- package/src/theme/overrides/components/breadcrumbs.js +21 -0
- package/src/theme/overrides/components/button-group.js +90 -0
- package/src/theme/overrides/components/button.js +145 -0
- package/src/theme/overrides/components/card.js +30 -0
- package/src/theme/overrides/components/checkbox.js +13 -0
- package/src/theme/overrides/components/chip.js +129 -0
- package/src/theme/overrides/components/css-baseline.js +48 -0
- package/src/theme/overrides/components/data-grid.js +94 -0
- package/src/theme/overrides/components/date-picker.jsx +94 -0
- package/src/theme/overrides/components/dialog.js +49 -0
- package/src/theme/overrides/components/drawer.js +39 -0
- package/src/theme/overrides/components/fab.js +165 -0
- package/src/theme/overrides/components/list.js +33 -0
- package/src/theme/overrides/components/loading-button.js +30 -0
- package/src/theme/overrides/components/menu.js +15 -0
- package/src/theme/overrides/components/pagination.js +81 -0
- package/src/theme/overrides/components/paper.js +18 -0
- package/src/theme/overrides/components/popover.js +20 -0
- package/src/theme/overrides/components/progress.js +40 -0
- package/src/theme/overrides/components/radio.js +22 -0
- package/src/theme/overrides/components/rating.js +40 -0
- package/src/theme/overrides/components/select.js +26 -0
- package/src/theme/overrides/components/skeleton.js +16 -0
- package/src/theme/overrides/components/slider.js +30 -0
- package/src/theme/overrides/components/stepper.js +13 -0
- package/src/theme/overrides/components/svg-icon.js +15 -0
- package/src/theme/overrides/components/switch.js +66 -0
- package/src/theme/overrides/components/table.js +79 -0
- package/src/theme/overrides/components/tabs.js +39 -0
- package/src/theme/overrides/components/textfield.js +146 -0
- package/src/theme/overrides/components/timeline.js +20 -0
- package/src/theme/overrides/components/toggle-button.js +70 -0
- package/src/theme/overrides/components/tooltip.js +18 -0
- package/src/theme/overrides/components/tree-view.js +16 -0
- package/src/theme/overrides/components/typography.js +16 -0
- package/src/theme/overrides/default-props.jsx +238 -0
- package/src/theme/overrides/index.js +100 -0
- package/src/theme/palette.js +144 -0
- package/src/theme/shadows.js +41 -0
- package/src/theme/typography.js +107 -0
- package/src/utils/flatten-array.js +16 -0
- package/src/utils/format-number.js +37 -0
- package/src/utils/format-time.js +27 -0
- package/src/utils/storage-available.js +24 -0
- package/src/widgets/Login/Login.jsx +55 -0
- package/src/widgets/LoginForm/LoginForm.jsx +80 -0
- package/src/widgets/LoginForm/LoginFormStyles.js +43 -0
- package/src/widgets/LoginForm/index.js +1 -0
- package/src/widgets/SettingsDialog.jsx +308 -0
- package/src/widgets/error/index.js +1 -0
- package/src/widgets/error/not-found-view.jsx +42 -0
- package/vite/vite.js +77 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M23.172 0C23.7022 0 24.2107 0.210507 24.5857 0.585255L36.4137 12.4044C36.7891 12.7795 37 13.2884 37 13.8191V35.3333C37 37.9107 34.8689 40 32.24 40H7.76C5.13112 40 3 37.9107 3 35.3333V4.66667C3 2.08934 5.13112 0 7.76 0H23.172Z" fill="#FFAB00"/>
|
|
3
|
+
<g filter="url(#filter0_d_2550_165181)">
|
|
4
|
+
<path d="M35.1548 12.1381C35.4678 12.4537 35.2443 12.9902 34.7998 12.9902H29C26.4227 12.9902 24.0976 10.7233 24.0976 8.21031V2.20435C24.0976 1.75791 24.6382 1.53528 24.9526 1.85224L35.1548 12.1381Z" fill="white" fill-opacity="0.24" shape-rendering="crispEdges"/>
|
|
5
|
+
</g>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 16.9902H24V18.7402H10V16.9902ZM10 20.4902H24V22.2402H10V20.4902ZM10 23.9902H24V25.7402H10V23.9902ZM10 27.4902H17V29.2402H10V27.4902Z" fill="white"/>
|
|
7
|
+
<defs>
|
|
8
|
+
<filter id="filter0_d_2550_165181" x="22.0977" y="1.70337" width="15.2031" height="15.2869" 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 dy="2"/>
|
|
12
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
13
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
14
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
15
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2550_165181"/>
|
|
16
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2550_165181" result="shape"/>
|
|
17
|
+
</filter>
|
|
18
|
+
</defs>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M23.172 0C23.7022 0 24.2107 0.210507 24.5857 0.585255L36.4137 12.4044C36.7891 12.7795 37 13.2884 37 13.8191V35.3333C37 37.9107 34.8689 40 32.24 40H7.76C5.13112 40 3 37.9107 3 35.3333V4.66667C3 2.08934 5.13112 0 7.76 0H23.172Z" fill="#00A76F"/>
|
|
3
|
+
<g filter="url(#filter0_d_1255_158054)">
|
|
4
|
+
<path d="M35.1548 12.1381C35.4678 12.4537 35.2443 12.9902 34.7998 12.9902H29C26.4227 12.9902 24.0976 10.7233 24.0976 8.21031V2.20435C24.0976 1.75791 24.6382 1.53528 24.9526 1.85224L35.1548 12.1381Z" fill="white" fill-opacity="0.24" shape-rendering="crispEdges"/>
|
|
5
|
+
</g>
|
|
6
|
+
<path d="M23.9959 16L23.9956 16.0112L24 16.0113V30H22.8337L22.8336 29.9983H19.3263L18.1603 30L18.1601 29.9983H15.8517L14.6855 30L14.6854 29.9983H11.1701L10.0041 30L10.0039 29.9983L10.0017 28.8328L10.0039 28.8326V25.3104L10.0009 24.1449L10.0039 24.1447V20.6224L10 20.6227V19.457L10.0039 19.4568V17.1657L10 17.1657V16H23.9959ZM14.6854 25.3104H11.1701V28.8326H14.6854V25.3104ZM18.1601 25.3104H15.8517V28.8326H18.1601V25.3104ZM22.8336 25.3104H19.3263V28.8326H22.8336V25.3104ZM14.6854 20.6224H11.1701V24.1447H14.6854V20.6224ZM18.1601 20.6224H15.8517V24.1447H18.1601V20.6224ZM22.8336 20.6224H19.3263V24.1447H22.8336V20.6224ZM22.8336 17.1657H11.1701V19.4568H22.8336V17.1657Z" fill="white"/>
|
|
7
|
+
<defs>
|
|
8
|
+
<filter id="filter0_d_1255_158054" x="22.0977" y="1.70337" width="15.2031" height="15.2869" 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 dy="2"/>
|
|
12
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
13
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
14
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
15
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1255_158054"/>
|
|
16
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1255_158054" result="shape"/>
|
|
17
|
+
</filter>
|
|
18
|
+
</defs>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg width="40" height="41" viewBox="0 0 40 41" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M23.172 0.990234C23.7022 0.990234 24.2107 1.20074 24.5857 1.57549L36.4137 13.3946C36.7891 13.7697 37 14.2786 37 14.8093V36.3236C37 38.9009 34.8689 40.9902 32.24 40.9902H7.76C5.13112 40.9902 3 38.9009 3 36.3236V5.6569C3 3.07957 5.13112 0.990234 7.76 0.990234H23.172Z" fill="#C4CDD5"/>
|
|
3
|
+
<g filter="url(#filter0_d_1995_147665)">
|
|
4
|
+
<path d="M35.1548 13.1284C35.4678 13.4439 35.2443 13.9805 34.7998 13.9805H29C26.4227 13.9805 24.0976 11.7135 24.0976 9.20054V3.19458C24.0976 2.74814 24.6382 2.52551 24.9526 2.84248L35.1548 13.1284Z" fill="white" fill-opacity="0.24" shape-rendering="crispEdges"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<filter id="filter0_d_1995_147665" x="22.0977" y="2.6936" width="15.2031" height="15.2869" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
8
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
9
|
+
<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"/>
|
|
10
|
+
<feOffset dy="2"/>
|
|
11
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
12
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
13
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
14
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1995_147665"/>
|
|
15
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1995_147665" result="shape"/>
|
|
16
|
+
</filter>
|
|
17
|
+
</defs>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M33.5999 6.99023H4.3999C3.29533 6.99023 2.3999 7.88566 2.3999 8.99023V22.5902C2.3999 23.6948 3.29533 24.5902 4.3999 24.5902H33.5999C34.7045 24.5902 35.5999 23.6948 35.5999 22.5902V8.99023C35.5999 7.88566 34.7045 6.99023 33.5999 6.99023Z" fill="#F9B552"/>
|
|
3
|
+
<path d="M35.6 10.1902H4.4C1.96995 10.1902 0 12.1602 0 14.5902V32.5902C0 35.0203 1.96995 36.9902 4.4 36.9902H35.6C38.0301 36.9902 40 35.0203 40 32.5902V14.5902C40 12.1602 38.0301 10.1902 35.6 10.1902Z" fill="#FFCF5C"/>
|
|
4
|
+
<path d="M15.6 2.99023H4.4C1.96995 2.99023 0 4.96018 0 7.39023V13.7902C0 16.2203 1.96995 18.1902 4.4 18.1902H15.6C18.0301 18.1902 20 16.2203 20 13.7902V7.39023C20 4.96018 18.0301 2.99023 15.6 2.99023Z" fill="#FFCF5C"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1255_158091)">
|
|
3
|
+
<path d="M23.172 0C23.7022 0 24.2107 0.210507 24.5857 0.585255L36.4137 12.4044C36.7891 12.7795 37 13.2884 37 13.8191V35.3333C37 37.9107 34.8689 40 32.24 40H7.76C5.13112 40 3 37.9107 3 35.3333V4.66667C3 2.08934 5.13112 0 7.76 0H23.172Z" fill="#22C55E"/>
|
|
4
|
+
<g filter="url(#filter0_d_1255_158091)">
|
|
5
|
+
<path d="M35.1548 12.1381C35.4678 12.4537 35.2443 12.9902 34.7998 12.9902H29C26.4227 12.9902 24.0976 10.7233 24.0976 8.21031V2.20435C24.0976 1.75791 24.6382 1.53528 24.9526 1.85224L35.1548 12.1381Z" fill="white" fill-opacity="0.24" shape-rendering="crispEdges"/>
|
|
6
|
+
</g>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.9629 16H17.0371C18.5407 16 19.7186 16 20.638 16.1237C21.5783 16.25 22.3207 16.5144 22.9034 17.0966C23.4862 17.6793 23.75 18.4217 23.8763 19.3626C24 20.2814 24 21.4593 24 22.9629V23.0202C24 24.2633 24 25.2804 23.9323 26.1087C23.8646 26.9421 23.7259 27.6369 23.4146 28.2152C23.2779 28.4698 23.1086 28.6983 22.9034 28.9034C22.3207 29.4862 21.5783 29.75 20.6374 29.8763C19.7186 30 18.5407 30 17.0371 30H16.9629C15.4593 30 14.2814 30 13.362 29.8763C12.4217 29.75 11.6793 29.4856 11.0966 28.9034C10.5802 28.3871 10.3132 27.7444 10.1719 26.946C10.0319 26.1627 10.0065 25.1879 10.0013 23.978C10 23.67 10 23.3445 10 23.0007V22.9629C10 21.4593 10 20.2814 10.1237 19.362C10.25 18.4217 10.5144 17.6793 11.0966 17.0966C11.6793 16.5138 12.4217 16.25 13.3626 16.1237C14.2814 16 15.4593 16 16.9629 16ZM13.4922 17.0913C12.66 17.2033 12.158 17.4169 11.7874 17.7874C11.4163 18.1586 11.2033 18.66 11.0913 19.4928C10.978 20.3393 10.9767 21.4515 10.9767 23C10.9767 23.3445 10.9767 23.6681 10.978 23.9735C10.9833 25.1938 11.0106 26.0872 11.133 26.7754C11.2528 27.4494 11.4573 27.8824 11.7874 28.2126C12.1586 28.5837 12.66 28.7967 13.4928 28.9087C14.3393 29.022 15.4515 29.0233 17 29.0233C18.5485 29.0233 19.6607 29.022 20.5072 28.9087C21.34 28.7967 21.842 28.5831 22.2132 28.2126C22.35 28.0758 22.4613 27.9247 22.5544 27.7522C22.7706 27.3511 22.895 26.8145 22.9588 26.0299C23.0226 25.2452 23.0233 24.2672 23.0233 23C23.0233 21.4515 23.022 20.3393 22.9087 19.4928C22.7967 18.66 22.5831 18.158 22.2126 17.7868C21.8414 17.4163 21.34 17.2033 20.5072 17.0913C19.6607 16.978 18.5485 16.9767 17 16.9767C15.4515 16.9767 14.3387 16.978 13.4922 17.0913Z" fill="white"/>
|
|
8
|
+
<path d="M23.0226 23.8334L22.878 23.8139C21.0261 23.5573 19.3312 24.5198 18.4684 25.9712C17.3549 23.1549 14.4136 21.234 11.1272 21.7061L10.98 21.7269C10.9767 22.1157 10.9767 22.5383 10.9767 23C10.9767 23.3445 10.9767 23.6681 10.978 23.9735C10.9833 25.1938 11.0106 26.0872 11.133 26.7754C11.2528 27.4494 11.4573 27.8824 11.7874 28.2126C12.1586 28.5837 12.66 28.7967 13.4928 28.9087C14.3393 29.022 15.4515 29.0233 17 29.0233C18.5485 29.0233 19.6607 29.022 20.5072 28.9087C21.34 28.7967 21.842 28.5831 22.2132 28.2126C22.35 28.0758 22.4613 27.9247 22.5544 27.7522C22.7706 27.3511 22.895 26.8145 22.9588 26.0299C23.0083 25.4269 23.0193 24.7092 23.0226 23.8334Z" fill="white"/>
|
|
9
|
+
<path d="M20.907 20.3953C20.907 20.7407 20.7698 21.072 20.5255 21.3162C20.2813 21.5605 19.95 21.6977 19.6047 21.6977C19.2593 21.6977 18.928 21.5605 18.6838 21.3162C18.4395 21.072 18.3023 20.7407 18.3023 20.3953C18.3023 20.05 18.4395 19.7187 18.6838 19.4745C18.928 19.2302 19.2593 19.093 19.6047 19.093C19.95 19.093 20.2813 19.2302 20.5255 19.4745C20.7698 19.7187 20.907 20.05 20.907 20.3953Z" fill="white"/>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<filter id="filter0_d_1255_158091" x="22.0977" y="1.70337" width="15.2031" height="15.2869" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
13
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
14
|
+
<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"/>
|
|
15
|
+
<feOffset dy="2"/>
|
|
16
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
17
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
18
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
19
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1255_158091"/>
|
|
20
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1255_158091" result="shape"/>
|
|
21
|
+
</filter>
|
|
22
|
+
<clipPath id="clip0_1255_158091">
|
|
23
|
+
<rect width="40" height="40" fill="white"/>
|
|
24
|
+
</clipPath>
|
|
25
|
+
</defs>
|
|
26
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1255_158106)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.14461 0.00976563H14.1767L20.9738 7.10466V20.8828C20.9738 22.6083 19.5811 24.0098 17.8556 24.0098H6.14461C4.42782 24.0098 3.02637 22.6083 3.02637 20.8828V3.12801C3.02634 1.41122 4.42782 0.00976562 6.14461 0.00976562V0.00976563Z" fill="#FFD666"/>
|
|
4
|
+
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M14.168 0.00976562V7.04334H20.9738L14.168 0.00976562Z" fill="white"/>
|
|
5
|
+
<path d="M8.77246 16.3106C8.8688 16.3281 8.96517 16.3369 9.06151 16.3369C9.46442 16.3369 9.66589 16.1442 9.66589 15.7676V12.5092H10.8396V15.8376C10.8396 16.3544 10.7082 16.7486 10.4455 17.0201C10.1914 17.2829 9.83231 17.423 9.37685 17.423C9.1929 17.423 8.99143 17.4055 8.77246 17.3617V16.3106ZM13.3272 17.4405C12.8367 17.4405 12.3987 17.2916 12.0309 16.9938C11.663 16.6872 11.4615 16.3193 11.4352 15.8726L12.5039 15.5661C12.5301 15.8025 12.6265 16.004 12.7929 16.1617C12.9681 16.3193 13.1608 16.3982 13.3798 16.3982C13.5637 16.3982 13.7039 16.3544 13.8177 16.2755C13.9316 16.1967 13.9841 16.1004 13.9841 15.969C13.9841 15.8639 13.9404 15.7675 13.8528 15.6974C13.7651 15.6186 13.6513 15.5573 13.5112 15.5135C13.371 15.4697 13.2133 15.4172 13.0382 15.3733C12.863 15.3296 12.6878 15.2682 12.5126 15.1894C12.3462 15.1193 12.1885 15.0317 12.0484 14.9266C11.9082 14.8303 11.7944 14.6813 11.698 14.4974C11.6104 14.3135 11.5666 14.1033 11.5666 13.858C11.5666 13.4551 11.7418 13.1222 12.0834 12.8595C12.425 12.5879 12.8367 12.4565 13.3184 12.4565C13.7914 12.4565 14.2119 12.5704 14.571 12.8069C14.9214 13.0346 15.1403 13.3412 15.2279 13.7179L14.1155 14.1821C14.063 13.9719 13.9754 13.8054 13.8353 13.6828C13.6951 13.5602 13.5199 13.4989 13.3185 13.4989C13.1608 13.4989 13.0382 13.5339 12.9418 13.5952C12.8542 13.6565 12.8104 13.7441 12.8104 13.8492C12.8104 13.9544 12.8717 14.0332 12.9944 14.1033C13.1082 14.1646 13.2572 14.2171 13.4411 14.2434C13.6163 14.2697 13.809 14.3223 14.0192 14.3923C14.2294 14.4623 14.4221 14.55 14.606 14.6463C14.7812 14.7514 14.9301 14.9178 15.0527 15.1368C15.1754 15.3558 15.2279 15.6186 15.2279 15.9339C15.2279 16.3806 15.0527 16.7485 14.7024 17.0288C14.352 17.3004 13.8966 17.4405 13.3272 17.4405Z" fill="#B76E00"/>
|
|
6
|
+
</g>
|
|
7
|
+
<defs>
|
|
8
|
+
<clipPath id="clip0_1255_158106">
|
|
9
|
+
<rect width="24" height="24" fill="white" transform="translate(0 0.00976562)"/>
|
|
10
|
+
</clipPath>
|
|
11
|
+
</defs>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M23.172 0C23.7022 0 24.2107 0.210507 24.5857 0.585255L36.4137 12.4044C36.7891 12.7795 37 13.2884 37 13.8191V35.3333C37 37.9107 34.8689 40 32.24 40H7.76C5.13112 40 3 37.9107 3 35.3333V4.66667C3 2.08934 5.13112 0 7.76 0H23.172Z" fill="#E94848"/>
|
|
3
|
+
<g filter="url(#filter0_d_1255_158068)">
|
|
4
|
+
<path d="M35.1548 12.1381C35.4678 12.4537 35.2443 12.9902 34.7998 12.9902H29C26.4227 12.9902 24.0976 10.7233 24.0976 8.21031V2.20435C24.0976 1.75791 24.6382 1.53528 24.9526 1.85224L35.1548 12.1381Z" fill="white" fill-opacity="0.24" shape-rendering="crispEdges"/>
|
|
5
|
+
</g>
|
|
6
|
+
<path d="M16.0667 15.9902C15.2131 15.9902 14.5111 16.6922 14.5111 17.5458C14.5111 18.6069 15.1007 19.9243 15.7215 21.1625C15.2362 22.6816 14.6856 24.3096 13.9813 25.6833C12.5397 26.2489 11.2542 26.6693 10.4812 27.2923C10.4692 27.3046 10.4578 27.3176 10.4472 27.3312C10.1648 27.62 10 28.0133 10 28.4347C10 29.2883 10.702 29.9902 11.5556 29.9902C11.9718 29.9902 12.3736 29.8349 12.6639 29.5382C12.6739 29.5304 12.6837 29.5223 12.6931 29.5138C13.262 28.8345 13.9328 27.6021 14.5306 26.4757C15.9081 25.9338 17.3519 25.3824 18.7451 25.0513C19.7622 25.871 21.2336 26.4125 22.4444 26.4125C23.298 26.4125 24 25.7105 24 24.8569C24 24.0033 23.298 23.3013 22.4444 23.3013C21.4734 23.3013 20.0623 23.648 18.9833 24.0111C18.1088 23.1901 17.3053 22.1647 16.7278 21.075C17.1404 19.8038 17.6222 18.532 17.6222 17.5458C17.6222 16.6922 16.9203 15.9902 16.0667 15.9902ZM16.0667 16.9236C16.4158 16.9236 16.6889 17.1966 16.6889 17.5458C16.6889 18.0127 16.4389 18.8723 16.1493 19.7965C15.7624 18.8974 15.4444 18.0348 15.4444 17.5458C15.4444 17.1966 15.7175 16.9236 16.0667 16.9236ZM16.334 22.2465C16.8019 22.9907 17.3498 23.6832 17.9479 24.2979C17.0254 24.5501 16.1245 24.8733 15.2354 25.2118C15.6648 24.2426 16.0086 23.2368 16.334 22.2465ZM22.4444 24.2347C22.7936 24.2347 23.0667 24.5077 23.0667 24.8569C23.0667 25.2061 22.7936 25.4791 22.4444 25.4791C21.7435 25.4791 20.7472 25.1627 19.9507 24.7208C20.8649 24.4623 21.8625 24.2347 22.4444 24.2347ZM13.1597 27.0201C12.7223 27.8009 12.2875 28.5297 11.9833 28.8965C11.8794 28.9958 11.7412 29.0569 11.5556 29.0569C11.2064 29.0569 10.9333 28.7838 10.9333 28.4347C10.9333 28.2704 11.0032 28.1072 11.0986 28.002C11.4635 27.7196 12.2574 27.3812 13.1597 27.0201Z" fill="white"/>
|
|
7
|
+
<defs>
|
|
8
|
+
<filter id="filter0_d_1255_158068" x="22.0977" y="1.70337" width="15.2031" height="15.2869" 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 dy="2"/>
|
|
12
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
13
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
14
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
15
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1255_158068"/>
|
|
16
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1255_158068" result="shape"/>
|
|
17
|
+
</filter>
|
|
18
|
+
</defs>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M23.172 0C23.7022 0 24.2107 0.210507 24.5857 0.585255L36.4137 12.4044C36.7891 12.7795 37 13.2884 37 13.8191V35.3333C37 37.9107 34.8689 40 32.24 40H7.76C5.13112 40 3 37.9107 3 35.3333V4.66667C3 2.08934 5.13112 0 7.76 0H23.172Z" fill="#F56B36"/>
|
|
3
|
+
<g filter="url(#filter0_d_1255_158059)">
|
|
4
|
+
<path d="M35.1548 12.1381C35.4678 12.4537 35.2443 12.9902 34.7998 12.9902H29C26.4227 12.9902 24.0976 10.7233 24.0976 8.21031V2.20435C24.0976 1.75791 24.6382 1.53528 24.9526 1.85224L35.1548 12.1381Z" fill="white" fill-opacity="0.24" shape-rendering="crispEdges"/>
|
|
5
|
+
</g>
|
|
6
|
+
<path opacity="0.48" d="M16.4936 17.0127C12.9063 17.0127 10 19.9206 10 23.5063C10 27.0921 12.9079 29.9999 16.4936 29.9999C20.0794 29.9999 22.9888 27.0921 22.9888 23.5048H16.4936V17.0127Z" fill="white"/>
|
|
7
|
+
<path d="M17.5049 16V22.4952H23.9985C24.0001 18.9079 21.0922 16 17.5049 16Z" fill="white"/>
|
|
8
|
+
<defs>
|
|
9
|
+
<filter id="filter0_d_1255_158059" x="22.0977" y="1.70337" width="15.2031" height="15.2869" 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 dy="2"/>
|
|
13
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
14
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
15
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
16
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1255_158059"/>
|
|
17
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1255_158059" result="shape"/>
|
|
18
|
+
</filter>
|
|
19
|
+
</defs>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1255_158101)">
|
|
3
|
+
<path d="M23.172 0C23.7022 0 24.2107 0.210507 24.5857 0.585255L36.4137 12.4044C36.7891 12.7795 37 13.2884 37 13.8191V35.3333C37 37.9107 34.8689 40 32.24 40H7.76C5.13112 40 3 37.9107 3 35.3333V4.66667C3 2.08934 5.13112 0 7.76 0H23.172Z" fill="#002542"/>
|
|
4
|
+
<g filter="url(#filter0_d_1255_158101)">
|
|
5
|
+
<path d="M35.1548 12.1381C35.4678 12.4537 35.2443 12.9902 34.7998 12.9902H29C26.4227 12.9902 24.0976 10.7233 24.0976 8.21031V2.20435C24.0976 1.75791 24.6382 1.53528 24.9526 1.85224L35.1548 12.1381Z" fill="white" fill-opacity="0.24" shape-rendering="crispEdges"/>
|
|
6
|
+
</g>
|
|
7
|
+
<path d="M12 31V22.324H15.432C16.072 22.324 16.648 22.438 17.16 22.666C17.676 22.894 18.084 23.228 18.384 23.668C18.684 24.104 18.834 24.636 18.834 25.264C18.834 25.836 18.708 26.328 18.456 26.74C18.204 27.148 17.846 27.462 17.382 27.682C16.918 27.902 16.368 28.012 15.732 28.012H14.334V31H12ZM14.31 26.272H15.66C15.956 26.272 16.202 26.154 16.398 25.918C16.594 25.682 16.692 25.424 16.692 25.144C16.692 24.844 16.584 24.588 16.368 24.376C16.156 24.16 15.92 24.052 15.66 24.052H14.31V26.272Z" fill="#31A8FF"/>
|
|
8
|
+
<path d="M23.4796 31.12C23.0316 31.12 22.5876 31.064 22.1476 30.952C21.7116 30.84 21.3096 30.67 20.9416 30.442C20.5776 30.214 20.2776 29.928 20.0416 29.584C19.8056 29.236 19.6696 28.828 19.6336 28.36H22.0096C22.0536 28.564 22.1396 28.738 22.2676 28.882C22.3956 29.026 22.5616 29.138 22.7656 29.218C22.9696 29.294 23.2036 29.332 23.4676 29.332C23.7076 29.332 23.9336 29.308 24.1456 29.26C24.3616 29.212 24.5356 29.132 24.6676 29.02C24.8036 28.904 24.8716 28.744 24.8716 28.54C24.8716 28.364 24.8016 28.228 24.6616 28.132C24.5256 28.036 24.3476 27.962 24.1276 27.91C23.9116 27.858 23.6836 27.812 23.4436 27.772L22.1176 27.544C21.4536 27.436 20.9176 27.168 20.5096 26.74C20.1056 26.308 19.8956 25.724 19.8796 24.988C19.8716 24.404 20.0276 23.906 20.3476 23.494C20.6716 23.078 21.1036 22.762 21.6436 22.546C22.1876 22.326 22.7876 22.216 23.4436 22.216C24.2356 22.216 24.9056 22.332 25.4536 22.564C26.0016 22.796 26.4176 23.118 26.7016 23.53C26.9896 23.942 27.1396 24.416 27.1516 24.952H24.8356C24.8116 24.728 24.7436 24.548 24.6316 24.412C24.5196 24.272 24.3676 24.172 24.1756 24.112C23.9876 24.048 23.7596 24.016 23.4916 24.016C23.2676 24.016 23.0796 24.038 22.9276 24.082C22.7796 24.122 22.6616 24.176 22.5736 24.244C22.4856 24.308 22.4216 24.38 22.3816 24.46C22.3456 24.54 22.3276 24.62 22.3276 24.7C22.3276 24.896 22.3896 25.054 22.5136 25.174C22.6376 25.294 22.8856 25.388 23.2576 25.456L24.5896 25.684C25.2096 25.792 25.6956 25.96 26.0476 26.188C26.3996 26.412 26.6576 26.666 26.8216 26.95C26.9896 27.234 27.0956 27.516 27.1396 27.796C27.1836 28.076 27.2056 28.324 27.2056 28.54C27.2056 29.032 27.0416 29.474 26.7136 29.866C26.3896 30.254 25.9476 30.56 25.3876 30.784C24.8276 31.008 24.1916 31.12 23.4796 31.12Z" fill="#31A8FF"/>
|
|
9
|
+
</g>
|
|
10
|
+
<defs>
|
|
11
|
+
<filter id="filter0_d_1255_158101" x="22.0977" y="1.70337" width="15.2031" height="15.2869" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
12
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
13
|
+
<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"/>
|
|
14
|
+
<feOffset dy="2"/>
|
|
15
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
16
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
17
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
18
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1255_158101"/>
|
|
19
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1255_158101" result="shape"/>
|
|
20
|
+
</filter>
|
|
21
|
+
<clipPath id="clip0_1255_158101">
|
|
22
|
+
<rect width="40" height="40" fill="white"/>
|
|
23
|
+
</clipPath>
|
|
24
|
+
</defs>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1255_158096)">
|
|
3
|
+
<path d="M23.172 0C23.7022 0 24.2107 0.210507 24.5857 0.585255L36.4137 12.4044C36.7891 12.7795 37 13.2884 37 13.8191V35.3333C37 37.9107 34.8689 40 32.24 40H7.76C5.13112 40 3 37.9107 3 35.3333V4.66667C3 2.08934 5.13112 0 7.76 0H23.172Z" fill="#454F5B"/>
|
|
4
|
+
<g filter="url(#filter0_d_1255_158096)">
|
|
5
|
+
<path d="M35.1548 12.1381C35.4678 12.4537 35.2443 12.9902 34.7998 12.9902H29C26.4227 12.9902 24.0976 10.7233 24.0976 8.21031V2.20435C24.0976 1.75791 24.6382 1.53528 24.9526 1.85224L35.1548 12.1381Z" fill="white" fill-opacity="0.24" shape-rendering="crispEdges"/>
|
|
6
|
+
</g>
|
|
7
|
+
<path d="M7.99976 24.376V22.324H15.2838V24.376H12.7998V31H10.4598V24.376H7.99976Z" fill="white"/>
|
|
8
|
+
<path d="M24.3722 31H21.4562L19.8602 28.276L18.3002 31H15.8162L18.6482 26.62L15.8882 22.324H18.7802L20.1242 24.676L21.4562 22.324H23.9042L21.3122 26.284L24.3722 31Z" fill="white"/>
|
|
9
|
+
<path d="M24.8513 24.376V22.324H32.1353V24.376H29.6513V31H27.3113V24.376H24.8513Z" fill="white"/>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<filter id="filter0_d_1255_158096" x="22.0977" y="1.70337" width="15.2031" height="15.2869" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
13
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
14
|
+
<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"/>
|
|
15
|
+
<feOffset dy="2"/>
|
|
16
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
17
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
18
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
19
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1255_158096"/>
|
|
20
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1255_158096" result="shape"/>
|
|
21
|
+
</filter>
|
|
22
|
+
<clipPath id="clip0_1255_158096">
|
|
23
|
+
<rect width="40" height="40" fill="white"/>
|
|
24
|
+
</clipPath>
|
|
25
|
+
</defs>
|
|
26
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M23.172 0C23.7022 0 24.2107 0.210507 24.5857 0.585255L36.4137 12.4044C36.7891 12.7795 37 13.2884 37 13.8191V35.3333C37 37.9107 34.8689 40 32.24 40H7.76C5.13112 40 3 37.9107 3 35.3333V4.66667C3 2.08934 5.13112 0 7.76 0H23.172Z" fill="#FF5630"/>
|
|
3
|
+
<g filter="url(#filter0_d_1255_158044)">
|
|
4
|
+
<path d="M35.1548 12.1381C35.4678 12.4537 35.2443 12.9902 34.7998 12.9902H29C26.4227 12.9902 24.0976 10.7233 24.0976 8.21031V2.20435C24.0976 1.75791 24.6382 1.53528 24.9526 1.85224L35.1548 12.1381Z" fill="white" fill-opacity="0.24" shape-rendering="crispEdges"/>
|
|
5
|
+
</g>
|
|
6
|
+
<path opacity="0.4" d="M20.9204 21.8914V24.6336L26.0004 27.6637V18.8694L20.9204 21.8914Z" fill="white"/>
|
|
7
|
+
<path d="M21.5439 17.9902H10.936C10.424 17.9902 10 18.406 10 18.9256V27.616C10 28.1276 10.416 28.5514 10.936 28.5514H21.5519C22.0639 28.5514 22.4879 28.1356 22.4879 27.616V18.9176C22.4799 18.406 22.0639 17.9902 21.5439 17.9902ZM14.048 26.5447V19.9889L19.3919 23.2668L14.048 26.5447Z" fill="white"/>
|
|
8
|
+
<defs>
|
|
9
|
+
<filter id="filter0_d_1255_158044" x="22.0977" y="1.70337" width="15.2031" height="15.2869" 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 dy="2"/>
|
|
13
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
14
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
15
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
16
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1255_158044"/>
|
|
17
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1255_158044" result="shape"/>
|
|
18
|
+
</filter>
|
|
19
|
+
</defs>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M23.172 0C23.7022 0 24.2107 0.210507 24.5857 0.585255L36.4137 12.4044C36.7891 12.7795 37 13.2884 37 13.8191V35.3333C37 37.9107 34.8689 40 32.24 40H7.76C5.13112 40 3 37.9107 3 35.3333V4.66667C3 2.08934 5.13112 0 7.76 0H23.172Z" fill="#4586F9"/>
|
|
3
|
+
<g filter="url(#filter0_d_1255_158049)">
|
|
4
|
+
<path d="M35.1548 12.1381C35.4678 12.4537 35.2443 12.9902 34.7998 12.9902H29C26.4227 12.9902 24.0976 10.7233 24.0976 8.21031V2.20435C24.0976 1.75791 24.6382 1.53528 24.9526 1.85224L35.1548 12.1381Z" fill="white" fill-opacity="0.24" shape-rendering="crispEdges"/>
|
|
5
|
+
</g>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 16.9902H24V18.7402H10V16.9902ZM10 20.4902H24V22.2402H10V20.4902ZM10 23.9902H24V25.7402H10V23.9902ZM10 27.4902H17V29.2402H10V27.4902Z" fill="white"/>
|
|
7
|
+
<defs>
|
|
8
|
+
<filter id="filter0_d_1255_158049" x="22.0977" y="1.70337" width="15.2031" height="15.2869" 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 dy="2"/>
|
|
12
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
13
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
14
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
15
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1255_158049"/>
|
|
16
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1255_158049" result="shape"/>
|
|
17
|
+
</filter>
|
|
18
|
+
</defs>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1255_158078)">
|
|
3
|
+
<path d="M23.172 0C23.7022 0 24.2107 0.210507 24.5857 0.585255L36.4137 12.4044C36.7891 12.7795 37 13.2884 37 13.8191V35.3333C37 37.9107 34.8689 40 32.24 40H7.76C5.13112 40 3 37.9107 3 35.3333V4.66667C3 2.08934 5.13112 0 7.76 0H23.172Z" fill="#FFCD66"/>
|
|
4
|
+
<g filter="url(#filter0_d_1255_158078)">
|
|
5
|
+
<path d="M35.1548 12.1381C35.4678 12.4537 35.2443 12.9902 34.7998 12.9902H29C26.4227 12.9902 24.0976 10.7233 24.0976 8.21031V2.20435C24.0976 1.75791 24.6382 1.53528 24.9526 1.85224L35.1548 12.1381Z" fill="white" fill-opacity="0.24" shape-rendering="crispEdges"/>
|
|
6
|
+
</g>
|
|
7
|
+
<path opacity="0.48" d="M22.4298 16.4666H20.9166C20.8085 16.4666 20.7545 16.5132 20.7004 16.5599C20.6464 16.6066 20.6464 16.6999 20.6464 16.7932C20.7545 16.9799 20.8085 17.2132 20.8085 17.3999V23.4666L20.9706 24.3999C20.9706 24.4932 21.0787 24.5399 21.1328 24.5866C21.1868 24.5866 21.2408 24.6332 21.2408 24.6332L21.5111 24.7732C22.3758 25.0532 22.9162 25.7532 22.9162 26.4999V28.5999C22.9162 28.6932 22.9703 28.7866 23.0784 28.7866C23.1324 28.7866 23.1324 28.8332 23.1864 28.8332C23.2405 28.8332 23.2945 28.8332 23.3486 28.7866C23.7809 28.5066 23.9971 28.1332 23.9971 27.6666V17.8666C24.0512 17.0732 23.3486 16.4666 22.4298 16.4666Z" fill="white"/>
|
|
8
|
+
<path d="M15.1343 17.12C15.1884 16.98 15.2965 16.9333 15.4046 16.9333H15.945C16.0531 16.9333 16.1612 16.98 16.2152 17.12L16.5395 18.1933L16.9718 17.4L16.3233 16.0933V16H14.8641V16.0933L14.3237 17.4L14.756 18.2867L15.1343 17.12Z" fill="white"/>
|
|
9
|
+
<path d="M15.6204 17.3999L14.9178 19.4999C14.8098 19.6866 14.8638 19.9199 15.0259 20.0599C15.2421 20.2466 16.0528 20.2466 16.2689 20.0599C16.4311 19.9199 16.4851 19.6866 16.4311 19.4999L15.7285 17.3999H15.6204Z" fill="white"/>
|
|
10
|
+
<path d="M21.3493 25.1933L20.971 25.0533C20.5386 24.9133 20.2144 24.5867 20.2144 24.1667V17.4C20.2144 16.6067 19.5118 16 18.593 16H16.8636L17.5662 17.3067C17.6202 17.3533 17.6202 17.4467 17.5662 17.4933L16.8636 18.66C16.8636 18.7067 16.8096 18.7533 16.7555 18.7533L16.9717 19.36C17.1338 19.6867 17.0258 20.1067 16.7015 20.3867C16.4853 20.5733 16.107 20.6667 15.6746 20.6667C15.2423 20.6667 14.864 20.5733 14.6478 20.3867C14.3235 20.1067 14.2155 19.6867 14.3776 19.36L14.5938 18.8C14.4857 18.8 14.3776 18.7533 14.3235 18.66L13.7831 17.4933V17.3067L14.3235 16H11.6213C10.7026 16 10 16.6067 10 17.4V28.6C10 29.3933 10.7026 30 11.6213 30H20.8089C21.7276 30 22.4302 29.3933 22.4302 28.6V26.5C22.4302 25.8933 21.9978 25.38 21.3493 25.1933ZM15.1342 28.1333H14.5938C14.4316 28.1333 14.3235 28.04 14.3235 27.9C14.3235 27.76 14.4316 27.6667 14.5938 27.6667H15.1342C15.2963 27.6667 15.4044 27.76 15.4044 27.9C15.4044 28.04 15.2963 28.1333 15.1342 28.1333ZM15.1342 27.2H14.5938C14.4316 27.2 14.3235 27.1067 14.3235 26.9667C14.3235 26.8267 14.4316 26.7333 14.5938 26.7333H15.1342C15.2963 26.7333 15.4044 26.8267 15.4044 26.9667C15.4044 27.1067 15.2963 27.2 15.1342 27.2ZM15.1342 26.2667H14.5938C14.4316 26.2667 14.3235 26.1733 14.3235 26.0333C14.3235 25.8933 14.4316 25.8 14.5938 25.8H15.1342C15.2963 25.8 15.4044 25.8933 15.4044 26.0333C15.4044 26.1733 15.2963 26.2667 15.1342 26.2667ZM15.1342 25.3333H14.5938C14.4316 25.3333 14.3235 25.24 14.3235 25.1C14.3235 24.96 14.4316 24.8667 14.5938 24.8667H15.1342C15.2963 24.8667 15.4044 24.96 15.4044 25.1C15.4044 25.24 15.2963 25.3333 15.1342 25.3333ZM15.1342 24.4H14.5938C14.4316 24.4 14.3235 24.3067 14.3235 24.1667C14.3235 24.0267 14.4316 23.9333 14.5938 23.9333H15.1342C15.2963 23.9333 15.4044 24.0267 15.4044 24.1667C15.4044 24.3067 15.2963 24.4 15.1342 24.4ZM15.1342 23.4667H14.5938C14.4316 23.4667 14.3235 23.3733 14.3235 23.2333C14.3235 23.0933 14.4316 23 14.5938 23H15.1342C15.2963 23 15.4044 23.0933 15.4044 23.2333C15.4044 23.3733 15.2963 23.4667 15.1342 23.4667ZM15.1342 22.5333H14.5938C14.4316 22.5333 14.3235 22.44 14.3235 22.3C14.3235 22.16 14.4316 22.0667 14.5938 22.0667H15.1342C15.2963 22.0667 15.4044 22.16 15.4044 22.3C15.4044 22.44 15.2963 22.5333 15.1342 22.5333ZM15.1342 21.6H14.5938C14.4316 21.6 14.3235 21.5067 14.3235 21.3667C14.3235 21.2267 14.4316 21.1333 14.5938 21.1333H15.1342C15.2963 21.1333 15.4044 21.2267 15.4044 21.3667C15.4044 21.5067 15.2963 21.6 15.1342 21.6ZM16.7555 27.6667H16.2151C16.053 27.6667 15.9449 27.5733 15.9449 27.4333C15.9449 27.2933 16.053 27.2 16.2151 27.2H16.7555C16.9177 27.2 17.0258 27.2933 17.0258 27.4333C17.0258 27.5733 16.9177 27.6667 16.7555 27.6667ZM16.7555 26.7333H16.2151C16.053 26.7333 15.9449 26.64 15.9449 26.5C15.9449 26.36 16.053 26.2667 16.2151 26.2667H16.7555C16.9177 26.2667 17.0258 26.36 17.0258 26.5C17.0258 26.64 16.9177 26.7333 16.7555 26.7333ZM16.7555 25.8H16.2151C16.053 25.8 15.9449 25.7067 15.9449 25.5667C15.9449 25.4267 16.053 25.3333 16.2151 25.3333H16.7555C16.9177 25.3333 17.0258 25.4267 17.0258 25.5667C17.0258 25.7067 16.9177 25.8 16.7555 25.8ZM16.7555 24.8667H16.2151C16.053 24.8667 15.9449 24.7733 15.9449 24.6333C15.9449 24.4933 16.053 24.4 16.2151 24.4H16.7555C16.9177 24.4 17.0258 24.4933 17.0258 24.6333C17.0258 24.7733 16.9177 24.8667 16.7555 24.8667ZM16.7555 23.9333H16.2151C16.053 23.9333 15.9449 23.84 15.9449 23.7C15.9449 23.56 16.053 23.4667 16.2151 23.4667H16.7555C16.9177 23.4667 17.0258 23.56 17.0258 23.7C17.0258 23.84 16.9177 23.9333 16.7555 23.9333ZM16.7555 23H16.2151C16.053 23 15.9449 22.9067 15.9449 22.7667C15.9449 22.6267 16.053 22.5333 16.2151 22.5333H16.7555C16.9177 22.5333 17.0258 22.6267 17.0258 22.7667C17.0258 22.9067 16.9177 23 16.7555 23ZM16.7555 22.0667H16.2151C16.053 22.0667 15.9449 21.9733 15.9449 21.8333C15.9449 21.6933 16.053 21.6 16.2151 21.6H16.7555C16.9177 21.6 17.0258 21.6933 17.0258 21.8333C17.0258 21.9733 16.9177 22.0667 16.7555 22.0667Z" fill="white"/>
|
|
11
|
+
</g>
|
|
12
|
+
<defs>
|
|
13
|
+
<filter id="filter0_d_1255_158078" x="22.0977" y="1.70337" width="15.2031" height="15.2869" 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 dy="2"/>
|
|
17
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
18
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
19
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
20
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1255_158078"/>
|
|
21
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1255_158078" result="shape"/>
|
|
22
|
+
</filter>
|
|
23
|
+
<clipPath id="clip0_1255_158078">
|
|
24
|
+
<rect width="40" height="40" fill="white"/>
|
|
25
|
+
</clipPath>
|
|
26
|
+
</defs>
|
|
27
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="48" height="49" viewBox="0 0 48 49" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.48" d="M34.3481 38.3422C32.8525 36.8466 31.8332 34.9417 31.4186 32.8676L30.132 25.858C29.97 25.8176 24.7734 24.7734 24.7734 24.7734L25.7468 29.643C26.1613 31.717 27.1806 33.6219 28.6762 35.1175L36.5059 42.9472L37.7295 41.7236L34.3481 38.3422Z" fill="#00AB55"/>
|
|
3
|
+
<path d="M36.3329 27.4608C34.5915 25.7194 32.3946 24.5439 29.9799 24.0612L25.1103 23.0879C24.547 22.9751 23.9645 23.1516 23.5581 23.558C23.1518 23.9644 22.9755 24.5468 23.088 25.1103L24.0614 29.9798C24.5441 32.3947 25.7196 34.5914 27.4609 36.3328L35.2906 44.1624C36.4755 45.3473 38.0509 46 39.7266 46C41.4023 46 42.9777 45.3473 44.1626 44.1624C45.3475 42.9775 46 41.4021 46 39.7265C46 38.0508 45.3475 36.4754 44.1626 35.2905L36.3329 27.4608ZM41.7318 41.7319C41.1963 42.2674 40.484 42.5625 39.7266 42.5625C38.9691 42.5625 38.2569 42.2674 37.7213 41.7318L29.8916 33.9022C28.6319 32.6423 27.7814 31.0531 27.4323 29.3062L26.9642 26.9641L29.3062 27.4322C31.0532 27.7814 32.6425 28.6317 33.9022 29.8916L41.7319 37.7212C42.2675 38.2568 42.5625 38.9691 42.5625 39.7265C42.5625 40.484 42.2675 41.1962 41.7318 41.7319Z" fill="#00AB55"/>
|
|
4
|
+
<path d="M17.2109 5.4375H12.0169C11.3073 3.43705 9.3969 2 7.15625 2C4.31309 2 2 4.31309 2 7.15625C2 9.3969 3.43705 11.3073 5.4375 12.0169V17.125C5.4375 18.0743 6.20698 18.8438 7.15625 18.8438C8.10552 18.8438 8.875 18.0743 8.875 17.125V12.0169C10.3375 11.4982 11.4982 10.3376 12.0169 8.875H17.2109C18.1602 8.875 18.9297 8.10552 18.9297 7.15625C18.9297 6.20698 18.1602 5.4375 17.2109 5.4375ZM7.15625 8.875C6.20853 8.875 5.4375 8.10397 5.4375 7.15625C5.4375 6.20853 6.20853 5.4375 7.15625 5.4375C8.10397 5.4375 8.875 6.20853 8.875 7.15625C8.875 8.10397 8.10397 8.875 7.15625 8.875ZM30.7031 8.875H35.9831C36.5018 10.3375 37.6624 11.4982 39.125 12.0169V17.125C39.125 18.0743 39.8945 18.8438 40.8438 18.8438C41.793 18.8438 42.5625 18.0743 42.5625 17.125V12.0169C44.563 11.3074 46 9.3969 46 7.15625C46 4.31309 43.6869 2 40.8438 2C38.6031 2 36.6927 3.43705 35.9831 5.4375H30.7031C29.7539 5.4375 28.9844 6.20698 28.9844 7.15625C28.9844 8.10552 29.7539 8.875 30.7031 8.875ZM40.8438 5.4375C41.7915 5.4375 42.5625 6.20853 42.5625 7.15625C42.5625 8.10397 41.7915 8.875 40.8438 8.875C39.896 8.875 39.125 8.10397 39.125 7.15625C39.125 6.20853 39.896 5.4375 40.8438 5.4375ZM17.2109 39.125H12.0169C11.4982 37.6625 10.3376 36.5018 8.875 35.9831V30.7891C8.875 29.8398 8.10552 29.0703 7.15625 29.0703C6.20698 29.0703 5.4375 29.8398 5.4375 30.7891V35.9831C3.43705 36.6927 2 38.6031 2 40.8438C2 43.6869 4.31309 46 7.15625 46C9.3969 46 11.3073 44.563 12.0169 42.5625H17.2109C18.1602 42.5625 18.9297 41.793 18.9297 40.8438C18.9297 39.8945 18.1602 39.125 17.2109 39.125ZM7.15625 42.5625C6.20853 42.5625 5.4375 41.7915 5.4375 40.8438C5.4375 39.896 6.20853 39.125 7.15625 39.125C8.10397 39.125 8.875 39.896 8.875 40.8438C8.875 41.7915 8.10397 42.5625 7.15625 42.5625Z" fill="#005249"/>
|
|
5
|
+
<path d="M26.0625 7.15625C26.0625 8.34279 25.1006 9.30469 23.9141 9.30469C22.7275 9.30469 21.7656 8.34279 21.7656 7.15625C21.7656 5.96971 22.7275 5.00781 23.9141 5.00781C25.1006 5.00781 26.0625 5.96971 26.0625 7.15625ZM23.9141 38.6953C22.7275 38.6953 21.7656 39.6572 21.7656 40.8438C21.7656 42.0303 22.7275 42.9922 23.9141 42.9922C25.1006 42.9922 26.0625 42.0303 26.0625 40.8438C26.0625 39.6572 25.1006 38.6953 23.9141 38.6953ZM40.8438 22.0234C39.6572 22.0234 38.6953 22.9853 38.6953 24.1719C38.6953 25.3584 39.6572 26.3203 40.8438 26.3203C42.0303 26.3203 42.9922 25.3584 42.9922 24.1719C42.9922 22.9853 42.0303 22.0234 40.8438 22.0234ZM7.15625 22.0234C5.96971 22.0234 5.00781 22.9853 5.00781 24.1719C5.00781 25.3584 5.96971 26.3203 7.15625 26.3203C8.34279 26.3203 9.30469 25.3584 9.30469 24.1719C9.30469 22.9853 8.34279 22.0234 7.15625 22.0234Z" fill="#00AB55"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="48" height="49" viewBox="0 0 48 49" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.48" d="M9.04688 27.4098V13.309C9.04688 8.56471 12.8835 4.71875 17.6162 4.71875H12.3984C7.6522 4.71875 3.80469 8.56626 3.80469 13.3125V27.4062C3.80469 32.1524 7.6522 36 12.3984 36H17.6162C12.8835 36 9.04688 32.154 9.04688 27.4098Z" fill="#00B8D9"/>
|
|
3
|
+
<path d="M32.25 44.5938H15.75C13.472 44.5093 13.4737 41.24 15.75 41.1562H32.25C34.528 41.2407 34.5263 44.51 32.25 44.5938ZM35.6875 37.7188H12.3107C6.62541 37.7188 2 33.0934 2 27.4081V13.3125C2 7.62619 6.62619 3 12.3125 3H35.6875C41.3738 3 46 7.62619 46 13.3125V27.4062C46 33.0926 41.3738 37.7188 35.6875 37.7188ZM12.3125 6.4375C8.52163 6.4375 5.4375 9.52163 5.4375 13.3125V27.4081C5.4375 31.1979 8.52085 34.2812 12.3107 34.2812H35.6875C39.4784 34.2812 42.5625 31.1971 42.5625 27.4062V13.3125C42.5625 9.52163 39.4784 6.4375 35.6875 6.4375H12.3125Z" fill="#003768"/>
|
|
4
|
+
<path d="M22.1107 29.0395C21.9535 29.0395 21.7937 29.0178 21.635 28.9722C20.7227 28.7098 20.1958 27.7577 20.4581 26.8454L24.4112 13.0954C24.6735 12.1832 25.6258 11.6567 26.538 11.9185C27.4502 12.1809 27.9772 13.133 27.7149 14.0453L23.7618 27.7953C23.545 28.5488 22.8575 29.0395 22.1107 29.0395ZM32.4224 27.3203C31.978 27.3203 31.5338 27.149 31.1974 26.8072C30.5316 26.1306 30.5402 25.0424 31.2168 24.3765L34.5819 21.0648C34.9162 20.7038 34.9163 20.2295 34.5791 19.8684L31.2086 16.5059C30.5365 15.8354 30.5353 14.7472 31.2057 14.0752C31.8762 13.4031 32.9645 13.402 33.6364 14.0723L37.0066 17.4345C38.6751 19.0305 38.6751 21.9058 37.0062 23.5019C37.0036 23.5046 37.0009 23.5073 36.9983 23.5099L33.6281 26.8267C33.2933 27.156 32.8577 27.3203 32.4224 27.3203ZM15.7504 27.3203C15.3151 27.3203 14.8797 27.156 14.5449 26.8266L11.1747 23.5098C11.172 23.5072 11.1693 23.5045 11.1668 23.5019C9.49776 21.9054 9.49784 19.0304 11.1668 17.4342L14.5365 14.0723C15.2086 13.4019 16.2968 13.4033 16.9672 14.0752C17.6376 14.7472 17.6364 15.8354 16.9644 16.5059L13.5941 19.8681C13.2569 20.229 13.2562 20.7031 13.591 21.0648L16.956 24.3765C17.6326 25.0424 17.6413 26.1306 16.9754 26.8072C16.6391 27.149 16.1948 27.3203 15.7504 27.3203Z" fill="#00B8D9"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="48" height="49" viewBox="0 0 48 49" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.48" d="M17.2978 43.8376L17.0351 44.2704C17.0351 44.2704 5.35059 44.8718 5.35059 37.1395C5.35059 29.2353 15.5845 25.7734 18.7534 24.6818C19.4455 24.4433 20.6797 24.0958 22.1858 23.6157C22.4107 24.0926 22.6296 24.572 22.8435 25.0535C18.9084 26.4624 10.5055 29.9771 10.5055 37.1395C10.5055 41.4265 14.097 43.1512 17.2978 43.8376ZM29.1018 43.2261L30.7236 35.8797C31.138 33.8062 32.1571 31.9018 33.6523 30.4065L36.6943 27.3645C35.395 27.2464 34.0548 27.6842 33.0602 28.6789L27.81 33.9291C26.3148 35.4242 25.2958 37.3286 24.8813 39.4022L23.9083 44.2704C23.9083 44.2704 28.9938 43.2512 29.1018 43.2261Z" fill="#FFAB00"/>
|
|
3
|
+
<path d="M44.151 24.0269C42.9664 22.8423 41.3914 22.1899 39.7162 22.1899C38.0409 22.1899 36.4659 22.8423 35.2813 24.0269L26.5945 32.7137C24.8536 34.4547 23.6785 36.6509 23.1959 39.0651L22.2228 43.9334C22.1102 44.4967 22.2866 45.079 22.6928 45.4852C23.0182 45.8106 23.4567 45.9884 23.9079 45.9884C24.0199 45.9884 24.1326 45.9775 24.2447 45.9551L29.113 44.982C31.5271 44.4995 33.7233 43.3243 35.4643 41.5834L44.151 32.8966C45.3356 31.712 45.9881 30.137 45.9881 28.4618C45.9881 26.7865 45.3356 25.2115 44.151 24.0269ZM41.7209 30.4665L33.0341 39.1533C31.7747 40.4128 30.1859 41.263 28.4394 41.612L26.0979 42.08L26.5659 39.7385C26.915 37.9921 27.7651 36.4032 29.0246 35.1438L37.7114 26.4569C38.2469 25.9215 38.9589 25.6265 39.7162 25.6265C40.4734 25.6265 41.1855 25.9215 41.721 26.457C42.2564 26.9924 42.5514 27.7045 42.5514 28.4618C42.5514 29.219 42.2565 29.9311 41.7209 30.4665Z" fill="#FFAB00"/>
|
|
4
|
+
<path d="M20.545 25.91C20.0436 26.0678 19.535 26.23 19.238 26.3322C16.2283 27.3685 7.06942 30.5223 7.06942 37.1393C7.06942 38.4186 7.4831 39.4345 8.33418 40.2451C10.5699 42.3746 15.3125 42.634 16.9496 42.5541C17.8983 42.5069 18.7031 43.2376 18.7505 44.1844C18.798 45.1312 18.0708 45.9375 17.1239 45.9863C17.0738 45.9889 16.8341 46 16.452 46C14.549 46 9.11231 45.724 5.97211 42.7412C4.41997 41.2669 3.63281 39.3821 3.63281 37.1393C3.63281 34.971 4.28156 32.9294 5.56084 31.0712C6.58237 29.5877 8.01844 28.2116 9.82953 26.9811C12.9445 24.8647 16.5146 23.6353 18.1942 23.057C18.5351 22.9396 18.9888 22.797 19.5141 22.6318C21.8606 21.8938 25.7878 20.6588 29.1565 18.783C32.8575 16.7222 34.734 14.5336 34.734 12.2779C34.734 9.70376 33.5144 8.07798 32.4911 7.16745C31.3098 6.11594 29.6946 5.43661 28.3764 5.43661C27.4274 5.43661 26.6581 4.66732 26.6581 3.7183C26.6581 2.76928 27.4274 2 28.3764 2C30.554 2 32.9463 2.97196 34.7758 4.60005C36.965 6.54826 38.1707 9.27495 38.1707 12.2779C38.1707 20.3671 25.8194 24.2513 20.545 25.91Z" fill="#7A4100"/>
|
|
5
|
+
<path d="M11.4507 12.6535C7.83201 12.6535 5.62047 11.1169 4.40245 9.82782C2.87573 8.21193 2 5.98509 2 3.7183C2 2.76928 2.76928 2 3.7183 2C4.66732 2 5.43661 2.76928 5.43661 3.7183C5.43661 6.36655 7.31858 9.21688 11.4507 9.21688C14.4195 9.21688 16.2937 7.74291 18.4639 6.03621C19.1366 5.50723 19.832 4.96029 20.5783 4.44635C21.3599 3.90818 22.4298 4.10527 22.9681 4.88684C23.5064 5.66841 23.3092 6.73831 22.5276 7.27657C21.8708 7.72891 21.2478 8.2188 20.5883 8.73755C18.2544 10.573 15.609 12.6535 11.4507 12.6535Z" fill="#7A4100"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g opacity="0.32">
|
|
3
|
+
<path d="M2.60946 22.9843C1.77292 22.9631 1.13928 22.4599 1.07089 21.6259C1.02993 21.1264 1 20.4398 1 19.5C1 18.5602 1.02993 17.8736 1.07089 17.3741C1.13928 16.5401 1.77292 16.0369 2.60946 16.0157C2.97545 16.0064 3.43306 16 4 16C4.56694 16 5.02455 16.0064 5.39055 16.0157C6.2271 16.0369 6.8607 16.5401 6.9291 17.3741C6.97005 17.8736 7 18.5602 7 19.5C7 20.4398 6.97005 21.1264 6.9291 21.6259C6.8607 22.4599 6.2271 22.9631 5.39055 22.9843C5.02455 22.9936 4.56694 23 4 23C3.43306 23 2.97545 22.9936 2.60946 22.9843Z" fill="#1877F2"/>
|
|
4
|
+
<path d="M18.8455 22.9792C17.8709 22.9408 17.1875 22.2557 17.1243 21.2823C17.0588 20.2731 17 18.6337 17 16C17 13.3663 17.0588 11.727 17.1243 10.7177C17.1875 9.74435 17.8709 9.0592 18.8455 9.02075C19.1671 9.00805 19.5489 9 20 9C20.4511 9 20.8329 9.00805 21.1545 9.02075C22.1291 9.0592 22.8125 9.74435 22.8757 10.7177C22.9412 11.727 23 13.3663 23 16C23 18.6337 22.9412 20.2731 22.8757 21.2823C22.8125 22.2557 22.1291 22.9408 21.1545 22.9792C20.8329 22.9919 20.4511 23 20 23C19.5489 23 19.1671 22.9919 18.8455 22.9792Z" fill="#1877F2"/>
|
|
5
|
+
<path d="M10.7766 22.9832C9.8427 22.9548 9.162 22.3419 9.0949 21.41C9.0422 20.6775 9 19.5936 9 18C9 16.4064 9.0422 15.3225 9.0949 14.59C9.162 13.6581 9.8427 13.0453 10.7766 13.0169C11.1121 13.0067 11.5163 13 12 13C12.4837 13 12.8879 13.0067 13.2234 13.0169C14.1573 13.0453 14.838 13.6581 14.9051 14.59C14.9578 15.3225 15 16.4064 15 18C15 19.5936 14.9578 20.6775 14.9051 21.41C14.838 22.3419 14.1573 22.9548 13.2234 22.9832C12.8879 22.9934 12.4837 23 12 23C11.5163 23 11.1121 22.9934 10.7766 22.9832Z" fill="#1877F2"/>
|
|
6
|
+
</g>
|
|
7
|
+
<path d="M20.9603 6.0506C20.9106 7.03855 19.9709 7.40975 19.242 6.741C18.9106 6.4369 18.5138 6.06255 18.0418 5.60285C16.9756 6.5731 15.322 8.08585 13.3506 9.91645C12.8329 10.3972 11.992 10.3435 11.5397 9.8007L11.5394 9.8003C10.6518 8.73835 9.75755 7.6807 8.8322 6.6514C7.7509 7.4453 5.81 8.95825 3.88389 10.8844C3.39573 11.3725 2.60427 11.3725 2.11612 10.8844C1.62796 10.3962 1.62796 9.60475 2.11612 9.1166C4.00573 7.227 6.079 5.4545 8.30255 3.96314L8.306 3.96082C8.30685 3.96027 8.3066 3.96042 8.3066 3.96042C8.8024 3.6299 9.46255 3.69527 9.8839 4.1166C10.8519 5.08455 11.7265 6.14925 12.6118 7.19265C14.1169 5.80065 15.3848 4.64087 16.274 3.8314C15.8705 3.41506 15.5362 3.06006 15.26 2.75898C14.591 2.02997 14.9624 1.08998 15.9506 1.04025C17.2115 0.976795 18.5055 0.939456 19.7511 1.17232C20.3119 1.27718 20.7233 1.68863 20.8281 2.24948C21.061 3.49521 21.0238 4.78949 20.9603 6.0506Z" fill="#1877F2"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g opacity="0.32">
|
|
3
|
+
<path d="M12 10.75C16.7038 10.75 19.4773 10.6481 20.868 10.5745C21.5117 10.5404 22 10.0077 22 9.36312V8.19432C22 7.74462 21.8551 7.30342 21.5366 6.98592C19.6683 5.12352 15.3747 2.72326 12.465 2.08812C12.1576 2.021 11.8424 2.021 11.535 2.08812C8.62535 2.72326 4.33171 5.12352 2.4634 6.98592C2.1449 7.30342 2 7.74462 2 8.19432V9.36312C2 10.0077 2.48829 10.5404 3.13195 10.5745C4.52271 10.6481 7.29615 10.75 12 10.75Z" fill="#1877F2"/>
|
|
4
|
+
<path d="M2.1787 18.7287C2.30863 18.3515 2.68627 18.1799 3.0846 18.1573C4.11911 18.0986 6.6517 18 12 18C17.3483 18 19.8809 18.0986 20.9154 18.1573C21.3137 18.1799 21.6914 18.3515 21.8213 18.7287C21.9176 19.0082 22 19.4175 22 20C22 20.5825 21.9176 20.9919 21.8213 21.2714C21.6914 21.6486 21.3137 21.8201 20.9154 21.8427C19.8809 21.9015 17.3483 22 12 22C6.6517 22 4.11911 21.9015 3.0846 21.8427C2.68627 21.8201 2.30863 21.6486 2.1787 21.2714C2.08243 20.9919 2 20.5825 2 20C2 19.4175 2.08243 19.0082 2.1787 18.7287Z" fill="#1877F2"/>
|
|
5
|
+
</g>
|
|
6
|
+
<path d="M12 9C13.1046 9 14 8.10457 14 7C14 5.89543 13.1046 5 12 5C10.8954 5 10 5.89543 10 7C10 8.10457 10.8954 9 12 9Z" fill="#1877F2"/>
|
|
7
|
+
<path d="M13.9467 10.7438C13.3382 10.7478 12.6899 10.75 12 10.75C11.3101 10.75 10.6618 10.7478 10.0533 10.7438C10.0277 11.3951 10 12.5511 10 14.5C10 16.2195 10.0216 17.3217 10.0442 18.0047C10.65 18.0017 11.3009 18 12 18C12.6991 18 13.35 18.0017 13.9558 18.0047C13.9784 17.3217 14 16.2195 14 14.5C14 12.5511 13.9723 11.3951 13.9467 10.7438Z" fill="#1877F2"/>
|
|
8
|
+
<path d="M16.0542 10.7212C16.0284 11.3682 16 12.5284 16 14.5C16 16.2343 16.022 17.3407 16.0448 18.0223C17.8468 18.0443 19.1022 18.0792 19.9521 18.1123C19.976 17.4396 20 16.3128 20 14.5C20 12.4185 19.9684 11.2414 19.9415 10.6177C19.0121 10.6562 17.7369 10.6956 16.0542 10.7212Z" fill="#1877F2"/>
|
|
9
|
+
<path d="M4.05845 10.6177C4.98788 10.6562 6.26314 10.6956 7.94583 10.7212C7.97163 11.3682 8 12.5284 8 14.5C8 16.2343 7.97805 17.3407 7.9552 18.0223C6.15324 18.0443 4.89779 18.0792 4.04791 18.1123C4.024 17.4396 4 16.3128 4 14.5C4 12.4185 4.03165 11.2414 4.05845 10.6177Z" fill="#1877F2"/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.32" fill-rule="evenodd" clip-rule="evenodd" d="M20.9114 8.22695C19.4717 8.5891 17.7718 8.61315 16.3035 8.1646C15.6828 7.97495 15.1988 7.4914 14.9893 6.8771C14.4674 5.34677 14.3385 3.47362 14.722 2.0318C13.9279 2.01186 13.0248 2 12 2C8.51575 2 6.43945 2.13682 5.26285 2.26379C4.39116 2.35785 3.71902 2.94826 3.5558 3.80967C3.30175 5.15055 3 7.65725 3 12C3 16.3428 3.30175 18.8494 3.5558 20.1903C3.71902 21.0518 4.39116 21.6422 5.26285 21.7362C6.43945 21.8631 8.51575 22 12 22C15.4843 22 17.5606 21.8631 18.7372 21.7362C19.6089 21.6422 20.281 21.0518 20.4442 20.1903C20.6982 18.8494 21 16.3428 21 12C21 10.5445 20.9661 9.2952 20.9114 8.22695Z" fill="#1877F2"/>
|
|
3
|
+
<path d="M20.9114 8.22695C19.4717 8.5891 17.7718 8.61315 16.3035 8.1646C15.6828 7.97495 15.1988 7.4914 14.9893 6.8771C14.4674 5.34675 14.3384 3.47357 14.722 2.03174C14.722 2.03174 15.9461 2.49994 18.1961 4.74994C20.4461 6.99995 20.9114 8.22695 20.9114 8.22695Z" fill="#1877F2"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g opacity="0.32">
|
|
3
|
+
<path d="M21 8H13C12.7348 8 12.4804 7.89464 12.2929 7.70711C12.1054 7.51957 12 7.26522 12 7C12 6.73478 12.1054 6.48043 12.2929 6.29289C12.4804 6.10536 12.7348 6 13 6H21C21.2652 6 21.5196 6.10536 21.7071 6.29289C21.8946 6.48043 22 6.73478 22 7C22 7.26522 21.8946 7.51957 21.7071 7.70711C21.5196 7.89464 21.2652 8 21 8ZM21 12H13C12.7348 12 12.4804 11.8946 12.2929 11.7071C12.1054 11.5196 12 11.2652 12 11C12 10.7348 12.1054 10.4804 12.2929 10.2929C12.4804 10.1054 12.7348 10 13 10H21C21.2652 10 21.5196 10.1054 21.7071 10.2929C21.8946 10.4804 22 10.7348 22 11C22 11.2652 21.8946 11.5196 21.7071 11.7071C21.5196 11.8946 21.2652 12 21 12Z" fill="#1877F2"/>
|
|
4
|
+
<path d="M21 16H3C2.73478 16 2.48043 15.8946 2.29289 15.7071C2.10536 15.5196 2 15.2652 2 15C2 14.7348 2.10536 14.4804 2.29289 14.2929C2.48043 14.1054 2.73478 14 3 14H21C21.2652 14 21.5196 14.1054 21.7071 14.2929C21.8946 14.4804 22 14.7348 22 15C22 15.2652 21.8946 15.5196 21.7071 15.7071C21.5196 15.8946 21.2652 16 21 16ZM13 20H3C2.73478 20 2.48043 19.8946 2.29289 19.7071C2.10536 19.5196 2 19.2652 2 19C2 18.7348 2.10536 18.4804 2.29289 18.2929C2.48043 18.1054 2.73478 18 3 18H13C13.2652 18 13.5196 18.1054 13.7071 18.2929C13.8946 18.4804 14 18.7348 14 19C14 19.2652 13.8946 19.5196 13.7071 19.7071C13.5196 19.8946 13.2652 20 13 20Z" fill="#1877F2"/>
|
|
5
|
+
</g>
|
|
6
|
+
<rect x="2" y="4" width="8" height="8" rx="2" fill="#1877F2"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M2.625 20.25C2.32663 20.25 2.04048 20.3685 1.8295 20.5795C1.61853 20.7905 1.5 21.0766 1.5 21.375C1.5 21.6734 1.61853 21.9595 1.8295 22.1705C2.04048 22.3815 2.32663 22.5 2.625 22.5H21.375C21.6734 22.5 21.9595 22.3815 22.1705 22.1705C22.3815 21.9595 22.5 21.6734 22.5 21.375C22.5 21.0766 22.3815 20.7905 22.1705 20.5795C21.9595 20.3685 21.6734 20.25 21.375 20.25H2.625Z" fill="#1877F2"/>
|
|
3
|
+
<path opacity="0.32" d="M12.453 6.22499C12.5805 6.02999 12.726 5.82449 12.888 5.61299L12.912 5.57999C13.31 5.05215 13.7681 4.57242 14.277 4.15049C14.8665 3.67049 15.5805 3.25949 16.3995 3.08549C16.6725 3.02849 16.959 2.99849 17.2545 2.99999C19.281 3.01349 20.8125 4.39499 21.7515 5.55599C21.87 5.70149 21.9765 5.84249 22.0755 5.97749L22.1175 6.03599C22.218 6.17399 22.2975 6.31799 22.3575 6.46349L22.3695 6.49199C22.7655 7.49999 22.227 8.58899 21.3 9.04949C21.2283 9.08553 21.1547 9.11758 21.0795 9.14549L17.7315 10.3725L13.0725 17.0925C11.6655 19.122 8.4915 17.7345 9.027 15.3225L9.495 13.212L4.8375 14.5245C4.44734 14.6345 4.037 14.6527 3.63864 14.5776C3.24029 14.5025 2.86474 14.3361 2.54143 14.0916C2.21813 13.847 1.95585 13.5309 1.77517 13.168C1.59449 12.8052 1.5003 12.4054 1.5 12V7.73999C1.5 5.92499 3.957 5.35949 4.749 6.99449L5.6565 8.86799L10.8045 7.51199C11.4525 7.34249 12.0285 6.86999 12.4545 6.22499H12.453ZM6.516 6.85949L6.666 7.05149L10.4235 6.06149C10.6215 6.01049 10.92 5.82449 11.202 5.39849C11.3516 5.17038 11.5087 4.94726 11.673 4.72949L9.762 3.41999C9.36328 3.14641 8.89106 2.99998 8.4075 2.99999C6.42 2.99999 5.2965 5.28749 6.516 6.85949Z" fill="#1877F2"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.32" fill-rule="evenodd" clip-rule="evenodd" d="M2.12411 8H21.8758C21.9467 9.20109 22 10.8266 22 13C22 16.4843 21.8631 18.5605 21.7362 19.7371C21.6422 20.6088 21.0518 21.281 20.1903 21.4442C18.8494 21.6983 16.3428 22 12 22C7.65725 22 5.15055 21.6983 3.80967 21.4442C2.94826 21.281 2.35785 20.6088 2.26379 19.7371C2.13682 18.5605 2 16.4843 2 13C2 10.8266 2.05324 9.20109 2.12411 8ZM6.5 12.6815C6.5 12.0806 6.93315 11.6082 7.5337 11.5868C8.3136 11.559 9.6669 11.5275 12 11.5069C14.5069 11.4848 15.8826 11.5197 16.6312 11.5599C17.1554 11.5881 17.5 11.9946 17.5 12.5196V12.9107C17.5 13.4726 17.1157 13.9093 16.5543 13.934C15.7898 13.9675 14.4235 14 12 14C9.5765 14 8.21025 13.9675 7.44565 13.934C6.88435 13.9093 6.5 13.4726 6.5 12.9107V12.6815ZM6.5 17.0891C6.5 16.5276 6.8844 16.0793 7.44515 16.0503C7.97275 16.0231 8.7795 16.0001 10 16.0001C11.2205 16.0001 12.0272 16.0231 12.5548 16.0503C13.1156 16.0793 13.5 16.5276 13.5 17.0891V17.4111C13.5 17.9726 13.1156 18.4208 12.5548 18.4498C12.0272 18.4771 11.2205 18.5001 10 18.5001C8.7795 18.5001 7.97275 18.4771 7.44515 18.4498C6.8844 18.4208 6.5 17.9726 6.5 17.4111V17.0891Z" fill="#1877F2"/>
|
|
3
|
+
<path d="M17.915 2.03126C18.2276 2.05703 18.4424 2.28598 18.4636 2.59889C18.4831 2.88636 18.5 3.32917 18.5 4C18.5 4.10776 18.4995 4.20964 18.4987 4.30593C19.1999 4.38632 19.7561 4.47356 20.1902 4.55581C21.0516 4.71901 21.642 5.39115 21.7361 6.26285C21.7839 6.7055 21.833 7.27555 21.8758 8H2.12402C2.16677 7.27555 2.21593 6.7055 2.2637 6.26285C2.35776 5.39115 2.94817 4.71902 3.80958 4.55581C4.24369 4.47355 4.8 4.3863 5.50125 4.30591C5.50045 4.20962 5.5 4.10775 5.5 4C5.5 3.32917 5.5169 2.88636 5.5364 2.59889C5.5576 2.28598 5.7724 2.05703 6.08495 2.03126C6.29765 2.01372 6.5938 2 7 2C7.4062 2 7.70235 2.01372 7.91505 2.03126C8.2276 2.05703 8.4424 2.28598 8.4636 2.59889C8.4831 2.88636 8.5 3.32917 8.5 4C8.5 4.0254 8.5 4.05047 8.49995 4.07521C9.50645 4.02844 10.6666 4 11.9999 4C13.3332 4 14.4935 4.02845 15.5 4.07522L15.5 4C15.5 3.32917 15.5169 2.88636 15.5364 2.59889C15.5576 2.28598 15.7724 2.05703 16.0849 2.03126C16.2976 2.01372 16.5938 2 17 2C17.4062 2 17.7023 2.01372 17.915 2.03126Z" fill="#1877F2"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.5337 11.5868C6.93315 11.6081 6.5 12.0805 6.5 12.6815V12.9107C6.5 13.4725 6.88435 13.9093 7.44565 13.9339C8.21025 13.9674 9.5765 14 12 14C14.4235 14 15.7897 13.9674 16.5543 13.9339C17.1156 13.9093 17.5 13.4725 17.5 12.9107V12.5196C17.5 11.9946 17.1554 11.5881 16.6312 11.5599C15.8825 11.5196 14.5069 11.4847 12 11.5069C9.6669 11.5274 8.3136 11.559 7.5337 11.5868ZM7.44515 16.0503C6.8844 16.0793 6.5 16.5275 6.5 17.089V17.411C6.5 17.9725 6.8844 18.4208 7.44515 18.4498C7.97275 18.477 8.7795 18.5 10 18.5C11.2205 18.5 12.0272 18.477 12.5548 18.4498C13.1156 18.4208 13.5 17.9725 13.5 17.411V17.089C13.5 16.5275 13.1156 16.0793 12.5548 16.0503C12.0272 16.023 11.2205 16 10 16C8.7795 16 7.97275 16.023 7.44515 16.0503Z" fill="#1877F2"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.32" fill-rule="evenodd" clip-rule="evenodd" d="M4.12319 2.24369C5.3177 2.12083 7.30475 2 10.5 2C13.6952 2 15.6823 2.12083 16.8768 2.24369C17.8972 2.34863 18.6398 3.10549 18.7572 4.12444C18.8797 5.18775 19 6.7933 19 9C19 11.2067 18.8797 12.8123 18.7572 13.8756C18.6398 14.8945 17.8973 15.6514 16.877 15.7563C15.822 15.8648 14.1489 15.9717 11.571 15.9952C11.1714 15.9989 10.7875 16.1592 10.507 16.4437L8.816 18.1584C8.08185 18.9029 6.8125 18.4707 6.6853 17.4328L6.55145 16.3414C6.52175 16.099 6.3197 15.9137 6.0759 15.9011C5.26545 15.859 4.62502 15.8079 4.12397 15.7564C3.10365 15.6515 2.36022 14.8945 2.24278 13.8756C2.12023 12.8123 2 11.2067 2 9C2 6.7933 2.12023 5.18775 2.24278 4.12444C2.36022 3.10549 3.10287 2.34863 4.12319 2.24369ZM7 6C6.4477 6 6 6.4477 6 7C6 7.5523 6.4477 8 7 8H14C14.5523 8 15 7.5523 15 7C15 6.4477 14.5523 6 14 6H7ZM7 10.5C6.4477 10.5 6 10.9477 6 11.5C6 12.0523 6.4477 12.5 7 12.5H11C11.5523 12.5 12 12.0523 12 11.5C12 10.9477 11.5523 10.5 11 10.5H7Z" fill="#1877F2"/>
|
|
3
|
+
<path d="M5.99925 7C5.99925 6.4477 6.44695 6 6.99925 6H13.9993C14.5516 6 14.9993 6.4477 14.9993 7C14.9993 7.5523 14.5516 8 13.9993 8H6.99925C6.44695 8 5.99925 7.5523 5.99925 7Z" fill="#1877F2"/>
|
|
4
|
+
<path d="M5.99925 11.5C5.99925 10.9477 6.44695 10.5 6.99925 10.5H10.9993C11.5516 10.5 11.9993 10.9477 11.9993 11.5C11.9993 12.0523 11.5516 12.5 10.9993 12.5H6.99925C6.44695 12.5 5.99925 12.0523 5.99925 11.5Z" fill="#1877F2"/>
|
|
5
|
+
<path d="M10.0259 16.9308L10.5063 16.4437C10.7868 16.1592 11.1707 15.9989 11.5703 15.9952C14.1481 15.9717 15.8213 15.8648 16.8763 15.7563C17.8966 15.6514 18.6391 14.8945 18.7565 13.8755C18.8365 13.1809 18.9156 12.2547 18.9608 11.0808C19.4676 11.1109 19.8667 11.1462 20.1775 11.1811C20.803 11.2514 21.2617 11.7033 21.3395 12.3279C21.4208 12.9808 21.4993 13.9995 21.4993 15.5C21.4993 17.0005 21.4208 18.0192 21.3395 18.6721C21.2617 19.2967 20.8024 19.7486 20.1769 19.8189C19.7588 19.8659 19.1811 19.9136 18.3964 19.9483C18.1644 19.9585 17.9675 20.1252 17.9226 20.3531L17.7519 21.219C17.6399 21.7868 16.9541 22.0192 16.52 21.6364L15.0714 20.3589C14.8031 20.1223 14.4578 19.9901 14.1001 19.9816C12.7852 19.9504 11.9012 19.884 11.3225 19.819C10.697 19.7488 10.2369 19.2967 10.1591 18.6721C10.1068 18.2528 10.0558 17.6826 10.0259 16.9308Z" fill="#1877F2"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.32" d="M21.1808 16.9703C20.8971 17.6255 20.2225 18 19.5086 18H14.8154C14.8462 17.9145 14.8735 17.8269 14.8971 17.7373C15.1709 16.6974 14.8825 15.639 14.2214 14.8963C14.4654 12.9091 14.6177 10.8733 14.7108 9.26516C14.7569 8.46731 13.7795 8.20081 13.4274 8.91526C12.7178 10.3553 11.8493 12.1958 11.0842 14.041C10.1467 14.3479 9.3768 15.1177 9.10295 16.1576C8.93642 16.7899 8.97782 17.4291 9.18451 18H4.49141C3.77747 18 3.10288 17.6255 2.81918 16.9703C2.29212 15.7533 2 14.4108 2 13C2 7.47715 6.47715 3 12 3C17.5229 3 22 7.47715 22 13C22 14.4108 21.7079 15.7533 21.1808 16.9703Z" fill="#1877F2"/>
|
|
3
|
+
<path d="M14.7108 9.26516C14.7569 8.46731 13.7795 8.20081 13.4274 8.91526C12.7178 10.3553 11.8493 12.1958 11.0842 14.041C10.1467 14.3479 9.3768 15.1177 9.10295 16.1576C8.6742 17.7856 9.62375 19.459 11.2238 19.8953C12.8238 20.3315 14.4684 19.3654 14.8971 17.7373C15.1709 16.6974 14.8825 15.639 14.2214 14.8963C14.4654 12.9091 14.6177 10.8733 14.7108 9.26516Z" fill="#1877F2"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.32" fill-rule="evenodd" clip-rule="evenodd" d="M12 22.5C17.799 22.5 22.5 17.799 22.5 12C22.5 6.20101 17.799 1.5 12 1.5C6.20101 1.5 1.5 6.20101 1.5 12C1.5 17.799 6.20101 22.5 12 22.5ZM12 18.3C15.4794 18.3 18.3 15.4794 18.3 12C18.3 8.52061 15.4794 5.7 12 5.7C8.52061 5.7 5.7 8.52061 5.7 12C5.7 15.4794 8.52061 18.3 12 18.3Z" fill="#1877F2"/>
|
|
3
|
+
<path d="M18.603 3.01129C19.2181 2.39622 20.2153 2.39622 20.8304 3.01129C21.4455 3.62637 21.4455 4.62361 20.8304 5.23868L5.2387 20.8304C4.62362 21.4455 3.62639 21.4455 3.01131 20.8304C2.39623 20.2153 2.39623 19.2181 3.01131 18.603L18.603 3.01129Z" fill="#1877F2"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.32" d="M4.32992 6C3.84871 6 3.43524 6.34385 3.34854 6.8172C1.98294 14.2724 1.75 18 1.75 18H22.25C22.25 18 22.017 14.2724 20.6514 6.8172C20.5647 6.34385 20.1513 6 19.67 6H4.32992Z" fill="#1877F2"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.25 18H1.75C1.75 18 1.75 18.695 1.80122 19.6754C1.87282 21.0459 2.95622 22.0861 4.32766 22.138C5.855 22.1959 8.2782 22.25 12 22.25C15.7218 22.25 18.145 22.1959 19.6723 22.138C21.0438 22.0861 22.1272 21.0459 22.1988 19.6754C22.25 18.695 22.25 18 22.25 18Z" fill="#1877F2"/>
|
|
4
|
+
<path d="M12 1C9.2386 1 7 3.23857 7 6H9C9 4.34314 10.3432 3 12 3C13.6568 3 15 4.34314 15 6H17C17 3.23857 14.7614 1 12 1Z" fill="#1877F2"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.32" fill-rule="evenodd" clip-rule="evenodd" d="M3.77688 21.3755C2.93261 21.1957 2.36966 20.5161 2.28099 19.6575C2.14952 18.3844 2 16.0469 2 12C2 7.95305 2.14952 5.6156 2.28099 4.34251C2.36966 3.48389 2.93261 2.80424 3.77688 2.62451C5.1095 2.34081 7.6216 2 12 2C16.3784 2 18.8905 2.34081 20.2231 2.62451C21.0674 2.80424 21.6304 3.48389 21.719 4.34251C21.8505 5.6156 22 7.95305 22 12C22 16.0469 21.8505 18.3844 21.719 19.6575C21.6304 20.5161 21.0674 21.1957 20.2232 21.3755C18.8905 21.6592 16.3784 22 12 22C7.6216 22 5.1095 21.6592 3.77688 21.3755ZM17 8.37267V15.236C16.9936 15.5958 16.8463 15.9387 16.59 16.1909C16.3336 16.4431 15.9886 16.5844 15.6293 16.5844C15.27 16.5844 14.925 16.4431 14.6686 16.1909C14.4123 15.9387 14.265 15.5958 14.2586 15.236V11.6671L9.3496 16.5953C8.81262 17.1344 7.94025 17.135 7.40262 16.5965C6.86689 16.06 6.86528 15.1919 7.40088 14.6553C9.12404 12.9289 11.6962 10.3625 12.3396 9.74535H8.77583C8.41654 9.73891 8.07415 9.59146 7.82234 9.33474C7.57053 9.07801 7.42944 8.73254 7.42944 8.37267C7.42944 8.01281 7.57053 7.66734 7.82234 7.41061C8.07415 7.15389 8.41654 7.00644 8.77583 7H15.6293C15.9925 7.00109 16.3405 7.14606 16.5973 7.40325C16.8542 7.66044 16.9989 8.00895 17 8.37267Z" fill="#1877F2"/>
|
|
3
|
+
<path d="M16.9999 15.236V8.37267C16.9988 8.00895 16.854 7.66044 16.5972 7.40325C16.3404 7.14606 15.9924 7.00109 15.6292 7H8.77571C8.41642 7.00644 8.07403 7.15389 7.82222 7.41061C7.57041 7.66734 7.42931 8.01281 7.42931 8.37267C7.42931 8.73254 7.57041 9.07801 7.82222 9.33474C8.07403 9.59146 8.41642 9.73891 8.77571 9.74535H12.3395C11.6961 10.3625 9.12392 12.9289 7.40076 14.6553C6.86515 15.1919 6.86677 16.06 7.40249 16.5965C7.94013 17.135 8.8125 17.1344 9.34947 16.5953L14.2585 11.6671V15.236C14.2649 15.5958 14.4122 15.9387 14.6685 16.1909C14.9249 16.4431 15.2698 16.5844 15.6292 16.5844C15.9885 16.5844 16.3335 16.4431 16.5899 16.1909C16.8462 15.9387 16.9935 15.5958 16.9999 15.236Z" fill="#1877F2"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.32" fill-rule="evenodd" clip-rule="evenodd" d="M20.9114 8.22695C19.4717 8.5891 17.7718 8.61315 16.3035 8.1646C15.6828 7.97495 15.1988 7.4914 14.9893 6.8771C14.4674 5.34677 14.3385 3.47362 14.722 2.0318C13.9279 2.01186 13.0248 2 12 2C8.51575 2 6.43945 2.13682 5.26285 2.26379C4.39116 2.35785 3.71902 2.94826 3.5558 3.80967C3.30175 5.15055 3 7.65725 3 12C3 16.3428 3.30175 18.8494 3.5558 20.1903C3.71902 21.0518 4.39116 21.6422 5.26285 21.7362C6.43945 21.8631 8.51575 22 12 22C15.4843 22 17.5606 21.8631 18.7372 21.7362C19.6089 21.6422 20.281 21.0518 20.4442 20.1903C20.6982 18.8494 21 16.3428 21 12C21 10.5445 20.9661 9.2952 20.9114 8.22695ZM8 13C7.4477 13 7 12.5523 7 12C7 11.4477 7.4477 11 8 11H12C12.5523 11 13 11.4477 13 12C13 12.5523 12.5523 13 12 13H8ZM8 17.5C7.4477 17.5 7 17.0523 7 16.5C7 15.9477 7.4477 15.5 8 15.5H15C15.5523 15.5 16 15.9477 16 16.5C16 17.0523 15.5523 17.5 15 17.5H8Z" fill="#1877F2"/>
|
|
3
|
+
<path d="M7 16.5C7 17.0523 7.4477 17.5 8 17.5H15C15.5523 17.5 16 17.0523 16 16.5C16 15.9477 15.5523 15.5 15 15.5H8C7.4477 15.5 7 15.9477 7 16.5Z" fill="#1877F2"/>
|
|
4
|
+
<path d="M7 12C7 12.5523 7.4477 13 8 13H12C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11H8C7.4477 11 7 11.4477 7 12Z" fill="#1877F2"/>
|
|
5
|
+
<path d="M20.9114 8.22695C19.4717 8.5891 17.7718 8.61315 16.3036 8.1646C15.6828 7.97495 15.1988 7.4914 14.9893 6.8771C14.4674 5.34675 14.3384 3.47357 14.722 2.03174C14.722 2.03174 15.9461 2.49994 18.1961 4.74994C20.4461 6.99995 20.9114 8.22695 20.9114 8.22695Z" fill="#1877F2"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.32" d="M9.4295 3.52977C8.82565 2.82611 7.93185 2.4354 7.01215 2.50878C5.54285 2.626 4.50415 2.78455 3.79502 2.92833C2.94163 3.10136 2.36415 3.78264 2.27276 4.65587C2.14336 5.89235 2 8.11915 2 11.9167C2 15.7144 2.14336 17.9412 2.27276 19.1776C2.36415 20.0509 2.94075 20.7319 3.79413 20.905C5.13115 21.1762 7.6404 21.5 12 21.5C12.9291 21.5 13.7742 21.4853 14.5418 21.4595C14.5349 20.9401 14.5279 20.2894 14.5216 19.4853C14.2858 19.477 14.0907 19.4662 13.9366 19.4557C13.6861 19.4386 13.5 19.229 13.5 18.9779V18.5222C13.5 18.2711 13.6861 18.0616 13.9366 18.0444C14.0886 18.0341 14.2804 18.0234 14.5119 18.0152C14.5087 17.4045 14.5059 16.7294 14.5038 15.9846C14.276 15.9764 14.0869 15.9659 13.9366 15.9557C13.6861 15.9386 13.5 15.729 13.5 15.4779V15.0222C13.5 14.7711 13.6861 14.5616 13.9366 14.5444C14.0862 14.5342 14.2744 14.5238 14.5009 14.5156C14.5003 14.035 14.5 13.5302 14.5 13.0001L14.5001 12.4845C14.2739 12.4763 14.0861 12.4659 13.9366 12.4557C13.6861 12.4386 13.5 12.229 13.5 11.9779V11.5222C13.5 11.2711 13.6861 11.0616 13.9366 11.0444C14.0864 11.0342 14.2747 11.0238 14.5016 11.0156C14.5029 10.28 14.5049 9.60436 14.5073 8.98476C14.2779 8.97651 14.0876 8.96596 13.9366 8.95566C13.6861 8.93856 13.5 8.72896 13.5 8.47791V8.02216C13.5 7.77111 13.6861 7.56156 13.9366 7.54441C14.0892 7.53401 14.2819 7.52336 14.5146 7.51511C14.5197 6.66621 14.5258 5.95346 14.5321 5.35986H15.9679C15.9742 5.95151 15.9802 6.66146 15.9853 7.50661C16.2599 7.51341 16.4658 7.52461 16.6176 7.53641C16.8443 7.55406 17 7.74196 17 7.96931V8.53081C17 8.75816 16.8443 8.94606 16.6176 8.96366C16.4671 8.97536 16.2636 8.98651 15.9927 8.99331C15.9951 9.60816 15.9971 10.2781 15.9984 11.007C16.2664 11.0138 16.4682 11.0248 16.6176 11.0364C16.8443 11.0541 17 11.242 17 11.4693V12.0308C17 12.2582 16.8443 12.4461 16.6176 12.4637C16.4685 12.4753 16.2673 12.4863 15.9999 12.4931L16 13.0001C16 13.527 15.9997 14.029 15.9991 14.507C16.2668 14.5138 16.4683 14.5248 16.6176 14.5364C16.8443 14.5541 17 14.742 17 14.9693V15.5308C17 15.7582 16.8443 15.9461 16.6176 15.9637C16.4678 15.9753 16.2654 15.9864 15.9961 15.9932C15.9941 16.7311 15.9914 17.4006 15.9881 18.0067C16.2613 18.0135 16.4663 18.0247 16.6176 18.0364C16.8443 18.0541 17 18.242 17 18.4693V19.0308C17 19.2582 16.8443 19.4461 16.6176 19.4637C16.4645 19.4756 16.2565 19.4869 15.9784 19.4937C15.9724 20.2611 15.9657 20.8886 15.9591 21.3953C17.9869 21.2777 19.3414 21.0804 20.2059 20.905C21.0592 20.7319 21.6358 20.0509 21.7272 19.1776C21.8566 17.9412 22 15.7144 22 11.9167C22 10.429 21.978 9.1823 21.9435 8.14175C21.8912 6.5679 20.5912 5.35985 19.0301 5.35985H11.9139C11.3335 5.35985 10.7817 5.10545 10.4018 4.66279L9.4295 3.52977Z" fill="#1877F2"/>
|
|
3
|
+
<path d="M15.9591 21.3953C15.519 21.4209 15.0471 21.4426 14.5418 21.4596C14.5349 20.9402 14.5279 20.2894 14.5216 19.4853C14.2858 19.477 14.0907 19.4662 13.9366 19.4557C13.6861 19.4386 13.5 19.229 13.5 18.9779V18.5222C13.5 18.2711 13.6861 18.0616 13.9366 18.0444C14.0886 18.0341 14.2804 18.0234 14.5119 18.0152C14.5087 17.4045 14.5059 16.7294 14.5038 15.9846C14.276 15.9764 14.0869 15.9659 13.9366 15.9557C13.6861 15.9386 13.5 15.729 13.5 15.4779V15.0222C13.5 14.7711 13.6861 14.5616 13.9366 14.5444C14.0862 14.5342 14.2743 14.5238 14.5009 14.5156C14.5003 14.035 14.5 13.5302 14.5 13.0001L14.5001 12.4845C14.2739 12.4763 14.0861 12.4659 13.9366 12.4557C13.6861 12.4386 13.5 12.229 13.5 11.9779V11.5222C13.5 11.2711 13.6861 11.0616 13.9366 11.0444C14.0864 11.0342 14.2747 11.0238 14.5016 11.0156C14.5029 10.28 14.5049 9.60436 14.5073 8.98476C14.2779 8.97651 14.0876 8.96596 13.9366 8.95566C13.6861 8.93856 13.5 8.72896 13.5 8.47791V8.02216C13.5 7.77111 13.6861 7.56156 13.9366 7.54441C14.0892 7.53401 14.2819 7.52336 14.5146 7.51511C14.5197 6.66621 14.5258 5.95346 14.5321 5.35986H15.9679C15.9742 5.95151 15.9802 6.66146 15.9853 7.50661C16.2599 7.51341 16.4658 7.52461 16.6176 7.53641C16.8443 7.55406 17 7.74196 17 7.96931V8.53081C17 8.75816 16.8443 8.94606 16.6176 8.96366C16.4671 8.97536 16.2636 8.98651 15.9927 8.99331C15.9951 9.60816 15.9971 10.2781 15.9984 11.007C16.2665 11.0138 16.4682 11.0248 16.6176 11.0364C16.8443 11.0541 17 11.242 17 11.4693V12.0308C17 12.2582 16.8443 12.4461 16.6176 12.4637C16.4685 12.4753 16.2672 12.4863 15.9999 12.4931L16 13.0001C16 13.527 15.9997 14.029 15.9991 14.507C16.2668 14.5138 16.4683 14.5248 16.6176 14.5364C16.8443 14.5541 17 14.742 17 14.9693V15.5308C17 15.7582 16.8443 15.9461 16.6176 15.9637C16.4678 15.9753 16.2654 15.9864 15.9961 15.9932C15.9941 16.7311 15.9914 17.4006 15.9881 18.0067C16.2614 18.0135 16.4663 18.0247 16.6176 18.0364C16.8443 18.0541 17 18.242 17 18.4693V19.0308C17 19.2582 16.8443 19.4461 16.6176 19.4637C16.4645 19.4756 16.2565 19.4869 15.9784 19.4937C15.9724 20.2612 15.9657 20.8887 15.9591 21.3953Z" fill="#1877F2"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.32" fill-rule="evenodd" clip-rule="evenodd" d="M17.7556 2.30079C17.3519 2.11371 17.1172 2.08917 17.0632 2.08595C15.766 2.03476 14.1085 2 11.999 2C7.72437 2 5.30557 2.14276 3.97974 2.27571C3.04019 2.36993 2.36895 3.04117 2.27473 3.98072C2.14178 5.30655 1.99902 7.72535 1.99902 12C1.99902 16.6448 2.16757 19.604 2.30894 21.2694C2.37429 22.039 3.24545 22.378 3.83887 21.8834L5.49902 20.5L6.86612 21.8671C7.22642 22.2274 7.80002 22.2592 8.19792 21.9408L9.99902 20.5L11.2919 21.7929C11.6824 22.1834 12.3156 22.1834 12.7061 21.7929L13.999 20.5L15.8001 21.9408C16.198 22.2592 16.7716 22.2274 17.1319 21.8671L18.499 20.5L20.1592 21.8834C20.7526 22.378 21.6238 22.039 21.6891 21.2694C21.8305 19.604 21.999 16.6448 21.999 12C21.999 9.87288 21.9637 8.20528 21.9118 6.90321C21.4743 6.95701 20.8561 7.00045 20 7.00045C19.3705 7.00045 18.8696 6.97695 18.4746 6.94315C17.6146 6.8695 17.0559 6.21195 17.0228 5.3494C17.0092 4.99245 17 4.54875 17 4.00045C17 3.11398 17.0239 2.50092 17.0522 2.08594C17.0522 2.08594 17.2925 2.08635 17.7556 2.30079ZM11.6589 15.2672C12.2031 15.2672 12.5962 15.1752 12.8381 14.9912C13.0901 14.8072 13.2161 14.5817 13.2161 14.3149C13.2161 14.0757 13.1203 13.8825 12.9288 13.7352C12.7373 13.588 12.4501 13.4592 12.0671 13.3488L11.2355 13.1004C10.8223 12.9807 10.4493 12.8519 10.1167 12.7139C9.78412 12.5759 9.50192 12.4103 9.27007 12.217C9.03827 12.0238 8.85682 11.7938 8.72582 11.527C8.59477 11.2601 8.52927 10.9427 8.52927 10.5746C8.52927 9.94895 8.74092 9.4291 9.16427 9.01505C9.58757 8.601 10.1923 8.32495 10.9785 8.18695V7.7944C10.9785 7.3862 11.2613 7.0214 11.6691 7.00345C11.7215 7.00115 11.7736 7 11.8252 7C12.1981 7 12.4652 7.0598 12.6265 7.1794C12.7978 7.29905 12.8835 7.51525 12.8835 7.8281V8.13175C13.5285 8.19615 14.0527 8.33875 14.4558 8.5596C14.859 8.7712 15.0606 9.05185 15.0606 9.4015C15.0606 9.55725 15.0194 9.70145 14.9481 9.8323C14.7585 10.1803 14.2851 10.1546 13.9096 10.0279C13.8023 9.99165 13.687 9.9577 13.5638 9.92595C13.1808 9.81555 12.7625 9.76035 12.309 9.76035C11.805 9.76035 11.427 9.83855 11.1751 9.995C10.9331 10.1422 10.8122 10.3354 10.8122 10.5746C10.8122 10.7679 10.8928 10.9243 11.0541 11.0439C11.2254 11.1635 11.4825 11.2739 11.8252 11.3751L12.6718 11.6098C13.5789 11.8674 14.2744 12.2078 14.7582 12.6311C15.2521 13.0543 15.499 13.6248 15.499 14.3425C15.499 14.9774 15.2773 15.5157 14.8338 15.9573C14.3903 16.3898 13.7402 16.6796 12.8835 16.8268V17.2056C12.8835 17.6138 12.6007 17.9786 12.1929 17.9965C12.1405 17.9988 12.0884 18 12.0368 18C11.6639 18 11.3918 17.9402 11.2204 17.8206C11.0591 17.7009 10.9785 17.4847 10.9785 17.1719V16.8958C10.2427 16.8222 9.64302 16.6612 9.17937 16.4128C8.72582 16.1551 8.49902 15.8331 8.49902 15.4466C8.49902 15.2209 8.58567 15.0249 8.72467 14.8601C8.97352 14.5651 9.41662 14.6382 9.75947 14.8155C9.90572 14.8911 10.0651 14.9634 10.2377 15.0326C10.6509 15.189 11.1247 15.2672 11.6589 15.2672Z" fill="#1877F2"/>
|
|
3
|
+
<path d="M21.9128 6.9031C21.4752 6.95695 20.8567 7.00045 20 7.00045C19.3705 7.00045 18.8696 6.97695 18.4746 6.94315C17.6146 6.8695 17.0559 6.21195 17.0228 5.3494C17.0092 4.99245 17 4.54875 17 4.00045C17 3.11398 17.0239 2.50092 17.0522 2.08594C17.0522 2.08594 18.0872 2.08772 20 4.00045C21.9128 5.9132 21.9128 6.9031 21.9128 6.9031Z" fill="#1877F2"/>
|
|
4
|
+
<path d="M11.6599 15.2672C12.2041 15.2672 12.5972 15.1752 12.8391 14.9912C13.091 14.8072 13.217 14.5817 13.217 14.3149C13.217 14.0757 13.1213 13.8825 12.9298 13.7352C12.7383 13.588 12.4511 13.4592 12.0681 13.3488L11.2365 13.1004C10.8232 12.9807 10.4503 12.8519 10.1177 12.7139C9.7851 12.5759 9.5029 12.4103 9.27105 12.217C9.03925 12.0238 8.8578 11.7938 8.7268 11.527C8.59575 11.2601 8.53025 10.9427 8.53025 10.5746C8.53025 9.94895 8.7419 9.4291 9.16525 9.01505C9.58855 8.601 10.1933 8.32495 10.9795 8.18695V7.7944C10.9795 7.3862 11.2623 7.0214 11.6701 7.00345C11.7225 7.00115 11.7745 7 11.8261 7C12.199 7 12.4661 7.0598 12.6274 7.1794C12.7988 7.29905 12.8844 7.51525 12.8844 7.8281V8.13175C13.5295 8.19615 14.0537 8.33875 14.4568 8.5596C14.86 8.7712 15.0616 9.05185 15.0616 9.4015C15.0616 9.55725 15.0203 9.70145 14.9491 9.8323C14.7594 10.1803 14.2861 10.1546 13.9106 10.0279C13.8032 9.99165 13.688 9.9577 13.5648 9.92595C13.1818 9.81555 12.7635 9.76035 12.3099 9.76035C11.806 9.76035 11.428 9.83855 11.1761 9.995C10.9341 10.1422 10.8132 10.3354 10.8132 10.5746C10.8132 10.7679 10.8938 10.9243 11.0551 11.0439C11.2264 11.1635 11.4834 11.2739 11.8261 11.3751L12.6728 11.6098C13.5799 11.8674 14.2754 12.2078 14.7592 12.6311C15.2531 13.0543 15.5 13.6248 15.5 14.3425C15.5 14.9774 15.2783 15.5157 14.8348 15.9573C14.3913 16.3898 13.7412 16.6796 12.8844 16.8268V17.2056C12.8844 17.6138 12.6016 17.9786 12.1938 17.9965C12.1415 17.9988 12.0894 18 12.0378 18C11.6648 18 11.3928 17.9402 11.2214 17.8206C11.0601 17.7009 10.9795 17.4847 10.9795 17.1719V16.8958C10.2437 16.8222 9.644 16.6612 9.18035 16.4128C8.7268 16.1551 8.5 15.8331 8.5 15.4466C8.5 15.2209 8.58665 15.0249 8.72565 14.8601C8.9745 14.5651 9.4176 14.6382 9.76045 14.8155C9.9067 14.8911 10.0661 14.9634 10.2387 15.0326C10.6519 15.189 11.1257 15.2672 11.6599 15.2672Z" fill="#1877F2"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.32" d="M2.162 8.5C2 9.603 2 11.05 2 13C2 16.771 2 18.657 3.172 19.828C4.343 21 6.229 21 10 21H14C17.771 21 19.657 21 20.828 19.828C22 18.657 22 16.771 22 13C22 11.05 22 9.603 21.838 8.5C19.561 9.98 18.102 10.923 16.75 11.505V12C16.7511 12.0985 16.7327 12.1962 16.696 12.2876C16.6593 12.379 16.6049 12.4623 16.536 12.5327C16.3968 12.6748 16.2069 12.7559 16.008 12.758C15.8091 12.7601 15.6175 12.6831 15.4753 12.544C15.3332 12.4048 15.2521 12.2149 15.25 12.016C13.1197 12.5776 10.8803 12.5776 8.75 12.016C8.74788 12.2149 8.66683 12.4048 8.52467 12.544C8.38252 12.6831 8.19091 12.7601 7.992 12.758C7.79309 12.7559 7.60317 12.6748 7.46401 12.5327C7.32486 12.3905 7.24788 12.1989 7.25 12V11.504C5.898 10.924 4.44 9.98 2.162 8.5Z" fill="#1877F2"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.581 2.24999H10.561C10.447 2.24999 10.359 2.24999 10.275 2.25499C9.75542 2.28658 9.25549 2.46498 8.8333 2.76945C8.4111 3.07392 8.084 3.49197 7.88999 3.97499C7.84737 4.08839 7.80736 4.20276 7.76999 4.31799L7.76599 4.32999C7.66284 4.60265 7.48845 4.84265 7.26099 5.02499C7.03399 5.03299 6.81699 5.04199 6.60899 5.05499C4.96499 5.15099 3.92199 5.42099 3.17099 6.17199C2.92699 6.41599 2.73299 6.69199 2.58099 7.00999C2.63945 7.03005 2.69521 7.05726 2.74699 7.09099C4.84699 8.45599 6.16699 9.31099 7.26299 9.85799C7.29767 9.67415 7.3998 9.5099 7.54935 9.39749C7.69889 9.28507 7.88506 9.23261 8.0713 9.25039C8.25753 9.26818 8.4304 9.35493 8.55597 9.49361C8.68154 9.6323 8.75074 9.81291 8.74999 9.99999V10.458C10.87 11.098 13.13 11.098 15.25 10.458V9.99999C15.2505 9.81382 15.3203 9.6345 15.4458 9.49692C15.5712 9.35933 15.7433 9.27332 15.9286 9.25561C16.114 9.2379 16.2993 9.28976 16.4485 9.4011C16.5977 9.51243 16.7002 9.67529 16.736 9.85799C17.833 9.30999 19.153 8.45599 21.253 7.09099C21.3051 7.05722 21.3612 7.03001 21.42 7.00999C21.2719 6.69896 21.0716 6.41554 20.828 6.17199C20.078 5.42199 19.035 5.15199 17.391 5.05399C17.194 5.04299 16.988 5.03399 16.773 5.02599C16.5214 4.82098 16.3271 4.55433 16.209 4.25199L16.205 4.24299C16.169 4.13599 16.141 4.05199 16.11 3.97399C15.9158 3.49116 15.5887 3.07332 15.1665 2.76903C14.7443 2.46474 14.2445 2.28649 13.725 2.25499C13.6297 2.2505 13.5344 2.24883 13.439 2.24999H10.581ZM14.818 4.81599L14.813 4.80499L14.808 4.79299L14.803 4.78099L14.8 4.77099L14.798 4.76599L14.794 4.75399L14.79 4.74199L14.788 4.73599L14.785 4.72799L14.783 4.72099L14.781 4.71499C14.7615 4.65414 14.7405 4.59378 14.718 4.53399C14.6298 4.31442 14.4812 4.12437 14.2893 3.98594C14.0974 3.84751 13.8702 3.76638 13.634 3.75199C13.5624 3.74949 13.4907 3.74882 13.419 3.74999H10.581C10.438 3.74999 10.398 3.74999 10.366 3.75199C10.1298 3.76638 9.90258 3.84751 9.71069 3.98594C9.5188 4.12437 9.37014 4.31442 9.28199 4.53399L9.27899 4.54099L9.27099 4.56199C9.24331 4.63808 9.2173 4.71476 9.19299 4.79199L9.19199 4.79799L9.18899 4.80499L9.18699 4.81299L9.18499 4.81899L9.18099 4.83099L9.17599 4.84299L9.17499 4.84799L9.17099 4.85799L9.16599 4.86999L9.16199 4.88199L9.15699 4.89199C9.14306 4.92829 9.12839 4.9653 9.11299 5.00099L9.99999 4.99999H14.896C14.8676 4.93955 14.8423 4.87818 14.818 4.81599Z" fill="#1877F2"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.32" d="M22 10.5C22 13.2058 21.9268 15.3259 21.8596 16.7018C21.8139 17.6385 20.9066 18.311 19.9771 18.1857C18.4531 17.9803 15.8791 17.75 12 17.75C8.1209 17.75 5.54695 17.9803 4.02285 18.1857C3.09341 18.311 2.18614 17.6385 2.14039 16.7018C2.07321 15.3259 2 13.2058 2 10.5C2 7.79427 2.07321 5.67417 2.14039 4.29829C2.18614 3.36156 3.09341 2.68909 4.02285 2.81433C5.54695 3.0197 8.1209 3.25002 12 3.25002C15.8791 3.25002 18.4531 3.0197 19.9771 2.81433C20.9066 2.68909 21.8139 3.36156 21.8596 4.29829C21.9268 5.67417 22 7.79427 22 10.5Z" fill="#1877F2"/>
|
|
3
|
+
<path d="M5.59096 18.0097C5.28385 18.7424 4.94579 19.6106 4.65668 20.5001C4.5685 20.7714 4.73269 21.0577 5.01662 21.0853C5.48092 21.1304 5.97612 21.1092 6.35562 21.0767C6.76872 21.0413 7.13172 20.805 7.35657 20.4567C7.94702 19.5421 8.51881 18.5894 8.97868 17.8008C7.63073 17.8484 6.50815 17.9246 5.59096 18.0097Z" fill="#1877F2"/>
|
|
4
|
+
<path d="M15.022 17.8009C15.4818 18.5895 16.0536 19.5421 16.6441 20.4567C16.8689 20.805 17.2319 21.0413 17.645 21.0767C18.0245 21.1092 18.5197 21.1304 18.984 21.0853C19.268 21.0577 19.4321 20.7714 19.344 20.5001C19.0549 19.6106 18.7168 18.7424 18.4097 18.0097C17.4925 17.9247 16.37 17.8484 15.022 17.8009Z" fill="#1877F2"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.32" fill-rule="evenodd" clip-rule="evenodd" d="M1.5 12C1.5 17.799 6.20101 22.5 12 22.5C17.799 22.5 22.5 17.799 22.5 12C22.5 6.20101 17.799 1.5 12 1.5C6.20101 1.5 1.5 6.20101 1.5 12ZM12.9491 5.80725C12.5501 5.06425 11.4499 5.06425 11.051 5.80725L9.54862 8.60535L6.36352 9.2112C5.54932 9.36605 5.22022 10.319 5.77507 10.9151L8.03362 13.3415L7.61877 16.5888C7.51432 17.4065 8.39427 18.0073 9.15727 17.6394L12 16.2687L14.8428 17.6394C15.6058 18.0073 16.4857 17.4065 16.3813 16.5888L15.9664 13.3415L18.225 10.9151C18.7798 10.319 18.4507 9.36605 17.6365 9.2112L14.4514 8.60535L12.9491 5.80725Z" fill="#1877F2"/>
|
|
3
|
+
<path d="M11.0509 5.80725C11.4499 5.06425 12.5501 5.06425 12.949 5.80725L14.4514 8.60535L17.6365 9.2112C18.4507 9.36605 18.7798 10.319 18.2249 10.9151L15.9664 13.3415L16.3812 16.5888C16.4857 17.4065 15.6057 18.0073 14.8427 17.6394L12 16.2687L9.15724 17.6394C8.39424 18.0073 7.51429 17.4065 7.61874 16.5888L8.03359 13.3415L5.77504 10.9151C5.22019 10.319 5.54929 9.36605 6.36349 9.2112L9.54859 8.60535L11.0509 5.80725Z" fill="#1877F2"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.32" d="M2.32694 4.28658C2.42248 3.46288 2.9222 2.78287 3.73187 2.60381C4.9948 2.32451 7.44275 2 12 2C16.5573 2 19.0052 2.32451 20.2682 2.60381C21.0778 2.78287 21.5775 3.46288 21.673 4.28658C21.8175 5.5322 22 7.58365 22 10C22 14.5142 19.6175 18.7382 15.6037 20.8039C14.2629 21.494 12.9543 22 12 22C11.0457 22 9.7371 21.494 8.3963 20.8039C4.38247 18.7382 2 14.5142 2 10C2 7.58365 2.18247 5.5322 2.32694 4.28658Z" fill="#1877F2"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.12105 7.7538C9.1895 6.21355 10.4582 5 12 5C13.5418 5 14.8105 6.21355 14.879 7.7538L14.9386 9.0968L15.0076 9.10265C15.8102 9.172 16.3768 9.7301 16.4377 10.5334C16.4735 11.0057 16.5 11.6444 16.5 12.5C16.5 13.3556 16.4735 13.9943 16.4377 14.4666C16.3768 15.2699 15.8102 15.828 15.0076 15.8974C14.3596 15.9534 13.3997 16 12 16C10.6003 16 9.6404 15.9534 8.9924 15.8974C8.18975 15.828 7.62325 15.2699 7.56235 14.4666C7.52655 13.9943 7.5 13.3556 7.5 12.5C7.5 11.7185 7.519 11.1179 7.54565 10.6598C7.5963 9.79025 8.19675 9.1729 9.0614 9.0959L9.12105 7.7538ZM12.8809 7.8426L12.9327 9.00755C12.6459 9.0027 12.3356 9 12 9C11.6648 9 11.3544 9.0027 11.0673 9.0075L11.1191 7.84265C11.14 7.3713 11.5283 7 12 7C12.4717 7 12.86 7.3713 12.8809 7.8426ZM13 12C13 12.4089 12.7545 12.7605 12.403 12.9155L12.4734 13.5415C12.4908 13.6962 12.4655 13.8652 12.3258 13.9338C12.2501 13.9709 12.1446 14 12 14C11.8554 14 11.7499 13.9709 11.6742 13.9338C11.5345 13.8652 11.5092 13.6962 11.5266 13.5415L11.597 12.9155C11.2455 12.7605 11 12.4089 11 12C11 11.4477 11.4477 11 12 11C12.5523 11 13 11.4477 13 12Z" fill="#1877F2"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path opacity="0.32" d="M4 9.95495V5C4 3.34315 5.34315 2 7 2H17C18.6568 2 20 3.34315 20 5V9.95495C20 10.6097 19.6819 11.2218 19.1343 11.5806C17.4417 12.6896 13.71 15 12 15C10.29 15 6.55835 12.6896 4.86571 11.5806C4.31808 11.2218 4 10.6097 4 9.95495Z" fill="#1877F2"/>
|
|
3
|
+
<path d="M3.99902 6.251C3.48952 6.62919 3.03925 6.97507 2.67796 7.2576C2.07597 7.72835 1.69861 8.4226 1.64768 9.1851C1.57839 10.2227 1.49902 11.9645 1.49902 14.5C1.49902 16.8978 1.64098 18.5858 1.77362 19.6396C1.88298 20.5085 2.46471 21.1975 3.32241 21.3746C4.69765 21.6585 7.32372 22 11.999 22C16.6743 22 19.3004 21.6585 20.6756 21.3746C21.5333 21.1975 22.1151 20.5085 22.2244 19.6396C22.3571 18.5858 22.499 16.8978 22.499 14.5C22.499 11.9645 22.4197 10.2227 22.3504 9.1851C22.2994 8.4226 21.9221 7.72835 21.3201 7.2576C20.9588 6.97507 20.5085 6.62919 19.999 6.251V9.95495C19.999 10.6097 19.6809 11.2218 19.1333 11.5806C17.4407 12.6896 13.709 15 11.999 15C10.289 15 6.55737 12.6896 4.86473 11.5806C4.3171 11.2218 3.99902 10.6097 3.99902 9.95495V6.251Z" fill="#1877F2"/>
|
|
4
|
+
<path d="M6.99902 5.75C6.99902 5.3358 7.33482 5 7.74902 5H12.249C12.6632 5 12.999 5.3358 12.999 5.75C12.999 6.1642 12.6632 6.5 12.249 6.5H7.74902C7.33482 6.5 6.99902 6.1642 6.99902 5.75Z" fill="#1877F2"/>
|
|
5
|
+
<path d="M6.99902 9.25C6.99902 8.8358 7.33482 8.5 7.74902 8.5H15.249C15.6632 8.5 15.999 8.8358 15.999 9.25C15.999 9.6642 15.6632 10 15.249 10H7.74902C7.33482 10 6.99902 9.6642 6.99902 9.25Z" fill="#1877F2"/>
|
|
6
|
+
</svg>
|