flowbite-svelte 0.44.8 → 0.44.10
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/.env +2 -0
- package/.eslintrc.cjs +20 -0
- package/.github/ISSUE_TEMPLATE/bug_report.yml +33 -0
- package/.github/ISSUE_TEMPLATE/config.yml +5 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +17 -0
- package/.github/pull_request_template.md +71 -0
- package/.github/workflows/playwright-and-lint.yaml +47 -0
- package/.prettierignore +16 -0
- package/.prettierrc +9 -0
- package/CHANGELOG.md +3858 -0
- package/CONTRIBUTING.md +66 -0
- package/dist/bottom-nav/BottomNavItem.svelte +3 -1
- package/dist/bottom-nav/BottomNavItem.svelte.d.ts +2 -0
- package/dist/bottom-nav/BottomNavItem.svelte.d.ts.map +1 -1
- package/dist/carousels/Carousel.svelte +52 -153
- package/dist/carousels/Carousel.svelte.d.ts +22 -37
- package/dist/carousels/Carousel.svelte.d.ts.map +1 -1
- package/dist/carousels/ControlButton.svelte +31 -0
- package/dist/carousels/ControlButton.svelte.d.ts +29 -0
- package/dist/carousels/ControlButton.svelte.d.ts.map +1 -0
- package/dist/carousels/Controls.svelte +17 -0
- package/dist/carousels/Controls.svelte.d.ts +23 -0
- package/dist/carousels/Controls.svelte.d.ts.map +1 -0
- package/dist/carousels/Indicators.svelte +26 -0
- package/dist/carousels/Indicators.svelte.d.ts +32 -0
- package/dist/carousels/Indicators.svelte.d.ts.map +1 -0
- package/dist/carousels/Thumbnail.svelte +6 -23
- package/dist/carousels/Thumbnail.svelte.d.ts +5 -16
- package/dist/carousels/Thumbnail.svelte.d.ts.map +1 -1
- package/dist/carousels/Thumbnails.svelte +26 -0
- package/dist/carousels/Thumbnails.svelte.d.ts +33 -0
- package/dist/carousels/Thumbnails.svelte.d.ts.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/tables/TableSearch.svelte +2 -2
- package/dist/tables/TableSearch.svelte.d.ts +1 -1
- package/mdsvex.config.js +18 -0
- package/package.json +18 -80
- package/playwright.config.ts +12 -0
- package/postcss.config.cjs +12 -0
- package/src/app.css +45 -0
- package/src/app.d.ts +9 -0
- package/src/app.html +28 -0
- package/src/app.postcss +55 -0
- package/src/hooks.server.js +27 -0
- package/src/lib/accordion/Accordion.svelte +61 -0
- package/src/lib/accordion/AccordionItem.svelte +120 -0
- package/src/lib/alerts/Alert.svelte +60 -0
- package/src/lib/avatar/Avatar.svelte +56 -0
- package/src/lib/avatar/Placeholder.svelte +16 -0
- package/src/lib/badges/Badge.svelte +108 -0
- package/src/lib/banner/Banner.svelte +64 -0
- package/src/lib/bottom-nav/BottomNav.svelte +76 -0
- package/src/lib/bottom-nav/BottomNavHeader.svelte +19 -0
- package/src/lib/bottom-nav/BottomNavHeaderItem.svelte +23 -0
- package/src/lib/bottom-nav/BottomNavItem.svelte +76 -0
- package/src/lib/breadcrumbs/Breadcrumb.svelte +25 -0
- package/src/lib/breadcrumbs/BreadcrumbItem.svelte +51 -0
- package/src/lib/buttongroups/ButtonGroup.svelte +22 -0
- package/src/lib/buttons/Button.svelte +100 -0
- package/src/lib/buttons/GradientButton.svelte +79 -0
- package/src/lib/cards/Card.svelte +70 -0
- package/src/lib/carousels/Carousel.svelte +166 -0
- package/src/lib/carousels/ControlButton.svelte +34 -0
- package/src/lib/carousels/Controls.svelte +21 -0
- package/src/lib/carousels/Indicators.svelte +31 -0
- package/src/lib/carousels/Thumbnail.svelte +20 -0
- package/src/lib/carousels/Thumbnails.svelte +30 -0
- package/src/lib/charts/Chart.svelte +35 -0
- package/src/lib/darkmode/DarkMode.svelte +58 -0
- package/src/lib/datepicker/Calender.svelte +3 -0
- package/src/lib/datepicker/Datepicker.svelte +66 -0
- package/src/lib/device-mockup/Android.svelte +24 -0
- package/src/lib/device-mockup/DefaultMockup.svelte +21 -0
- package/src/lib/device-mockup/DeviceMockup.svelte +235 -0
- package/src/lib/device-mockup/Ios.svelte +21 -0
- package/src/lib/device-mockup/Smartwatch.svelte +15 -0
- package/src/lib/device-mockup/Tablet.svelte +21 -0
- package/src/lib/drawer/Drawer.svelte +87 -0
- package/src/lib/dropdowns/Dropdown.svelte +81 -0
- package/src/lib/dropdowns/DropdownDivider.svelte +13 -0
- package/src/lib/dropdowns/DropdownHeader.svelte +21 -0
- package/src/lib/dropdowns/DropdownItem.svelte +47 -0
- package/src/lib/footer/Footer.svelte +18 -0
- package/src/lib/footer/FooterBrand.svelte +39 -0
- package/src/lib/footer/FooterCopyright.svelte +38 -0
- package/src/lib/footer/FooterIcon.svelte +25 -0
- package/src/lib/footer/FooterLink.svelte +26 -0
- package/src/lib/footer/FooterLinkGroup.svelte +15 -0
- package/src/lib/forms/Checkbox.svelte +70 -0
- package/src/lib/forms/Dropzone.svelte +32 -0
- package/src/lib/forms/Fileupload.svelte +21 -0
- package/src/lib/forms/FloatingLabelInput.svelte +94 -0
- package/src/lib/forms/Helper.svelte +23 -0
- package/src/lib/forms/Input.svelte +83 -0
- package/src/lib/forms/InputAddon.svelte +47 -0
- package/src/lib/forms/Label.svelte +40 -0
- package/src/lib/forms/MultiSelect.svelte +126 -0
- package/src/lib/forms/NumberInput.svelte +16 -0
- package/src/lib/forms/Radio.svelte +53 -0
- package/src/lib/forms/RadioInline.svelte +9 -0
- package/src/lib/forms/Range.svelte +24 -0
- package/src/lib/forms/Search.svelte +44 -0
- package/src/lib/forms/Select.svelte +49 -0
- package/src/lib/forms/Textarea.svelte +51 -0
- package/src/lib/forms/Toggle.svelte +56 -0
- package/src/lib/forms/VoiceSearch.svelte +57 -0
- package/src/lib/gallery/Gallery.svelte +31 -0
- package/src/lib/index.ts +225 -0
- package/src/lib/indicators/Indicator.svelte +86 -0
- package/src/lib/kbd/ArrowKeyDown.svelte +15 -0
- package/src/lib/kbd/ArrowKeyLeft.svelte +15 -0
- package/src/lib/kbd/ArrowKeyRight.svelte +15 -0
- package/src/lib/kbd/ArrowKeyUp.svelte +15 -0
- package/src/lib/kbd/Kbd.svelte +15 -0
- package/src/lib/list-group/Listgroup.svelte +45 -0
- package/src/lib/list-group/ListgroupItem.svelte +57 -0
- package/src/lib/megamenu/MegaMenu.svelte +52 -0
- package/src/lib/modals/Modal.svelte +162 -0
- package/src/lib/navbar/Menu.svelte +38 -0
- package/src/lib/navbar/NavBrand.svelte +15 -0
- package/src/lib/navbar/NavHamburger.svelte +20 -0
- package/src/lib/navbar/NavLi.svelte +37 -0
- package/src/lib/navbar/NavSidebarHamburger.svelte +20 -0
- package/src/lib/navbar/NavUl.svelte +68 -0
- package/src/lib/navbar/Navbar.svelte +42 -0
- package/src/lib/navbar/SidebarMenu.svelte +37 -0
- package/src/lib/paginations/Pagination.svelte +59 -0
- package/src/lib/paginations/PaginationItem.svelte +40 -0
- package/src/lib/popover/Popover.svelte +34 -0
- package/src/lib/progressbars/Progressbar.svelte +52 -0
- package/src/lib/ratings/AdvancedRating.svelte +45 -0
- package/src/lib/ratings/Heart.svelte +39 -0
- package/src/lib/ratings/Rating.svelte +57 -0
- package/src/lib/ratings/RatingComment.svelte +85 -0
- package/src/lib/ratings/Review.svelte +78 -0
- package/src/lib/ratings/ScoreRating.svelte +76 -0
- package/src/lib/ratings/Star.svelte +47 -0
- package/src/lib/ratings/Thumbup.svelte +39 -0
- package/src/lib/sidebars/Sidebar.svelte +40 -0
- package/src/lib/sidebars/SidebarBrand.svelte +24 -0
- package/src/lib/sidebars/SidebarCta.svelte +28 -0
- package/src/lib/sidebars/SidebarDropdownItem.svelte +26 -0
- package/src/lib/sidebars/SidebarDropdownWrapper.svelte +71 -0
- package/src/lib/sidebars/SidebarGroup.svelte +24 -0
- package/src/lib/sidebars/SidebarItem.svelte +49 -0
- package/src/lib/sidebars/SidebarWrapper.svelte +16 -0
- package/src/lib/skeleton/CardPlaceholder.svelte +48 -0
- package/src/lib/skeleton/ImagePlaceholder.svelte +31 -0
- package/src/lib/skeleton/ListPlaceholder.svelte +50 -0
- package/src/lib/skeleton/Skeleton.svelte +38 -0
- package/src/lib/skeleton/TestimonialPlaceholder.svelte +24 -0
- package/src/lib/skeleton/TextPlaceholder.svelte +60 -0
- package/src/lib/skeleton/VideoPlaceholder.svelte +33 -0
- package/src/lib/skeleton/WidgetPlaceholder.svelte +26 -0
- package/src/lib/speed-dial/SpeedDial.svelte +80 -0
- package/src/lib/speed-dial/SpeedDialButton.svelte +49 -0
- package/src/lib/spinners/Spinner.svelte +49 -0
- package/src/lib/steps/StepIndicator.svelte +75 -0
- package/src/lib/tables/Table.svelte +49 -0
- package/src/lib/tables/TableBody.svelte +14 -0
- package/src/lib/tables/TableBodyCell.svelte +22 -0
- package/src/lib/tables/TableBodyRow.svelte +50 -0
- package/src/lib/tables/TableHead.svelte +45 -0
- package/src/lib/tables/TableHeadCell.svelte +15 -0
- package/src/lib/tables/TableSearch.svelte +73 -0
- package/src/lib/tabs/TabItem.svelte +61 -0
- package/src/lib/tabs/Tabs.svelte +78 -0
- package/src/lib/timeline/Activity.svelte +16 -0
- package/src/lib/timeline/ActivityItem.svelte +59 -0
- package/src/lib/timeline/Group.svelte +27 -0
- package/src/lib/timeline/GroupItem.svelte +59 -0
- package/src/lib/timeline/Timeline.svelte +25 -0
- package/src/lib/timeline/TimelineHorizontal.svelte +17 -0
- package/src/lib/timeline/TimelineItem.svelte +116 -0
- package/src/lib/timeline/TimelineItemHorizontal.svelte +72 -0
- package/src/lib/timeline/TimelineItemVertical.svelte +44 -0
- package/src/lib/toasts/Toast.svelte +99 -0
- package/src/lib/toolbar/Toolbar.svelte +52 -0
- package/src/lib/toolbar/ToolbarButton.svelte +67 -0
- package/src/lib/toolbar/ToolbarGroup.svelte +20 -0
- package/src/lib/tooltips/Tooltip.svelte +42 -0
- package/src/lib/types.ts +163 -0
- package/src/lib/typography/A.svelte +20 -0
- package/src/lib/typography/Blockquote.svelte +51 -0
- package/src/lib/typography/DescriptionList.svelte +22 -0
- package/src/lib/typography/Heading.svelte +28 -0
- package/src/lib/typography/Hr.svelte +37 -0
- package/src/lib/typography/Img.svelte +39 -0
- package/src/lib/typography/Layout.svelte +21 -0
- package/src/lib/typography/Li.svelte +19 -0
- package/src/lib/typography/List.svelte +33 -0
- package/src/lib/typography/Mark.svelte +20 -0
- package/src/lib/typography/P.svelte +102 -0
- package/src/lib/typography/Secondary.svelte +18 -0
- package/src/lib/typography/Span.svelte +35 -0
- package/src/lib/utils/CloseButton.svelte +19 -0
- package/src/lib/utils/Frame.svelte +142 -0
- package/src/lib/utils/Popper.svelte +206 -0
- package/src/lib/utils/Wrapper.svelte +22 -0
- package/src/lib/utils/backdrop.ts +101 -0
- package/src/lib/utils/clickOutside.ts +16 -0
- package/src/lib/utils/createEventDispatcher.ts +24 -0
- package/src/lib/utils/focusTrap.js +42 -0
- package/src/lib/utils/generateId.js +5 -0
- package/src/lib/video/Video.svelte +29 -0
- package/src/routes/+error.svelte +5 -0
- package/src/routes/+layout.svelte +98 -0
- package/src/routes/+page.server.ts +18 -0
- package/src/routes/+page.svelte +55 -0
- package/src/routes/api/posts/+server.js +7 -0
- package/src/routes/component-data/A.json +10 -0
- package/src/routes/component-data/Accordion.json +12 -0
- package/src/routes/component-data/AccordionItem.json +23 -0
- package/src/routes/component-data/Activity.json +1 -0
- package/src/routes/component-data/ActivityItem.json +16 -0
- package/src/routes/component-data/AdvancedRating.json +13 -0
- package/src/routes/component-data/Alert.json +9 -0
- package/src/routes/component-data/Android.json +12 -0
- package/src/routes/component-data/ArrowKeyDown.json +1 -0
- package/src/routes/component-data/ArrowKeyLeft.json +1 -0
- package/src/routes/component-data/ArrowKeyRight.json +1 -0
- package/src/routes/component-data/ArrowKeyUp.json +1 -0
- package/src/routes/component-data/Avatar.json +15 -0
- package/src/routes/component-data/Badge.json +10 -0
- package/src/routes/component-data/Banner.json +12 -0
- package/src/routes/component-data/Blockquote.json +15 -0
- package/src/routes/component-data/BottomNav.json +13 -0
- package/src/routes/component-data/BottomNavHeader.json +9 -0
- package/src/routes/component-data/BottomNavHeaderItem.json +11 -0
- package/src/routes/component-data/BottomNavItem.json +12 -0
- package/src/routes/component-data/Breadcrumb.json +11 -0
- package/src/routes/component-data/BreadcrumbItem.json +12 -0
- package/src/routes/component-data/Button.json +14 -0
- package/src/routes/component-data/ButtonGroup.json +9 -0
- package/src/routes/component-data/Calender.json +1 -0
- package/src/routes/component-data/Card.json +13 -0
- package/src/routes/component-data/CardPlaceholder.json +9 -0
- package/src/routes/component-data/Carousel.json +11 -0
- package/src/routes/component-data/Chart.json +1 -0
- package/src/routes/component-data/Checkbox.json +14 -0
- package/src/routes/component-data/CloseButton.json +1 -0
- package/src/routes/component-data/ControlButton.json +9 -0
- package/src/routes/component-data/Controls.json +1 -0
- package/src/routes/component-data/DarkMode.json +9 -0
- package/src/routes/component-data/Datepicker.json +14 -0
- package/src/routes/component-data/DefaultMockup.json +11 -0
- package/src/routes/component-data/DescriptionList.json +10 -0
- package/src/routes/component-data/DeviceMockup.json +50 -0
- package/src/routes/component-data/Drawer.json +23 -0
- package/src/routes/component-data/Dropdown.json +13 -0
- package/src/routes/component-data/DropdownDivider.json +1 -0
- package/src/routes/component-data/DropdownHeader.json +9 -0
- package/src/routes/component-data/DropdownItem.json +10 -0
- package/src/routes/component-data/Dropzone.json +10 -0
- package/src/routes/component-data/Fileupload.json +10 -0
- package/src/routes/component-data/FloatingLabelInput.json +14 -0
- package/src/routes/component-data/Footer.json +1 -0
- package/src/routes/component-data/FooterBrand.json +15 -0
- package/src/routes/component-data/FooterCopyright.json +14 -0
- package/src/routes/component-data/FooterIcon.json +11 -0
- package/src/routes/component-data/FooterLink.json +11 -0
- package/src/routes/component-data/FooterLinkGroup.json +1 -0
- package/src/routes/component-data/Frame.json +18 -0
- package/src/routes/component-data/Gallery.json +9 -0
- package/src/routes/component-data/GradientButton.json +9 -0
- package/src/routes/component-data/Group.json +11 -0
- package/src/routes/component-data/GroupItem.json +13 -0
- package/src/routes/component-data/Heading.json +10 -0
- package/src/routes/component-data/Heart.json +14 -0
- package/src/routes/component-data/Helper.json +9 -0
- package/src/routes/component-data/Hr.json +13 -0
- package/src/routes/component-data/ImagePlaceholder.json +9 -0
- package/src/routes/component-data/Img.json +17 -0
- package/src/routes/component-data/Indicator.json +13 -0
- package/src/routes/component-data/Indicators.json +9 -0
- package/src/routes/component-data/Input.json +13 -0
- package/src/routes/component-data/InputAddon.json +1 -0
- package/src/routes/component-data/Ios.json +11 -0
- package/src/routes/component-data/Kbd.json +1 -0
- package/src/routes/component-data/Label.json +10 -0
- package/src/routes/component-data/Layout.json +10 -0
- package/src/routes/component-data/Li.json +9 -0
- package/src/routes/component-data/List.json +10 -0
- package/src/routes/component-data/ListPlaceholder.json +1 -0
- package/src/routes/component-data/Listgroup.json +10 -0
- package/src/routes/component-data/ListgroupItem.json +17 -0
- package/src/routes/component-data/Mark.json +10 -0
- package/src/routes/component-data/MegaMenu.json +11 -0
- package/src/routes/component-data/Menu.json +11 -0
- package/src/routes/component-data/Modal.json +17 -0
- package/src/routes/component-data/MultiSelect.json +11 -0
- package/src/routes/component-data/NavBrand.json +1 -0
- package/src/routes/component-data/NavHamburger.json +9 -0
- package/src/routes/component-data/NavLi.json +10 -0
- package/src/routes/component-data/NavSidebarHamburger.json +9 -0
- package/src/routes/component-data/NavUl.json +14 -0
- package/src/routes/component-data/Navbar.json +10 -0
- package/src/routes/component-data/NumberInput.json +1 -0
- package/src/routes/component-data/P.json +19 -0
- package/src/routes/component-data/Pagination.json +13 -0
- package/src/routes/component-data/PaginationItem.json +12 -0
- package/src/routes/component-data/Placeholder.json +1 -0
- package/src/routes/component-data/Popover.json +9 -0
- package/src/routes/component-data/Popper.json +17 -0
- package/src/routes/component-data/Progressbar.json +14 -0
- package/src/routes/component-data/Radio.json +13 -0
- package/src/routes/component-data/RadioInline.json +1 -0
- package/src/routes/component-data/Range.json +9 -0
- package/src/routes/component-data/Rating.json +14 -0
- package/src/routes/component-data/RatingComment.json +10 -0
- package/src/routes/component-data/Review.json +13 -0
- package/src/routes/component-data/ScoreRating.json +13 -0
- package/src/routes/component-data/Search.json +10 -0
- package/src/routes/component-data/Secondary.json +9 -0
- package/src/routes/component-data/Select.json +14 -0
- package/src/routes/component-data/Sidebar.json +11 -0
- package/src/routes/component-data/SidebarBrand.json +11 -0
- package/src/routes/component-data/SidebarCta.json +11 -0
- package/src/routes/component-data/SidebarDropdownItem.json +12 -0
- package/src/routes/component-data/SidebarDropdownWrapper.json +14 -0
- package/src/routes/component-data/SidebarGroup.json +10 -0
- package/src/routes/component-data/SidebarItem.json +12 -0
- package/src/routes/component-data/SidebarMenu.json +11 -0
- package/src/routes/component-data/SidebarWrapper.json +1 -0
- package/src/routes/component-data/Skeleton.json +9 -0
- package/src/routes/component-data/Smartwatch.json +9 -0
- package/src/routes/component-data/Span.json +16 -0
- package/src/routes/component-data/SpeedDial.json +18 -0
- package/src/routes/component-data/SpeedDialButton.json +14 -0
- package/src/routes/component-data/Spinner.json +13 -0
- package/src/routes/component-data/Star.json +14 -0
- package/src/routes/component-data/StepIndicator.json +15 -0
- package/src/routes/component-data/TabItem.json +12 -0
- package/src/routes/component-data/Table.json +14 -0
- package/src/routes/component-data/TableBody.json +1 -0
- package/src/routes/component-data/TableBodyCell.json +1 -0
- package/src/routes/component-data/TableBodyRow.json +1 -0
- package/src/routes/component-data/TableHead.json +9 -0
- package/src/routes/component-data/TableHeadCell.json +1 -0
- package/src/routes/component-data/TableSearch.json +19 -0
- package/src/routes/component-data/Tablet.json +11 -0
- package/src/routes/component-data/Tabs.json +13 -0
- package/src/routes/component-data/TestimonialPlaceholder.json +1 -0
- package/src/routes/component-data/TextPlaceholder.json +9 -0
- package/src/routes/component-data/Textarea.json +11 -0
- package/src/routes/component-data/Thumbnail.json +10 -0
- package/src/routes/component-data/Thumbnails.json +9 -0
- package/src/routes/component-data/Thumbup.json +14 -0
- package/src/routes/component-data/Timeline.json +1 -0
- package/src/routes/component-data/TimelineHorizontal.json +1 -0
- package/src/routes/component-data/TimelineItem.json +10 -0
- package/src/routes/component-data/TimelineItemHorizontal.json +19 -0
- package/src/routes/component-data/TimelineItemVertical.json +13 -0
- package/src/routes/component-data/Toast.json +15 -0
- package/src/routes/component-data/Toggle.json +12 -0
- package/src/routes/component-data/Toolbar.json +9 -0
- package/src/routes/component-data/ToolbarButton.json +12 -0
- package/src/routes/component-data/ToolbarGroup.json +1 -0
- package/src/routes/component-data/Tooltip.json +9 -0
- package/src/routes/component-data/Video.json +12 -0
- package/src/routes/component-data/VideoPlaceholder.json +9 -0
- package/src/routes/component-data/VoiceSearch.json +16 -0
- package/src/routes/component-data/WidgetPlaceholder.json +1 -0
- package/src/routes/component-data/Wrapper.json +10 -0
- package/src/routes/component-data/backdrop.json +9 -0
- package/src/routes/component-data/clickOutside.json +1 -0
- package/src/routes/component-data/createEventDispatcher.json +1 -0
- package/src/routes/component-data/focusTrap.json +1 -0
- package/src/routes/component-data/generateId.json +1 -0
- package/src/routes/component-data/index.json +1 -0
- package/src/routes/component-data/types.json +1 -0
- package/src/routes/docs/+layout.js +10 -0
- package/src/routes/docs/+layout.svelte +74 -0
- package/src/routes/docs/components/[slug]/+page.js +13 -0
- package/src/routes/docs/components/[slug]/+page.svelte +6 -0
- package/src/routes/docs/components/accordion.md +315 -0
- package/src/routes/docs/components/alert.md +342 -0
- package/src/routes/docs/components/avatar.md +215 -0
- package/src/routes/docs/components/badge.md +269 -0
- package/src/routes/docs/components/banner.md +166 -0
- package/src/routes/docs/components/bottom-navigation.md +397 -0
- package/src/routes/docs/components/breadcrumb.md +112 -0
- package/src/routes/docs/components/button-group.md +198 -0
- package/src/routes/docs/components/button.md +314 -0
- package/src/routes/docs/components/card.md +423 -0
- package/src/routes/docs/components/carousel.md +242 -0
- package/src/routes/docs/components/darkmode.md +111 -0
- package/src/routes/docs/components/device-mockups.md +212 -0
- package/src/routes/docs/components/drawer.md +638 -0
- package/src/routes/docs/components/dropdown.md +748 -0
- package/src/routes/docs/components/footer.md +268 -0
- package/src/routes/docs/components/forms.md +254 -0
- package/src/routes/docs/components/gallery.md +230 -0
- package/src/routes/docs/components/imageData/+server.js +43 -0
- package/src/routes/docs/components/indicators.md +273 -0
- package/src/routes/docs/components/kbd.md +248 -0
- package/src/routes/docs/components/list-group.md +157 -0
- package/src/routes/docs/components/mega-menu.md +298 -0
- package/src/routes/docs/components/modal.md +413 -0
- package/src/routes/docs/components/navbar.md +342 -0
- package/src/routes/docs/components/pagination.md +350 -0
- package/src/routes/docs/components/popover.md +388 -0
- package/src/routes/docs/components/progress.md +170 -0
- package/src/routes/docs/components/rating.md +326 -0
- package/src/routes/docs/components/sidebar.md +568 -0
- package/src/routes/docs/components/skeleton.md +165 -0
- package/src/routes/docs/components/speed-dial.md +523 -0
- package/src/routes/docs/components/spinner.md +117 -0
- package/src/routes/docs/components/tab.md +341 -0
- package/src/routes/docs/components/table.md +871 -0
- package/src/routes/docs/components/timeline.md +267 -0
- package/src/routes/docs/components/toast.md +362 -0
- package/src/routes/docs/components/tooltip.md +156 -0
- package/src/routes/docs/components/typography.md +158 -0
- package/src/routes/docs/components/video.md +125 -0
- package/src/routes/docs/examples/[slug]/+page.js +13 -0
- package/src/routes/docs/examples/[slug]/+page.svelte +6 -0
- package/src/routes/docs/examples/sidebar-layout.md +20 -0
- package/src/routes/docs/examples/snapshot.md +59 -0
- package/src/routes/docs/examples/testsnap.svelte +49 -0
- package/src/routes/docs/experimental/[slug]/+page.js +13 -0
- package/src/routes/docs/experimental/[slug]/+page.svelte +6 -0
- package/src/routes/docs/experimental/datepicker.md +131 -0
- package/src/routes/docs/extend/CheckCircle.svelte +3 -0
- package/src/routes/docs/extend/[slug]/+page.js +13 -0
- package/src/routes/docs/extend/[slug]/+page.svelte +6 -0
- package/src/routes/docs/extend/flowbite-svelte-blocks.md +28 -0
- package/src/routes/docs/extend/flowbite-svelte-starter.md +34 -0
- package/src/routes/docs/extend/icons.md +204 -0
- package/src/routes/docs/extend/step-indicator.md +162 -0
- package/src/routes/docs/forms/[slug]/+page.js +13 -0
- package/src/routes/docs/forms/[slug]/+page.svelte +6 -0
- package/src/routes/docs/forms/checkbox.md +329 -0
- package/src/routes/docs/forms/file-input.md +171 -0
- package/src/routes/docs/forms/floating-label.md +176 -0
- package/src/routes/docs/forms/input-field.md +398 -0
- package/src/routes/docs/forms/radio.md +303 -0
- package/src/routes/docs/forms/range.md +110 -0
- package/src/routes/docs/forms/search-input.md +133 -0
- package/src/routes/docs/forms/select.md +280 -0
- package/src/routes/docs/forms/textarea.md +142 -0
- package/src/routes/docs/forms/toggle.md +86 -0
- package/src/routes/docs/pages/[slug]/+page.js +13 -0
- package/src/routes/docs/pages/[slug]/+page.svelte +6 -0
- package/src/routes/docs/pages/colors.md +152 -0
- package/src/routes/docs/pages/compiler-speed.md +116 -0
- package/src/routes/docs/pages/customization.md +103 -0
- package/src/routes/docs/pages/how-to-contribute.md +138 -0
- package/src/routes/docs/pages/ide-support.md +19 -0
- package/src/routes/docs/pages/introduction.md +131 -0
- package/src/routes/docs/pages/license.md +22 -0
- package/src/routes/docs/pages/quickstart.md +128 -0
- package/src/routes/docs/pages/typescript.md +25 -0
- package/src/routes/docs/plugins/[slug]/+page.js +13 -0
- package/src/routes/docs/plugins/[slug]/+page.svelte +6 -0
- package/src/routes/docs/plugins/charts.md +990 -0
- package/src/routes/docs/typography/[slug]/+page.js +13 -0
- package/src/routes/docs/typography/[slug]/+page.svelte +6 -0
- package/src/routes/docs/typography/blockquote.md +214 -0
- package/src/routes/docs/typography/heading.md +270 -0
- package/src/routes/docs/typography/hr.md +115 -0
- package/src/routes/docs/typography/image.md +244 -0
- package/src/routes/docs/typography/link.md +147 -0
- package/src/routes/docs/typography/list.md +358 -0
- package/src/routes/docs/typography/paragraph.md +265 -0
- package/src/routes/docs/typography/text.md +340 -0
- package/src/routes/docs/utilities/[slug]/+page.js +13 -0
- package/src/routes/docs/utilities/[slug]/+page.svelte +6 -0
- package/src/routes/docs/utilities/close-button.md +42 -0
- package/src/routes/docs/utilities/label.md +41 -0
- package/src/routes/docs/utilities/toolbar.md +157 -0
- package/src/routes/landing/CTA.svelte +98 -0
- package/src/routes/landing/Components.svelte +42 -0
- package/src/routes/landing/Contributors.svelte +55 -0
- package/src/routes/landing/DesignFigma.svelte +39 -0
- package/src/routes/landing/Featured.svelte +33 -0
- package/src/routes/landing/GetStarted.svelte +23 -0
- package/src/routes/landing/Hero.svelte +38 -0
- package/src/routes/landing/SocialProof.svelte +80 -0
- package/src/routes/landing/utils/A.svelte +5 -0
- package/src/routes/landing/utils/H2.svelte +1 -0
- package/src/routes/landing/utils/Row.svelte +16 -0
- package/src/routes/landing/utils/Section.svelte +9 -0
- package/src/routes/layouts/component/+page.svelte +44 -0
- package/src/routes/layouts/component/Anchor.svelte +29 -0
- package/src/routes/layouts/component/code.svelte +1 -0
- package/src/routes/layouts/component/h1.svelte +0 -0
- package/src/routes/layouts/component/h2.svelte +5 -0
- package/src/routes/layouts/component/h3.svelte +5 -0
- package/src/routes/layouts/testLayout/+page.svelte +5 -0
- package/src/routes/utils/AlgoliaSearch.svelte +22 -0
- package/src/routes/utils/CompoAttributesViewer.svelte +78 -0
- package/src/routes/utils/CompoCard.svelte +36 -0
- package/src/routes/utils/CompoDescription.svelte +7 -0
- package/src/routes/utils/CopyCliboardInput.svelte +45 -0
- package/src/routes/utils/DocBadge.svelte +7 -0
- package/src/routes/utils/DocBadgeList.svelte +10 -0
- package/src/routes/utils/ExampleDarkMode.svelte +16 -0
- package/src/routes/utils/ExampleWrapper.svelte +143 -0
- package/src/routes/utils/Footer.svelte +64 -0
- package/src/routes/utils/GitHubSource.svelte +13 -0
- package/src/routes/utils/GitHubSourceList.svelte +21 -0
- package/src/routes/utils/MetaTag.svelte +42 -0
- package/src/routes/utils/Newsletter.svelte +52 -0
- package/src/routes/utils/PageHeadSection.svelte +20 -0
- package/src/routes/utils/Paging.svelte +60 -0
- package/src/routes/utils/TableDefaultRow.svelte +81 -0
- package/src/routes/utils/TableProp.svelte +41 -0
- package/src/routes/utils/Toc.svelte +55 -0
- package/src/routes/utils/ToolbarLink.svelte +12 -0
- package/src/routes/utils/data.json +48 -0
- package/src/routes/utils/icons/Angular.svelte +3 -0
- package/src/routes/utils/icons/ArrowLeft.svelte +3 -0
- package/src/routes/utils/icons/ArrowRight.svelte +3 -0
- package/src/routes/utils/icons/Check.svelte +3 -0
- package/src/routes/utils/icons/China.svelte +9 -0
- package/src/routes/utils/icons/Clipboard.svelte +3 -0
- package/src/routes/utils/icons/CoinbaseWallet.svelte +4 -0
- package/src/routes/utils/icons/Combinator.svelte +35 -0
- package/src/routes/utils/icons/Community.svelte +5 -0
- package/src/routes/utils/icons/Dev.svelte +9 -0
- package/src/routes/utils/icons/Discord.svelte +5 -0
- package/src/routes/utils/icons/Dribble.svelte +3 -0
- package/src/routes/utils/icons/Figma.svelte +14 -0
- package/src/routes/utils/icons/FlowbiteLogo.svelte +49 -0
- package/src/routes/utils/icons/Fortmatic.svelte +4 -0
- package/src/routes/utils/icons/Germany.svelte +5 -0
- package/src/routes/utils/icons/GitHub.svelte +13 -0
- package/src/routes/utils/icons/Hunt.svelte +17 -0
- package/src/routes/utils/icons/Italy.svelte +7 -0
- package/src/routes/utils/icons/Mail.svelte +4 -0
- package/src/routes/utils/icons/MetaMask.svelte +31 -0
- package/src/routes/utils/icons/Moon.svelte +3 -0
- package/src/routes/utils/icons/Npm.svelte +3 -0
- package/src/routes/utils/icons/OperaWallet.svelte +17 -0
- package/src/routes/utils/icons/Quote.svelte +3 -0
- package/src/routes/utils/icons/React.svelte +4 -0
- package/src/routes/utils/icons/Reddit.svelte +23 -0
- package/src/routes/utils/icons/Sun.svelte +7 -0
- package/src/routes/utils/icons/Usa.svelte +31 -0
- package/src/routes/utils/icons/Vue.svelte +3 -0
- package/src/routes/utils/icons/WalletConnect.svelte +18 -0
- package/src/routes/utils/icons/YouTube.svelte +3 -0
- package/src/routes/utils/icons/YouTubeFull.svelte +17 -0
- package/src/routes/utils/index.ts +146 -0
- package/src/routes/utils/mdsvex.d.ts +8 -0
- package/static/images/alert-prop.png +0 -0
- package/static/images/carousel/cosmic-timetraveler-pYyOZ8q7AII-unsplash.webp +0 -0
- package/static/images/carousel/cristina-gottardi-CSpjU6hYo_0-unsplash.webp +0 -0
- package/static/images/carousel/johannes-plenio-RwHv7LgeC7s-unsplash.webp +0 -0
- package/static/images/carousel/jonatan-pie-3l3RwQdHRHg-unsplash.webp +0 -0
- package/static/images/carousel/mark-harpur-K2s_YE031CA-unsplash.webp +0 -0
- package/static/images/carousel/pietro-de-grandi-T7K4aEPoGGk-unsplash.webp +0 -0
- package/static/images/carousel/sergey-pesterev-tMvuB9se2uQ-unsplash.webp +0 -0
- package/static/images/carousel/solotravelgoals-7kLufxYoqWk-unsplash.webp +0 -0
- package/static/images/carousel-1.svg +4 -0
- package/static/images/carousel-2.svg +4 -0
- package/static/images/carousel-3.svg +4 -0
- package/static/images/carousel-4.svg +4 -0
- package/static/images/carousel-5.svg +4 -0
- package/static/images/code-example-dark.png +0 -0
- package/static/images/code-example.png +0 -0
- package/static/images/colors.webp +0 -0
- package/static/images/components/accordion-dark.svg +40 -0
- package/static/images/components/accordion.svg +40 -0
- package/static/images/components/alert-dark.svg +11 -0
- package/static/images/components/alert.svg +11 -0
- package/static/images/components/avatar-dark.svg +117 -0
- package/static/images/components/avatar.svg +117 -0
- package/static/images/components/badge-dark.svg +5 -0
- package/static/images/components/badge.svg +5 -0
- package/static/images/components/banner-dark.svg +34 -0
- package/static/images/components/banner.svg +33 -0
- package/static/images/components/bottom-navigation-dark.svg +44 -0
- package/static/images/components/bottom-navigation.svg +43 -0
- package/static/images/components/breadcrumb-dark.svg +7 -0
- package/static/images/components/breadcrumb.svg +7 -0
- package/static/images/components/button-dark.svg +10 -0
- package/static/images/components/button-group-dark.svg +10 -0
- package/static/images/components/button-group.svg +10 -0
- package/static/images/components/button.svg +10 -0
- package/static/images/components/card-dark.svg +31 -0
- package/static/images/components/card.svg +32 -0
- package/static/images/components/carousel-dark.svg +13 -0
- package/static/images/components/carousel.svg +13 -0
- package/static/images/components/charts-dark.svg +29 -0
- package/static/images/components/charts.svg +29 -0
- package/static/images/components/darkmode-dark.svg +7 -0
- package/static/images/components/darkmode.svg +3 -0
- package/static/images/components/device-mockups-dark.svg +17 -0
- package/static/images/components/device-mockups.svg +17 -0
- package/static/images/components/drawer-dark.svg +32 -0
- package/static/images/components/drawer.svg +32 -0
- package/static/images/components/dropdown-dark.svg +35 -0
- package/static/images/components/dropdown.svg +35 -0
- package/static/images/components/footer-dark.svg +52 -0
- package/static/images/components/footer.svg +50 -0
- package/static/images/components/forms-dark.svg +64 -0
- package/static/images/components/forms.svg +64 -0
- package/static/images/components/gallery-dark.svg +14 -0
- package/static/images/components/gallery.svg +14 -0
- package/static/images/components/indicators-dark.svg +38 -0
- package/static/images/components/indicators.svg +38 -0
- package/static/images/components/jumbotron-dark.svg +13 -0
- package/static/images/components/jumbotron.svg +13 -0
- package/static/images/components/kbd-dark.svg +460 -0
- package/static/images/components/kbd.svg +462 -0
- package/static/images/components/list-group-dark.svg +58 -0
- package/static/images/components/list-group.svg +58 -0
- package/static/images/components/mega-menu-dark.svg +71 -0
- package/static/images/components/mega-menu.svg +71 -0
- package/static/images/components/modal-dark.svg +32 -0
- package/static/images/components/modal.svg +33 -0
- package/static/images/components/navbar-dark.svg +78 -0
- package/static/images/components/navbar.svg +78 -0
- package/static/images/components/pagination-dark.svg +50 -0
- package/static/images/components/pagination.svg +50 -0
- package/static/images/components/popover-dark.svg +18 -0
- package/static/images/components/popover.svg +17 -0
- package/static/images/components/progress-dark.svg +10 -0
- package/static/images/components/progress.svg +10 -0
- package/static/images/components/rating-dark.svg +29 -0
- package/static/images/components/rating.svg +29 -0
- package/static/images/components/sidebar-dark.svg +17 -0
- package/static/images/components/sidebar.svg +18 -0
- package/static/images/components/skeleton-dark.svg +10 -0
- package/static/images/components/skeleton.svg +10 -0
- package/static/images/components/speed-dial-dark.svg +69 -0
- package/static/images/components/speed-dial.svg +69 -0
- package/static/images/components/spinner-dark.svg +6 -0
- package/static/images/components/spinner.svg +6 -0
- package/static/images/components/stepper-dark.svg +11 -0
- package/static/images/components/stepper.svg +10 -0
- package/static/images/components/tab-dark.svg +10 -0
- package/static/images/components/tab.svg +10 -0
- package/static/images/components/table-dark.svg +47 -0
- package/static/images/components/table.svg +47 -0
- package/static/images/components/timeline-dark.svg +20 -0
- package/static/images/components/timeline.svg +20 -0
- package/static/images/components/toast-dark.svg +49 -0
- package/static/images/components/toast.svg +49 -0
- package/static/images/components/tooltip-dark.svg +7 -0
- package/static/images/components/tooltip.svg +7 -0
- package/static/images/components/typography-dark.svg +13 -0
- package/static/images/components/typography.svg +13 -0
- package/static/images/components/video-dark.svg +4 -0
- package/static/images/components/video.svg +4 -0
- package/static/images/eugene.jpg +0 -0
- package/static/images/examples/content-gallery-3.png +0 -0
- package/static/images/examples/image-1.jpg +0 -0
- package/static/images/examples/image-1@2x.jpg +0 -0
- package/static/images/examples/image-2@2x.jpg +0 -0
- package/static/images/examples/image-3@2x.jpg +0 -0
- package/static/images/examples/image-4@2x.jpg +0 -0
- package/static/images/experimental/datepicker-dark.svg +67 -0
- package/static/images/experimental/datepicker.svg +67 -0
- package/static/images/favicon.png +0 -0
- package/static/images/favicon.svg +49 -0
- package/static/images/figma-dark.png +0 -0
- package/static/images/figma.png +0 -0
- package/static/images/flowbite-svelte-blocks-optimized.png +0 -0
- package/static/images/flowbite-svelte-icon-logo.svg +49 -0
- package/static/images/flowbite-svelte-icon.svg +49 -0
- package/static/images/flowbite-svelte-og-image.png +0 -0
- package/static/images/flowbite-svelte.png +0 -0
- package/static/images/forms/checkbox-dark.svg +14 -0
- package/static/images/forms/checkbox.svg +14 -0
- package/static/images/forms/file-input-dark.svg +59 -0
- package/static/images/forms/file-input.svg +46 -0
- package/static/images/forms/floating-label-dark.svg +11 -0
- package/static/images/forms/floating-label.svg +11 -0
- package/static/images/forms/input-field-dark.svg +65 -0
- package/static/images/forms/input-field.svg +66 -0
- package/static/images/forms/radio-dark.svg +14 -0
- package/static/images/forms/radio.svg +12 -0
- package/static/images/forms/range-dark.svg +38 -0
- package/static/images/forms/range.svg +38 -0
- package/static/images/forms/search-input-dark.svg +82 -0
- package/static/images/forms/search-input.svg +82 -0
- package/static/images/forms/select-dark.svg +64 -0
- package/static/images/forms/select.svg +64 -0
- package/static/images/forms/textarea-dark.svg +16 -0
- package/static/images/forms/textarea.svg +16 -0
- package/static/images/forms/toggle-dark.svg +12 -0
- package/static/images/forms/toggle.svg +12 -0
- package/static/images/gallery-dark.png +0 -0
- package/static/images/gallery.png +0 -0
- package/static/images/graphs-dark.png +0 -0
- package/static/images/graphs.png +0 -0
- package/static/images/image-1.jpeg +0 -0
- package/static/images/image-1.png +0 -0
- package/static/images/image-1.webp +0 -0
- package/static/images/image-2.jpeg +0 -0
- package/static/images/image-2.png +0 -0
- package/static/images/image-2.webp +0 -0
- package/static/images/image-4.jpeg +0 -0
- package/static/images/image-4.png +0 -0
- package/static/images/image-4.webp +0 -0
- package/static/images/italy.png +0 -0
- package/static/images/nature-1.jpeg +0 -0
- package/static/images/office1.webp +0 -0
- package/static/images/product-1.webp +0 -0
- package/static/images/profile-picture-1.webp +0 -0
- package/static/images/profile-picture-2.webp +0 -0
- package/static/images/profile-picture-3.webp +0 -0
- package/static/images/profile-picture-4.webp +0 -0
- package/static/images/profile-picture-5.webp +0 -0
- package/static/images/sveltekit-sidebar-layout-optimized.png +0 -0
- package/static/images/tailwind-code-dark.png +0 -0
- package/static/images/tailwind-code.png +0 -0
- package/static/images/typography/blockquote-dark.svg +8 -0
- package/static/images/typography/blockquote.svg +8 -0
- package/static/images/typography/heading-dark.svg +5 -0
- package/static/images/typography/heading.svg +5 -0
- package/static/images/typography/hr-dark.svg +7 -0
- package/static/images/typography/hr.svg +7 -0
- package/static/images/typography/image-dark.svg +6 -0
- package/static/images/typography/image.svg +6 -0
- package/static/images/typography/link-dark.svg +4 -0
- package/static/images/typography/link.svg +4 -0
- package/static/images/typography/list-dark.svg +26 -0
- package/static/images/typography/list.svg +26 -0
- package/static/images/typography/paragraph-dark.svg +13 -0
- package/static/images/typography/paragraph.svg +13 -0
- package/static/images/typography/text-dark.svg +11 -0
- package/static/images/typography/text.svg +11 -0
- package/static/site.webmanifest +12 -0
- package/static/styles/docs.css +537 -0
- package/static/videos/compo-doc.gif +0 -0
- package/static/videos/flowbite.mp4 +0 -0
- package/svelte.config.js +28 -0
- package/tailwind.config.cjs +89 -0
- package/tests/components.spec.ts +199 -0
- package/tests/examples.spec.ts +11 -0
- package/tests/extend.spec.ts +19 -0
- package/tests/forms.spec.ts +62 -0
- package/tests/page.spec.ts +46 -0
- package/tests/plugins.spec.ts +7 -0
- package/tests/redirect.spec.ts +175 -0
- package/tests/typography.spec.ts +52 -0
- package/tests/utilities.spec.ts +22 -0
- package/tsconfig.json +19 -0
- package/vite.config.ts +22 -0
- package/vite.config.ts.timestamp-1692816833518-844de2c3e2008.mjs +22 -0
- package/dist/carousels/Caption.svelte +0 -17
- package/dist/carousels/Caption.svelte.d.ts +0 -26
- package/dist/carousels/Caption.svelte.d.ts.map +0 -1
- package/dist/carousels/CarouselTransition.svelte +0 -174
- package/dist/carousels/CarouselTransition.svelte.d.ts +0 -68
- package/dist/carousels/CarouselTransition.svelte.d.ts.map +0 -1
- package/dist/carousels/Indicator.svelte +0 -20
- package/dist/carousels/Indicator.svelte.d.ts +0 -28
- package/dist/carousels/Indicator.svelte.d.ts.map +0 -1
- package/dist/carousels/Slide.svelte +0 -23
- package/dist/carousels/Slide.svelte.d.ts +0 -30
- package/dist/carousels/Slide.svelte.d.ts.map +0 -1
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
<svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g filter="url(#filter0_d_169_148184)">
|
|
3
|
+
<mask id="mask0_169_148184" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="135" y="60" width="30" height="30">
|
|
4
|
+
<circle cx="149.576" cy="75.0756" r="14.5756" fill="#E5E7EB"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_169_148184)">
|
|
7
|
+
<circle cx="149.576" cy="75.0756" r="14.5756" fill="#4B5563"/>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M149.575 76.5569C150.811 76.5569 151.995 76.0662 152.869 75.1927C153.742 74.3191 154.233 73.1344 154.233 71.8991C154.233 70.6637 153.742 69.479 152.869 68.6055C151.995 67.7319 150.811 67.2412 149.575 67.2412C148.34 67.2412 147.155 67.7319 146.282 68.6055C145.408 69.479 144.917 70.6637 144.917 71.8991C144.917 73.1344 145.408 74.3191 146.282 75.1927C147.155 76.0662 148.34 76.5569 149.575 76.5569ZM138.707 90.5305C138.707 89.1032 138.988 87.6899 139.534 86.3713C140.081 85.0527 140.881 83.8546 141.89 82.8454C142.9 81.8362 144.098 81.0356 145.416 80.4894C146.735 79.9433 148.148 79.6621 149.575 79.6621C151.003 79.6621 152.416 79.9433 153.734 80.4894C155.053 81.0356 156.251 81.8362 157.26 82.8454C158.27 83.8546 159.07 85.0527 159.616 86.3713C160.163 87.6899 160.444 89.1032 160.444 90.5305H138.707Z" fill="#6B7280"/>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
<g filter="url(#filter1_d_169_148184)">
|
|
12
|
+
<rect x="176" y="156.878" width="99" height="6" rx="3" fill="#9CA3AF"/>
|
|
13
|
+
<rect x="176" y="168.878" width="65" height="5" rx="2.5" fill="#6B7280"/>
|
|
14
|
+
<mask id="mask1_169_148184" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="135" y="150" width="30" height="30">
|
|
15
|
+
<circle cx="149.576" cy="165.378" r="14.5756" fill="#E5E7EB"/>
|
|
16
|
+
</mask>
|
|
17
|
+
<g mask="url(#mask1_169_148184)">
|
|
18
|
+
<circle cx="149.576" cy="165.378" r="14.5756" fill="#4B5563"/>
|
|
19
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M149.575 166.86C150.811 166.86 151.995 166.369 152.869 165.495C153.742 164.622 154.233 163.437 154.233 162.202C154.233 160.966 153.742 159.782 152.869 158.908C151.995 158.035 150.811 157.544 149.575 157.544C148.34 157.544 147.155 158.035 146.282 158.908C145.408 159.782 144.917 160.966 144.917 162.202C144.917 163.437 145.408 164.622 146.282 165.495C147.155 166.369 148.34 166.86 149.575 166.86ZM138.707 180.833C138.707 179.406 138.988 177.993 139.534 176.674C140.081 175.355 140.881 174.157 141.89 173.148C142.9 172.139 144.098 171.338 145.416 170.792C146.735 170.246 148.148 169.965 149.575 169.965C151.003 169.965 152.416 170.246 153.734 170.792C155.053 171.338 156.251 172.139 157.26 173.148C158.27 174.157 159.07 175.355 159.616 176.674C160.163 177.993 160.444 179.406 160.444 180.833H138.707Z" fill="#6B7280"/>
|
|
20
|
+
</g>
|
|
21
|
+
</g>
|
|
22
|
+
<g filter="url(#filter2_d_169_148184)">
|
|
23
|
+
<mask id="mask2_169_148184" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="135" y="105" width="30" height="30">
|
|
24
|
+
<circle cx="149.576" cy="120.227" r="14.5756" fill="#E5E7EB"/>
|
|
25
|
+
</mask>
|
|
26
|
+
<g mask="url(#mask2_169_148184)">
|
|
27
|
+
<circle cx="149.576" cy="120.227" r="14.5756" fill="#4B5563"/>
|
|
28
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M149.575 121.708C150.811 121.708 151.995 121.218 152.869 120.344C153.742 119.471 154.233 118.286 154.233 117.05C154.233 115.815 153.742 114.63 152.869 113.757C151.995 112.883 150.811 112.393 149.575 112.393C148.34 112.393 147.155 112.883 146.282 113.757C145.408 114.63 144.917 115.815 144.917 117.05C144.917 118.286 145.408 119.471 146.282 120.344C147.155 121.218 148.34 121.708 149.575 121.708ZM138.707 135.682C138.707 134.255 138.988 132.841 139.534 131.523C140.081 130.204 140.881 129.006 141.89 127.997C142.9 126.988 144.098 126.187 145.416 125.641C146.735 125.095 148.148 124.814 149.575 124.814C151.003 124.814 152.416 125.095 153.734 125.641C155.053 126.187 156.251 126.988 157.26 127.997C158.27 129.006 159.07 130.204 159.616 131.523C160.163 132.841 160.444 134.255 160.444 135.682H138.707Z" fill="#6B7280"/>
|
|
29
|
+
</g>
|
|
30
|
+
</g>
|
|
31
|
+
<g filter="url(#filter3_d_169_148184)">
|
|
32
|
+
<circle cx="165.151" cy="120.227" r="14.5756" fill="#4B5563"/>
|
|
33
|
+
<mask id="mask3_169_148184" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="150" y="105" width="30" height="30">
|
|
34
|
+
<circle cx="165.151" cy="120.227" r="14.5756" fill="#E5E7EB"/>
|
|
35
|
+
</mask>
|
|
36
|
+
<g mask="url(#mask3_169_148184)">
|
|
37
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M165.152 121.708C166.387 121.708 167.572 121.218 168.445 120.344C169.319 119.471 169.809 118.286 169.809 117.05C169.809 115.815 169.319 114.63 168.445 113.757C167.572 112.883 166.387 112.393 165.152 112.393C163.916 112.393 162.731 112.883 161.858 113.757C160.984 114.63 160.494 115.815 160.494 117.05C160.494 118.286 160.984 119.471 161.858 120.344C162.731 121.218 163.916 121.708 165.152 121.708ZM154.283 135.682C154.283 134.255 154.564 132.841 155.111 131.523C155.657 130.204 156.457 129.006 157.466 127.997C158.476 126.988 159.674 126.187 160.992 125.641C162.311 125.095 163.724 124.814 165.152 124.814C166.579 124.814 167.992 125.095 169.311 125.641C170.629 126.187 171.827 126.988 172.837 127.997C173.846 129.006 174.646 130.204 175.193 131.523C175.739 132.841 176.02 134.255 176.02 135.682H154.283Z" fill="#6B7280"/>
|
|
38
|
+
</g>
|
|
39
|
+
<rect x="150.076" y="105.151" width="30.1512" height="30.1512" rx="15.0756" stroke="#111928"/>
|
|
40
|
+
</g>
|
|
41
|
+
<g filter="url(#filter4_d_169_148184)">
|
|
42
|
+
<mask id="mask4_169_148184" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="166" y="105" width="30" height="30">
|
|
43
|
+
<circle cx="180.727" cy="120.227" r="14.5756" fill="#E5E7EB"/>
|
|
44
|
+
</mask>
|
|
45
|
+
<g mask="url(#mask4_169_148184)">
|
|
46
|
+
<circle cx="180.727" cy="120.227" r="14.5756" fill="#4B5563"/>
|
|
47
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M180.727 121.708C181.962 121.708 183.147 121.218 184.02 120.344C184.894 119.471 185.385 118.286 185.385 117.05C185.385 115.815 184.894 114.63 184.02 113.757C183.147 112.883 181.962 112.393 180.727 112.393C179.491 112.393 178.307 112.883 177.433 113.757C176.56 114.63 176.069 115.815 176.069 117.05C176.069 118.286 176.56 119.471 177.433 120.344C178.307 121.218 179.491 121.708 180.727 121.708ZM169.858 135.682C169.858 134.255 170.14 132.841 170.686 131.523C171.232 130.204 172.032 129.006 173.042 127.997C174.051 126.988 175.249 126.187 176.568 125.641C177.886 125.095 179.299 124.814 180.727 124.814C182.154 124.814 183.567 125.095 184.886 125.641C186.204 126.187 187.403 126.988 188.412 127.997C189.421 129.006 190.222 130.204 190.768 131.523C191.314 132.841 191.595 134.255 191.595 135.682H169.858Z" fill="#6B7280"/>
|
|
48
|
+
</g>
|
|
49
|
+
<rect x="165.651" y="105.151" width="30.1512" height="30.1512" rx="15.0756" stroke="#111928"/>
|
|
50
|
+
</g>
|
|
51
|
+
<g filter="url(#filter5_d_169_148184)">
|
|
52
|
+
<mask id="mask5_169_148184" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="181" y="105" width="30" height="30">
|
|
53
|
+
<circle cx="196.303" cy="120.227" r="14.5756" fill="#E5E7EB"/>
|
|
54
|
+
</mask>
|
|
55
|
+
<g mask="url(#mask5_169_148184)">
|
|
56
|
+
<circle cx="196.303" cy="120.227" r="14.5756" fill="#4B5563"/>
|
|
57
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M196.303 121.708C197.538 121.708 198.723 121.218 199.596 120.344C200.47 119.471 200.961 118.286 200.961 117.05C200.961 115.815 200.47 114.63 199.596 113.757C198.723 112.883 197.538 112.393 196.303 112.393C195.068 112.393 193.883 112.883 193.009 113.757C192.136 114.63 191.645 115.815 191.645 117.05C191.645 118.286 192.136 119.471 193.009 120.344C193.883 121.218 195.068 121.708 196.303 121.708ZM185.435 135.682C185.435 134.255 185.716 132.841 186.262 131.523C186.808 130.204 187.609 129.006 188.618 127.997C189.627 126.988 190.825 126.187 192.144 125.641C193.462 125.095 194.876 124.814 196.303 124.814C197.73 124.814 199.143 125.095 200.462 125.641C201.781 126.187 202.979 126.988 203.988 127.997C204.997 129.006 205.798 130.204 206.344 131.523C206.89 132.841 207.171 134.255 207.171 135.682H185.435Z" fill="#6B7280"/>
|
|
58
|
+
</g>
|
|
59
|
+
<rect x="181.227" y="105.151" width="30.1512" height="30.1512" rx="15.0756" stroke="#111928"/>
|
|
60
|
+
</g>
|
|
61
|
+
<defs>
|
|
62
|
+
<filter id="filter0_d_169_148184" x="133" y="59.5" width="33.1514" height="33.1514" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
63
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
64
|
+
<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"/>
|
|
65
|
+
<feOffset dy="1"/>
|
|
66
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
67
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
68
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_148184"/>
|
|
69
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_148184" result="shape"/>
|
|
70
|
+
</filter>
|
|
71
|
+
<filter id="filter1_d_169_148184" x="133" y="149.803" width="144" height="33.1514" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
72
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
73
|
+
<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"/>
|
|
74
|
+
<feOffset dy="1"/>
|
|
75
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
76
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
77
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_148184"/>
|
|
78
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_148184" result="shape"/>
|
|
79
|
+
</filter>
|
|
80
|
+
<filter id="filter2_d_169_148184" x="133" y="104.651" width="33.1514" height="33.1514" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
81
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
82
|
+
<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"/>
|
|
83
|
+
<feOffset dy="1"/>
|
|
84
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
85
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
86
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_148184"/>
|
|
87
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_148184" result="shape"/>
|
|
88
|
+
</filter>
|
|
89
|
+
<filter id="filter3_d_169_148184" x="147.576" y="103.651" width="35.1514" height="35.1514" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
90
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
91
|
+
<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"/>
|
|
92
|
+
<feOffset dy="1"/>
|
|
93
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
94
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
95
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_148184"/>
|
|
96
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_148184" result="shape"/>
|
|
97
|
+
</filter>
|
|
98
|
+
<filter id="filter4_d_169_148184" x="163.151" y="103.651" width="35.1514" height="35.1514" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
99
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
100
|
+
<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"/>
|
|
101
|
+
<feOffset dy="1"/>
|
|
102
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
103
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
104
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_148184"/>
|
|
105
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_148184" result="shape"/>
|
|
106
|
+
</filter>
|
|
107
|
+
<filter id="filter5_d_169_148184" x="178.727" y="103.651" width="35.1514" height="35.1514" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
108
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
109
|
+
<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"/>
|
|
110
|
+
<feOffset dy="1"/>
|
|
111
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
112
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
113
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_148184"/>
|
|
114
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_148184" result="shape"/>
|
|
115
|
+
</filter>
|
|
116
|
+
</defs>
|
|
117
|
+
</svg>
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
<svg width="410" height="240" viewBox="0 0 410 240" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g filter="url(#filter0_d_169_148214)">
|
|
3
|
+
<mask id="mask0_169_148214" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="135" y="60" width="30" height="30">
|
|
4
|
+
<circle cx="149.576" cy="74.5756" r="14.5756" fill="#E5E7EB"/>
|
|
5
|
+
</mask>
|
|
6
|
+
<g mask="url(#mask0_169_148214)">
|
|
7
|
+
<circle cx="149.576" cy="74.5756" r="14.5756" fill="#F4F4F5"/>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M149.575 76.0569C150.811 76.0569 151.995 75.5662 152.869 74.6927C153.742 73.8191 154.233 72.6344 154.233 71.3991C154.233 70.1637 153.742 68.979 152.869 68.1055C151.995 67.2319 150.811 66.7412 149.575 66.7412C148.34 66.7412 147.155 67.2319 146.282 68.1055C145.408 68.979 144.917 70.1637 144.917 71.3991C144.917 72.6344 145.408 73.8191 146.282 74.6927C147.155 75.5662 148.34 76.0569 149.575 76.0569ZM138.707 90.0305C138.707 88.6032 138.988 87.1899 139.534 85.8713C140.081 84.5527 140.881 83.3546 141.89 82.3454C142.9 81.3362 144.098 80.5356 145.416 79.9894C146.735 79.4433 148.148 79.1621 149.575 79.1621C151.003 79.1621 152.416 79.4433 153.734 79.9894C155.053 80.5356 156.251 81.3362 157.26 82.3454C158.27 83.3546 159.07 84.5527 159.616 85.8713C160.163 87.1899 160.444 88.6032 160.444 90.0305H138.707Z" fill="#9CA3AF"/>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
<g filter="url(#filter1_d_169_148214)">
|
|
12
|
+
<rect x="176" y="156.378" width="99" height="6" rx="3" fill="#D1D5DB"/>
|
|
13
|
+
<rect x="176" y="168.378" width="65" height="5" rx="2.5" fill="#E5E7EB"/>
|
|
14
|
+
<mask id="mask1_169_148214" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="135" y="150" width="30" height="30">
|
|
15
|
+
<circle cx="149.576" cy="164.878" r="14.5756" fill="#E5E7EB"/>
|
|
16
|
+
</mask>
|
|
17
|
+
<g mask="url(#mask1_169_148214)">
|
|
18
|
+
<circle cx="149.576" cy="164.878" r="14.5756" fill="#F4F4F5"/>
|
|
19
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M149.575 166.36C150.811 166.36 151.995 165.869 152.869 164.995C153.742 164.122 154.233 162.937 154.233 161.702C154.233 160.466 153.742 159.282 152.869 158.408C151.995 157.535 150.811 157.044 149.575 157.044C148.34 157.044 147.155 157.535 146.282 158.408C145.408 159.282 144.917 160.466 144.917 161.702C144.917 162.937 145.408 164.122 146.282 164.995C147.155 165.869 148.34 166.36 149.575 166.36ZM138.707 180.333C138.707 178.906 138.988 177.493 139.534 176.174C140.081 174.855 140.881 173.657 141.89 172.648C142.9 171.639 144.098 170.838 145.416 170.292C146.735 169.746 148.148 169.465 149.575 169.465C151.003 169.465 152.416 169.746 153.734 170.292C155.053 170.838 156.251 171.639 157.26 172.648C158.27 173.657 159.07 174.855 159.616 176.174C160.163 177.493 160.444 178.906 160.444 180.333H138.707Z" fill="#9CA3AF"/>
|
|
20
|
+
</g>
|
|
21
|
+
</g>
|
|
22
|
+
<g filter="url(#filter2_d_169_148214)">
|
|
23
|
+
<mask id="mask2_169_148214" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="135" y="105" width="30" height="30">
|
|
24
|
+
<circle cx="149.576" cy="119.727" r="14.5756" fill="#E5E7EB"/>
|
|
25
|
+
</mask>
|
|
26
|
+
<g mask="url(#mask2_169_148214)">
|
|
27
|
+
<circle cx="149.576" cy="119.727" r="14.5756" fill="#F4F4F5"/>
|
|
28
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M149.575 121.208C150.811 121.208 151.995 120.718 152.869 119.844C153.742 118.971 154.233 117.786 154.233 116.55C154.233 115.315 153.742 114.13 152.869 113.257C151.995 112.383 150.811 111.893 149.575 111.893C148.34 111.893 147.155 112.383 146.282 113.257C145.408 114.13 144.917 115.315 144.917 116.55C144.917 117.786 145.408 118.971 146.282 119.844C147.155 120.718 148.34 121.208 149.575 121.208ZM138.707 135.182C138.707 133.755 138.988 132.341 139.534 131.023C140.081 129.704 140.881 128.506 141.89 127.497C142.9 126.488 144.098 125.687 145.416 125.141C146.735 124.595 148.148 124.314 149.575 124.314C151.003 124.314 152.416 124.595 153.734 125.141C155.053 125.687 156.251 126.488 157.26 127.497C158.27 128.506 159.07 129.704 159.616 131.023C160.163 132.341 160.444 133.755 160.444 135.182H138.707Z" fill="#9CA3AF"/>
|
|
29
|
+
</g>
|
|
30
|
+
</g>
|
|
31
|
+
<g filter="url(#filter3_d_169_148214)">
|
|
32
|
+
<mask id="mask3_169_148214" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="150" y="105" width="30" height="30">
|
|
33
|
+
<circle cx="165.151" cy="119.727" r="14.5756" fill="#E5E7EB"/>
|
|
34
|
+
</mask>
|
|
35
|
+
<g mask="url(#mask3_169_148214)">
|
|
36
|
+
<circle cx="165.151" cy="119.727" r="14.5756" fill="#F4F4F5"/>
|
|
37
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M165.152 121.208C166.387 121.208 167.572 120.718 168.445 119.844C169.319 118.971 169.809 117.786 169.809 116.55C169.809 115.315 169.319 114.13 168.445 113.257C167.572 112.383 166.387 111.893 165.152 111.893C163.916 111.893 162.731 112.383 161.858 113.257C160.984 114.13 160.494 115.315 160.494 116.55C160.494 117.786 160.984 118.971 161.858 119.844C162.731 120.718 163.916 121.208 165.152 121.208ZM154.283 135.182C154.283 133.755 154.564 132.341 155.111 131.023C155.657 129.704 156.457 128.506 157.466 127.497C158.476 126.488 159.674 125.687 160.992 125.141C162.311 124.595 163.724 124.314 165.152 124.314C166.579 124.314 167.992 124.595 169.311 125.141C170.629 125.687 171.827 126.488 172.837 127.497C173.846 128.506 174.646 129.704 175.193 131.023C175.739 132.341 176.02 133.755 176.02 135.182H154.283Z" fill="#9CA3AF"/>
|
|
38
|
+
</g>
|
|
39
|
+
<rect x="150.076" y="104.651" width="30.1512" height="30.1512" rx="15.0756" stroke="white"/>
|
|
40
|
+
</g>
|
|
41
|
+
<g filter="url(#filter4_d_169_148214)">
|
|
42
|
+
<mask id="mask4_169_148214" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="166" y="105" width="30" height="30">
|
|
43
|
+
<circle cx="180.727" cy="119.727" r="14.5756" fill="#E5E7EB"/>
|
|
44
|
+
</mask>
|
|
45
|
+
<g mask="url(#mask4_169_148214)">
|
|
46
|
+
<circle cx="180.727" cy="119.727" r="14.5756" fill="#F4F4F5"/>
|
|
47
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M180.727 121.208C181.962 121.208 183.147 120.718 184.02 119.844C184.894 118.971 185.385 117.786 185.385 116.55C185.385 115.315 184.894 114.13 184.02 113.257C183.147 112.383 181.962 111.893 180.727 111.893C179.491 111.893 178.307 112.383 177.433 113.257C176.56 114.13 176.069 115.315 176.069 116.55C176.069 117.786 176.56 118.971 177.433 119.844C178.307 120.718 179.491 121.208 180.727 121.208ZM169.858 135.182C169.858 133.755 170.14 132.341 170.686 131.023C171.232 129.704 172.032 128.506 173.042 127.497C174.051 126.488 175.249 125.687 176.568 125.141C177.886 124.595 179.299 124.314 180.727 124.314C182.154 124.314 183.567 124.595 184.886 125.141C186.204 125.687 187.403 126.488 188.412 127.497C189.421 128.506 190.222 129.704 190.768 131.023C191.314 132.341 191.595 133.755 191.595 135.182H169.858Z" fill="#9CA3AF"/>
|
|
48
|
+
</g>
|
|
49
|
+
<rect x="165.651" y="104.651" width="30.1512" height="30.1512" rx="15.0756" stroke="white"/>
|
|
50
|
+
</g>
|
|
51
|
+
<g filter="url(#filter5_d_169_148214)">
|
|
52
|
+
<mask id="mask5_169_148214" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="181" y="105" width="30" height="30">
|
|
53
|
+
<circle cx="196.303" cy="119.727" r="14.5756" fill="#E5E7EB"/>
|
|
54
|
+
</mask>
|
|
55
|
+
<g mask="url(#mask5_169_148214)">
|
|
56
|
+
<circle cx="196.303" cy="119.727" r="14.5756" fill="#F4F4F5"/>
|
|
57
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M196.303 121.208C197.538 121.208 198.723 120.718 199.596 119.844C200.47 118.971 200.961 117.786 200.961 116.55C200.961 115.315 200.47 114.13 199.596 113.257C198.723 112.383 197.538 111.893 196.303 111.893C195.068 111.893 193.883 112.383 193.009 113.257C192.136 114.13 191.645 115.315 191.645 116.55C191.645 117.786 192.136 118.971 193.009 119.844C193.883 120.718 195.068 121.208 196.303 121.208ZM185.435 135.182C185.435 133.755 185.716 132.341 186.262 131.023C186.808 129.704 187.609 128.506 188.618 127.497C189.627 126.488 190.825 125.687 192.144 125.141C193.462 124.595 194.876 124.314 196.303 124.314C197.73 124.314 199.143 124.595 200.462 125.141C201.781 125.687 202.979 126.488 203.988 127.497C204.997 128.506 205.798 129.704 206.344 131.023C206.89 132.341 207.171 133.755 207.171 135.182H185.435Z" fill="#9CA3AF"/>
|
|
58
|
+
</g>
|
|
59
|
+
<rect x="181.227" y="104.651" width="30.1512" height="30.1512" rx="15.0756" stroke="white"/>
|
|
60
|
+
</g>
|
|
61
|
+
<defs>
|
|
62
|
+
<filter id="filter0_d_169_148214" x="133" y="59" width="33.1514" height="33.1514" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
63
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
64
|
+
<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"/>
|
|
65
|
+
<feOffset dy="1"/>
|
|
66
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
67
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
68
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_148214"/>
|
|
69
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_148214" result="shape"/>
|
|
70
|
+
</filter>
|
|
71
|
+
<filter id="filter1_d_169_148214" x="133" y="149.303" width="144" height="33.1514" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
72
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
73
|
+
<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"/>
|
|
74
|
+
<feOffset dy="1"/>
|
|
75
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
76
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
77
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_148214"/>
|
|
78
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_148214" result="shape"/>
|
|
79
|
+
</filter>
|
|
80
|
+
<filter id="filter2_d_169_148214" x="133" y="104.151" width="33.1514" height="33.1514" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
81
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
82
|
+
<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"/>
|
|
83
|
+
<feOffset dy="1"/>
|
|
84
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
85
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
86
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_148214"/>
|
|
87
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_148214" result="shape"/>
|
|
88
|
+
</filter>
|
|
89
|
+
<filter id="filter3_d_169_148214" x="147.576" y="103.151" width="35.1514" height="35.1514" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
90
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
91
|
+
<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"/>
|
|
92
|
+
<feOffset dy="1"/>
|
|
93
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
94
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
95
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_148214"/>
|
|
96
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_148214" result="shape"/>
|
|
97
|
+
</filter>
|
|
98
|
+
<filter id="filter4_d_169_148214" x="163.151" y="103.151" width="35.1514" height="35.1514" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
99
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
100
|
+
<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"/>
|
|
101
|
+
<feOffset dy="1"/>
|
|
102
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
103
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
104
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_148214"/>
|
|
105
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_148214" result="shape"/>
|
|
106
|
+
</filter>
|
|
107
|
+
<filter id="filter5_d_169_148214" x="178.727" y="103.151" width="35.1514" height="35.1514" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
108
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
109
|
+
<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"/>
|
|
110
|
+
<feOffset dy="1"/>
|
|
111
|
+
<feGaussianBlur stdDeviation="1"/>
|
|
112
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0"/>
|
|
113
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_148214"/>
|
|
114
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_148214" result="shape"/>
|
|
115
|
+
</filter>
|
|
116
|
+
</defs>
|
|
117
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="210" height="90" viewBox="0 0 210 90" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="11" y="21.2837" width="175" height="57" rx="8" fill="#374151"/>
|
|
3
|
+
<rect x="38.5" y="40.7837" width="120" height="18" rx="4" fill="white"/>
|
|
4
|
+
<circle cx="186" cy="24" r="11" fill="#E02424" stroke="white" stroke-width="2"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="210" height="90" viewBox="0 0 210 90" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="11" y="21.2837" width="175" height="57" rx="8" fill="#D1D5DB"/>
|
|
3
|
+
<rect x="38.5" y="40.7837" width="120" height="18" rx="4" fill="white"/>
|
|
4
|
+
<circle cx="186" cy="24" r="11" fill="#E02424" stroke="white" stroke-width="2"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g filter="url(#filter0_dd_170_151281)">
|
|
3
|
+
<rect x="14" y="15" width="323" height="33" rx="4" fill="#374151"/>
|
|
4
|
+
<rect x="22" y="23" width="63" height="6" rx="3" fill="#9CA3AF"/>
|
|
5
|
+
<rect x="22" y="35" width="162" height="5" rx="2.5" fill="#6B7280"/>
|
|
6
|
+
<path d="M217.5 26.5C217.5 25.6716 218.172 25 219 25H258C258.828 25 259.5 25.6716 259.5 26.5V36.5C259.5 37.3284 258.828 38 258 38H219C218.172 38 217.5 37.3284 217.5 36.5V26.5Z" fill="#EB4F27"/>
|
|
7
|
+
<rect x="225" y="29.5" width="27" height="4" rx="1" fill="white"/>
|
|
8
|
+
<path d="M217.5 26.5C217.5 25.6716 218.172 25 219 25H258C258.828 25 259.5 25.6716 259.5 26.5V36.5C259.5 37.3284 258.828 38 258 38H219C218.172 38 217.5 37.3284 217.5 36.5V26.5Z" stroke="#EB4F27"/>
|
|
9
|
+
<rect x="272" y="29.5" width="27" height="4" rx="1" fill="#9CA3AF"/>
|
|
10
|
+
<path d="M264.3 26.5C264.3 25.5611 265.061 24.8 266 24.8H305C305.939 24.8 306.7 25.5611 306.7 26.5V36.5C306.7 37.4389 305.939 38.2 305 38.2H266C265.061 38.2 264.3 37.4389 264.3 36.5V26.5Z" stroke="#9CA3AF" stroke-width="0.6"/>
|
|
11
|
+
<mask id="path-9-inside-1_170_151281" fill="white">
|
|
12
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M321.146 28.6463C321.24 28.5526 321.367 28.4999 321.5 28.4999C321.632 28.4999 321.76 28.5526 321.853 28.6463L324 30.7928L326.146 28.6463C326.193 28.5985 326.248 28.5605 326.309 28.5342C326.37 28.508 326.435 28.4942 326.502 28.4937C326.568 28.4931 326.634 28.5057 326.695 28.5309C326.757 28.556 326.813 28.5932 326.86 28.6401C326.907 28.687 326.944 28.7429 326.969 28.8043C326.994 28.8658 327.007 28.9316 327.006 28.998C327.005 29.0644 326.992 29.13 326.965 29.191C326.939 29.252 326.901 29.3072 326.853 29.3533L324.707 31.4998L326.853 33.6463C326.944 33.7406 326.995 33.8669 326.994 33.998C326.993 34.1291 326.94 34.2545 326.847 34.3472C326.755 34.4399 326.629 34.4925 326.498 34.4936C326.367 34.4948 326.241 34.4444 326.146 34.3533L324 32.2068L321.853 34.3533C321.759 34.4444 321.633 34.4948 321.502 34.4936C321.371 34.4925 321.245 34.4399 321.152 34.3472C321.06 34.2545 321.007 34.1291 321.006 33.998C321.005 33.8669 321.055 33.7406 321.146 33.6463L323.293 31.4998L321.146 29.3533C321.053 29.2595 321 29.1324 321 28.9998C321 28.8672 321.053 28.7401 321.146 28.6463Z"/>
|
|
13
|
+
</mask>
|
|
14
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M321.146 28.6463C321.24 28.5526 321.367 28.4999 321.5 28.4999C321.632 28.4999 321.76 28.5526 321.853 28.6463L324 30.7928L326.146 28.6463C326.193 28.5985 326.248 28.5605 326.309 28.5342C326.37 28.508 326.435 28.4942 326.502 28.4937C326.568 28.4931 326.634 28.5057 326.695 28.5309C326.757 28.556 326.813 28.5932 326.86 28.6401C326.907 28.687 326.944 28.7429 326.969 28.8043C326.994 28.8658 327.007 28.9316 327.006 28.998C327.005 29.0644 326.992 29.13 326.965 29.191C326.939 29.252 326.901 29.3072 326.853 29.3533L324.707 31.4998L326.853 33.6463C326.944 33.7406 326.995 33.8669 326.994 33.998C326.993 34.1291 326.94 34.2545 326.847 34.3472C326.755 34.4399 326.629 34.4925 326.498 34.4936C326.367 34.4948 326.241 34.4444 326.146 34.3533L324 32.2068L321.853 34.3533C321.759 34.4444 321.633 34.4948 321.502 34.4936C321.371 34.4925 321.245 34.4399 321.152 34.3472C321.06 34.2545 321.007 34.1291 321.006 33.998C321.005 33.8669 321.055 33.7406 321.146 33.6463L323.293 31.4998L321.146 29.3533C321.053 29.2595 321 29.1324 321 28.9998C321 28.8672 321.053 28.7401 321.146 28.6463Z" fill="#6B7280"/>
|
|
15
|
+
<path d="M321.853 28.6463L322.56 27.9392L322.56 27.9391L321.853 28.6463ZM324 30.7928L323.293 31.4999L324 32.207L324.707 31.4999L324 30.7928ZM326.146 28.6463L326.853 29.3534L326.86 29.3473L326.866 29.341L326.146 28.6463ZM326.853 29.3533L326.159 28.634L326.152 28.64L326.146 28.6462L326.853 29.3533ZM324.707 31.4998L324 30.7927L323.293 31.4998L324 32.2069L324.707 31.4998ZM326.853 33.6463L327.573 32.9516L327.567 32.9453L327.56 32.9392L326.853 33.6463ZM326.146 34.3533L325.439 35.0604L325.445 35.0665L325.452 35.0726L326.146 34.3533ZM324 32.2068L324.707 31.4997L324 30.7926L323.293 31.4997L324 32.2068ZM321.853 34.3533L322.548 35.0726L322.554 35.0665L322.56 35.0604L321.853 34.3533ZM321.146 33.6463L320.439 32.9392L320.433 32.9453L320.427 32.9516L321.146 33.6463ZM323.293 31.4998L324 32.2069L324.707 31.4998L324 30.7927L323.293 31.4998ZM321.146 29.3533L320.439 30.0603L320.439 30.0604L321.146 29.3533ZM321.146 28.6463L320.439 27.9391L320.439 27.9393L321.146 28.6463ZM321.853 29.3535C321.76 29.4472 321.632 29.4999 321.5 29.4999V27.4999C321.102 27.4999 320.721 27.6579 320.439 27.9391L321.853 29.3535ZM321.5 29.4999C321.367 29.4999 321.24 29.4472 321.146 29.3535L322.56 27.9391C322.279 27.6579 321.898 27.4999 321.5 27.4999V29.4999ZM321.146 29.3534L323.293 31.4999L324.707 30.0857L322.56 27.9392L321.146 29.3534ZM324.707 31.4999L326.853 29.3534L325.439 27.9392L323.293 30.0857L324.707 31.4999ZM326.866 29.341C326.82 29.3888 326.764 29.4269 326.703 29.4531L325.914 27.6154C325.731 27.694 325.565 27.8083 325.427 27.9516L326.866 29.341ZM326.703 29.4531C326.642 29.4793 326.577 29.4931 326.51 29.4936L326.493 27.4937C326.294 27.4954 326.097 27.5368 325.914 27.6154L326.703 29.4531ZM326.51 29.4936C326.444 29.4942 326.378 29.4816 326.317 29.4564L327.074 27.6054C326.89 27.5299 326.692 27.492 326.493 27.4937L326.51 29.4936ZM326.317 29.4564C326.255 29.4313 326.199 29.3942 326.152 29.3472L327.567 27.933C327.426 27.7922 327.258 27.6808 327.074 27.6054L326.317 29.4564ZM326.152 29.3472C326.106 29.3003 326.068 29.2444 326.043 29.183L327.894 28.4257C327.819 28.2413 327.708 28.0738 327.567 27.933L326.152 29.3472ZM326.043 29.183C326.018 29.1215 326.005 29.0557 326.006 28.9893L328.006 29.0067C328.008 28.8075 327.97 28.61 327.894 28.4257L326.043 29.183ZM326.006 28.9893C326.007 28.9229 326.02 28.8573 326.047 28.7963L327.884 29.5857C327.963 29.4027 328.004 29.2059 328.006 29.0067L326.006 28.9893ZM326.047 28.7963C326.073 28.7353 326.111 28.6801 326.159 28.634L327.548 30.0726C327.691 29.9342 327.806 29.7687 327.884 29.5857L326.047 28.7963ZM326.146 28.6462L324 30.7927L325.414 32.2069L327.56 30.0604L326.146 28.6462ZM324 32.2069L326.146 34.3534L327.56 32.9392L325.414 30.7927L324 32.2069ZM326.134 34.341C326.043 34.2467 325.993 34.1204 325.994 33.9893L327.994 34.0067C327.997 33.6134 327.846 33.2345 327.573 32.9516L326.134 34.341ZM325.994 33.9893C325.995 33.8582 326.047 33.7328 326.14 33.6401L327.554 35.0543C327.833 34.7762 327.99 34.4 327.994 34.0067L325.994 33.9893ZM326.14 33.6401C326.233 33.5474 326.358 33.4948 326.489 33.4937L326.507 35.4936C326.9 35.4902 327.276 35.3324 327.554 35.0543L326.14 33.6401ZM326.489 33.4937C326.621 33.4925 326.747 33.5429 326.841 33.634L325.452 35.0726C325.735 35.3458 326.113 35.497 326.507 35.4936L326.489 33.4937ZM326.853 33.6462L324.707 31.4997L323.293 32.9139L325.439 35.0604L326.853 33.6462ZM323.293 31.4997L321.146 33.6462L322.56 35.0604L324.707 32.9139L323.293 31.4997ZM321.159 33.634C321.253 33.5429 321.379 33.4925 321.51 33.4937L321.493 35.4936C321.886 35.497 322.265 35.3458 322.548 35.0726L321.159 33.634ZM321.51 33.4937C321.641 33.4948 321.767 33.5474 321.86 33.6401L320.445 35.0543C320.723 35.3324 321.1 35.4902 321.493 35.4936L321.51 33.4937ZM321.86 33.6401C321.952 33.7328 322.005 33.8582 322.006 33.9893L320.006 34.0067C320.01 34.4 320.167 34.7762 320.445 35.0543L321.86 33.6401ZM322.006 33.9893C322.007 34.1204 321.957 34.2467 321.866 34.341L320.427 32.9516C320.154 33.2345 320.003 33.6134 320.006 34.0067L322.006 33.9893ZM321.854 34.3534L324 32.2069L322.586 30.7927L320.439 32.9392L321.854 34.3534ZM324 30.7927L321.854 28.6462L320.439 30.0604L322.586 32.2069L324 30.7927ZM321.854 28.6463C321.947 28.7401 322 28.8672 322 28.9998H320C320 29.3975 320.158 29.779 320.439 30.0603L321.854 28.6463ZM322 28.9998C322 29.1324 321.947 29.2595 321.854 29.3533L320.439 27.9393C320.158 28.2206 320 28.602 320 28.9998H322Z" fill="#6B7280" mask="url(#path-9-inside-1_170_151281)"/>
|
|
16
|
+
<rect x="13.6" y="14.6" width="323.8" height="33.8" rx="4.4" stroke="#4B5563" stroke-width="0.8"/>
|
|
17
|
+
</g>
|
|
18
|
+
<defs>
|
|
19
|
+
<filter id="filter0_dd_170_151281" x="7.19922" y="12.2002" width="336.602" height="46.5996" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
20
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
21
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
22
|
+
<feOffset dy="4"/>
|
|
23
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
24
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
|
25
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_170_151281"/>
|
|
26
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
27
|
+
<feOffset dy="2"/>
|
|
28
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
29
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
|
30
|
+
<feBlend mode="normal" in2="effect1_dropShadow_170_151281" result="effect2_dropShadow_170_151281"/>
|
|
31
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_170_151281" result="shape"/>
|
|
32
|
+
</filter>
|
|
33
|
+
</defs>
|
|
34
|
+
</svg>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g filter="url(#filter0_dd_170_151044)">
|
|
3
|
+
<rect x="14" y="15" width="323" height="33" rx="4" fill="white"/>
|
|
4
|
+
<rect x="22" y="23" width="63" height="6" rx="3" fill="#9CA3AF"/>
|
|
5
|
+
<rect x="22" y="35" width="162" height="5" rx="2.5" fill="#D1D5DB"/>
|
|
6
|
+
<path d="M217.5 26.5C217.5 25.6716 218.172 25 219 25H258C258.828 25 259.5 25.6716 259.5 26.5V36.5C259.5 37.3284 258.828 38 258 38H219C218.172 38 217.5 37.3284 217.5 36.5V26.5Z" fill="#EB4F27"/>
|
|
7
|
+
<rect x="225" y="29.5" width="27" height="4" rx="1" fill="white"/>
|
|
8
|
+
<path d="M217.5 26.5C217.5 25.6716 218.172 25 219 25H258C258.828 25 259.5 25.6716 259.5 26.5V36.5C259.5 37.3284 258.828 38 258 38H219C218.172 38 217.5 37.3284 217.5 36.5V26.5Z" stroke="#EB4F27"/>
|
|
9
|
+
<rect x="272" y="29.5" width="27" height="4" rx="1" fill="#D1D5DB"/>
|
|
10
|
+
<path d="M264.3 26.5C264.3 25.5611 265.061 24.8 266 24.8H305C305.939 24.8 306.7 25.5611 306.7 26.5V36.5C306.7 37.4389 305.939 38.2 305 38.2H266C265.061 38.2 264.3 37.4389 264.3 36.5V26.5Z" stroke="#D1D5DB" stroke-width="0.6"/>
|
|
11
|
+
<mask id="path-8-inside-1_170_151044" fill="white">
|
|
12
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M321.146 28.6463C321.24 28.5526 321.367 28.4999 321.5 28.4999C321.632 28.4999 321.76 28.5526 321.853 28.6463L324 30.7928L326.146 28.6463C326.193 28.5985 326.248 28.5605 326.309 28.5342C326.37 28.508 326.435 28.4942 326.502 28.4937C326.568 28.4931 326.634 28.5057 326.695 28.5309C326.757 28.556 326.813 28.5932 326.86 28.6401C326.907 28.687 326.944 28.7429 326.969 28.8043C326.994 28.8658 327.007 28.9316 327.006 28.998C327.005 29.0644 326.992 29.13 326.965 29.191C326.939 29.252 326.901 29.3072 326.853 29.3533L324.707 31.4998L326.853 33.6463C326.944 33.7406 326.995 33.8669 326.994 33.998C326.993 34.1291 326.94 34.2545 326.847 34.3472C326.755 34.4399 326.629 34.4925 326.498 34.4936C326.367 34.4948 326.241 34.4444 326.146 34.3533L324 32.2068L321.853 34.3533C321.759 34.4444 321.633 34.4948 321.502 34.4936C321.371 34.4925 321.245 34.4399 321.152 34.3472C321.06 34.2545 321.007 34.1291 321.006 33.998C321.005 33.8669 321.055 33.7406 321.146 33.6463L323.293 31.4998L321.146 29.3533C321.053 29.2595 321 29.1324 321 28.9998C321 28.8672 321.053 28.7401 321.146 28.6463Z"/>
|
|
13
|
+
</mask>
|
|
14
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M321.146 28.6463C321.24 28.5526 321.367 28.4999 321.5 28.4999C321.632 28.4999 321.76 28.5526 321.853 28.6463L324 30.7928L326.146 28.6463C326.193 28.5985 326.248 28.5605 326.309 28.5342C326.37 28.508 326.435 28.4942 326.502 28.4937C326.568 28.4931 326.634 28.5057 326.695 28.5309C326.757 28.556 326.813 28.5932 326.86 28.6401C326.907 28.687 326.944 28.7429 326.969 28.8043C326.994 28.8658 327.007 28.9316 327.006 28.998C327.005 29.0644 326.992 29.13 326.965 29.191C326.939 29.252 326.901 29.3072 326.853 29.3533L324.707 31.4998L326.853 33.6463C326.944 33.7406 326.995 33.8669 326.994 33.998C326.993 34.1291 326.94 34.2545 326.847 34.3472C326.755 34.4399 326.629 34.4925 326.498 34.4936C326.367 34.4948 326.241 34.4444 326.146 34.3533L324 32.2068L321.853 34.3533C321.759 34.4444 321.633 34.4948 321.502 34.4936C321.371 34.4925 321.245 34.4399 321.152 34.3472C321.06 34.2545 321.007 34.1291 321.006 33.998C321.005 33.8669 321.055 33.7406 321.146 33.6463L323.293 31.4998L321.146 29.3533C321.053 29.2595 321 29.1324 321 28.9998C321 28.8672 321.053 28.7401 321.146 28.6463Z" fill="#D1D5DB"/>
|
|
15
|
+
<path d="M321.853 28.6463L322.56 27.9392L322.56 27.9391L321.853 28.6463ZM324 30.7928L323.293 31.4999L324 32.207L324.707 31.4999L324 30.7928ZM326.146 28.6463L326.853 29.3534L326.86 29.3473L326.866 29.341L326.146 28.6463ZM326.853 29.3533L326.159 28.634L326.152 28.64L326.146 28.6462L326.853 29.3533ZM324.707 31.4998L324 30.7927L323.293 31.4998L324 32.2069L324.707 31.4998ZM326.853 33.6463L327.573 32.9516L327.567 32.9453L327.56 32.9392L326.853 33.6463ZM326.146 34.3533L325.439 35.0604L325.445 35.0665L325.452 35.0726L326.146 34.3533ZM324 32.2068L324.707 31.4997L324 30.7926L323.293 31.4997L324 32.2068ZM321.853 34.3533L322.548 35.0726L322.554 35.0665L322.56 35.0604L321.853 34.3533ZM321.146 33.6463L320.439 32.9392L320.433 32.9453L320.427 32.9516L321.146 33.6463ZM323.293 31.4998L324 32.2069L324.707 31.4998L324 30.7927L323.293 31.4998ZM321.146 29.3533L320.439 30.0603L320.439 30.0604L321.146 29.3533ZM321.146 28.6463L320.439 27.9391L320.439 27.9393L321.146 28.6463ZM321.853 29.3535C321.76 29.4472 321.632 29.4999 321.5 29.4999V27.4999C321.102 27.4999 320.721 27.6579 320.439 27.9391L321.853 29.3535ZM321.5 29.4999C321.367 29.4999 321.24 29.4472 321.146 29.3535L322.56 27.9391C322.279 27.6579 321.898 27.4999 321.5 27.4999V29.4999ZM321.146 29.3534L323.293 31.4999L324.707 30.0857L322.56 27.9392L321.146 29.3534ZM324.707 31.4999L326.853 29.3534L325.439 27.9392L323.293 30.0857L324.707 31.4999ZM326.866 29.341C326.82 29.3888 326.764 29.4269 326.703 29.4531L325.914 27.6154C325.731 27.694 325.565 27.8083 325.427 27.9516L326.866 29.341ZM326.703 29.4531C326.642 29.4793 326.577 29.4931 326.51 29.4936L326.493 27.4937C326.294 27.4954 326.097 27.5368 325.914 27.6154L326.703 29.4531ZM326.51 29.4936C326.444 29.4942 326.378 29.4816 326.317 29.4564L327.074 27.6054C326.89 27.5299 326.692 27.492 326.493 27.4937L326.51 29.4936ZM326.317 29.4564C326.255 29.4313 326.199 29.3942 326.152 29.3472L327.567 27.933C327.426 27.7922 327.258 27.6808 327.074 27.6054L326.317 29.4564ZM326.152 29.3472C326.106 29.3003 326.068 29.2444 326.043 29.183L327.894 28.4257C327.819 28.2413 327.708 28.0738 327.567 27.933L326.152 29.3472ZM326.043 29.183C326.018 29.1215 326.005 29.0557 326.006 28.9893L328.006 29.0067C328.008 28.8075 327.97 28.61 327.894 28.4257L326.043 29.183ZM326.006 28.9893C326.007 28.9229 326.02 28.8573 326.047 28.7963L327.884 29.5857C327.963 29.4027 328.004 29.2059 328.006 29.0067L326.006 28.9893ZM326.047 28.7963C326.073 28.7353 326.111 28.6801 326.159 28.634L327.548 30.0726C327.691 29.9342 327.806 29.7687 327.884 29.5857L326.047 28.7963ZM326.146 28.6462L324 30.7927L325.414 32.2069L327.56 30.0604L326.146 28.6462ZM324 32.2069L326.146 34.3534L327.56 32.9392L325.414 30.7927L324 32.2069ZM326.134 34.341C326.043 34.2467 325.993 34.1204 325.994 33.9893L327.994 34.0067C327.997 33.6134 327.846 33.2345 327.573 32.9516L326.134 34.341ZM325.994 33.9893C325.995 33.8582 326.047 33.7328 326.14 33.6401L327.554 35.0543C327.833 34.7762 327.99 34.4 327.994 34.0067L325.994 33.9893ZM326.14 33.6401C326.233 33.5474 326.358 33.4948 326.489 33.4937L326.507 35.4936C326.9 35.4902 327.276 35.3324 327.554 35.0543L326.14 33.6401ZM326.489 33.4937C326.621 33.4925 326.747 33.5429 326.841 33.634L325.452 35.0726C325.735 35.3458 326.113 35.497 326.507 35.4936L326.489 33.4937ZM326.853 33.6462L324.707 31.4997L323.293 32.9139L325.439 35.0604L326.853 33.6462ZM323.293 31.4997L321.146 33.6462L322.56 35.0604L324.707 32.9139L323.293 31.4997ZM321.159 33.634C321.253 33.5429 321.379 33.4925 321.51 33.4937L321.493 35.4936C321.886 35.497 322.265 35.3458 322.548 35.0726L321.159 33.634ZM321.51 33.4937C321.641 33.4948 321.767 33.5474 321.86 33.6401L320.445 35.0543C320.723 35.3324 321.1 35.4902 321.493 35.4936L321.51 33.4937ZM321.86 33.6401C321.952 33.7328 322.005 33.8582 322.006 33.9893L320.006 34.0067C320.01 34.4 320.167 34.7762 320.445 35.0543L321.86 33.6401ZM322.006 33.9893C322.007 34.1204 321.957 34.2467 321.866 34.341L320.427 32.9516C320.154 33.2345 320.003 33.6134 320.006 34.0067L322.006 33.9893ZM321.854 34.3534L324 32.2069L322.586 30.7927L320.439 32.9392L321.854 34.3534ZM324 30.7927L321.854 28.6462L320.439 30.0604L322.586 32.2069L324 30.7927ZM321.854 28.6463C321.947 28.7401 322 28.8672 322 28.9998H320C320 29.3975 320.158 29.779 320.439 30.0603L321.854 28.6463ZM322 28.9998C322 29.1324 321.947 29.2595 321.854 29.3533L320.439 27.9393C320.158 28.2206 320 28.602 320 28.9998H322Z" fill="#D1D5DB" mask="url(#path-8-inside-1_170_151044)"/>
|
|
16
|
+
</g>
|
|
17
|
+
<defs>
|
|
18
|
+
<filter id="filter0_dd_170_151044" x="8" y="13" width="335" height="45" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
19
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
20
|
+
<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"/>
|
|
21
|
+
<feOffset dy="4"/>
|
|
22
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
23
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
|
24
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_170_151044"/>
|
|
25
|
+
<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"/>
|
|
26
|
+
<feOffset dy="2"/>
|
|
27
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
28
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
|
|
29
|
+
<feBlend mode="normal" in2="effect1_dropShadow_170_151044" result="effect2_dropShadow_170_151044"/>
|
|
30
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_170_151044" result="shape"/>
|
|
31
|
+
</filter>
|
|
32
|
+
</defs>
|
|
33
|
+
</svg>
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="55.5" y="60.5" width="239" height="43" rx="21.5" fill="#374151"/>
|
|
3
|
+
<path d="M83.7064 74.2928C83.5189 74.1053 83.2646 74 82.9994 74C82.7343 74 82.48 74.1053 82.2924 74.2928L75.2924 81.2928C75.1103 81.4814 75.0095 81.734 75.0118 81.9962C75.014 82.2584 75.1192 82.5092 75.3046 82.6946C75.49 82.88 75.7408 82.9852 76.003 82.9875C76.2652 82.9897 76.5178 82.8889 76.7064 82.7068L76.9994 82.4138V88.9998C76.9994 89.265 77.1048 89.5194 77.2923 89.7069C77.4799 89.8944 77.7342 89.9998 77.9994 89.9998H79.9994C80.2646 89.9998 80.519 89.8944 80.7065 89.7069C80.8941 89.5194 80.9994 89.265 80.9994 88.9998V86.9998C80.9994 86.7346 81.1048 86.4802 81.2923 86.2927C81.4799 86.1051 81.7342 85.9998 81.9994 85.9998H83.9994C84.2646 85.9998 84.519 86.1051 84.7065 86.2927C84.8941 86.4802 84.9994 86.7346 84.9994 86.9998V88.9998C84.9994 89.265 85.1048 89.5194 85.2923 89.7069C85.4799 89.8944 85.7342 89.9998 85.9994 89.9998H87.9994C88.2646 89.9998 88.519 89.8944 88.7065 89.7069C88.8941 89.5194 88.9994 89.265 88.9994 88.9998V82.4138L89.2924 82.7068C89.481 82.8889 89.7336 82.9897 89.9958 82.9875C90.258 82.9852 90.5088 82.88 90.6942 82.6946C90.8797 82.5092 90.9848 82.2584 90.9871 81.9962C90.9894 81.734 90.8886 81.4814 90.7064 81.2928L83.7064 74.2928Z" fill="#9CA3AF"/>
|
|
4
|
+
<path d="M120.334 85.3335V86.1668C120.334 86.8299 120.597 87.4658 121.066 87.9346C121.535 88.4034 122.171 88.6668 122.834 88.6668H131.167C131.83 88.6668 132.466 88.4034 132.935 87.9346C133.404 87.4658 133.667 86.8299 133.667 86.1668V85.3335M130.334 82.0002L127.001 85.3335M127.001 85.3335L123.667 82.0002M127.001 85.3335V75.3335" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<rect x="161" y="68" width="28" height="28" rx="14" fill="#EB4F27"/>
|
|
6
|
+
<path d="M175 82H170H175Z" fill="white"/>
|
|
7
|
+
<path d="M175 77V82M175 82V87M175 82H180M175 82H170" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path d="M218 76C218 75.7348 217.895 75.4804 217.707 75.2929C217.519 75.1054 217.265 75 217 75C216.735 75 216.48 75.1054 216.293 75.2929C216.105 75.4804 216 75.7348 216 76V83.268C215.696 83.4435 215.443 83.696 215.268 84C215.092 84.3041 215 84.6489 215 85C215 85.3511 215.092 85.6959 215.268 86C215.443 86.304 215.696 86.5565 216 86.732V88C216 88.2652 216.105 88.5196 216.293 88.7071C216.48 88.8946 216.735 89 217 89C217.265 89 217.519 88.8946 217.707 88.7071C217.895 88.5196 218 88.2652 218 88V86.732C218.304 86.5565 218.556 86.304 218.732 86C218.907 85.6959 219 85.3511 219 85C219 84.6489 218.907 84.3041 218.732 84C218.556 83.696 218.304 83.4435 218 83.268V76ZM224 76C224 75.7348 223.895 75.4804 223.707 75.2929C223.519 75.1054 223.265 75 223 75C222.735 75 222.48 75.1054 222.293 75.2929C222.105 75.4804 222 75.7348 222 76V77.268C221.696 77.4435 221.443 77.696 221.268 78C221.092 78.3041 221 78.6489 221 79C221 79.3511 221.092 79.6959 221.268 80C221.443 80.304 221.696 80.5565 222 80.732V88C222 88.2652 222.105 88.5196 222.293 88.7071C222.48 88.8946 222.735 89 223 89C223.265 89 223.519 88.8946 223.707 88.7071C223.895 88.5196 224 88.2652 224 88V80.732C224.304 80.5565 224.556 80.304 224.732 80C224.907 79.6959 225 79.3511 225 79C225 78.6489 224.907 78.3041 224.732 78C224.556 77.696 224.304 77.4435 224 77.268V76ZM229 75C229.265 75 229.519 75.1054 229.707 75.2929C229.895 75.4804 230 75.7348 230 76V83.268C230.304 83.4435 230.556 83.696 230.732 84C230.907 84.3041 231 84.6489 231 85C231 85.3511 230.907 85.6959 230.732 86C230.556 86.304 230.304 86.5565 230 86.732V88C230 88.2652 229.895 88.5196 229.707 88.7071C229.519 88.8946 229.265 89 229 89C228.735 89 228.48 88.8946 228.293 88.7071C228.105 88.5196 228 88.2652 228 88V86.732C227.696 86.5565 227.443 86.304 227.268 86C227.092 85.6959 227 85.3511 227 85C227 84.6489 227.092 84.3041 227.268 84C227.443 83.696 227.696 83.4435 228 83.268V76C228 75.7348 228.105 75.4804 228.293 75.2929C228.48 75.1054 228.735 75 229 75Z" fill="#9CA3AF"/>
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M275 82C275 84.1217 274.157 86.1566 272.657 87.6569C271.157 89.1571 269.122 90 267 90C264.878 90 262.843 89.1571 261.343 87.6569C259.843 86.1566 259 84.1217 259 82C259 79.8783 259.843 77.8434 261.343 76.3431C262.843 74.8429 264.878 74 267 74C269.122 74 271.157 74.8429 272.657 76.3431C274.157 77.8434 275 79.8783 275 82ZM269 79C269 79.5304 268.789 80.0391 268.414 80.4142C268.039 80.7893 267.53 81 267 81C266.47 81 265.961 80.7893 265.586 80.4142C265.211 80.0391 265 79.5304 265 79C265 78.4696 265.211 77.9609 265.586 77.5858C265.961 77.2107 266.47 77 267 77C267.53 77 268.039 77.2107 268.414 77.5858C268.789 77.9609 269 78.4696 269 79ZM267 83C266.043 82.9998 265.105 83.2745 264.299 83.7914C263.494 84.3083 262.853 85.0457 262.454 85.916C263.017 86.5706 263.714 87.0958 264.499 87.4555C265.284 87.8152 266.137 88.0009 267 88C267.863 88.0009 268.716 87.8152 269.501 87.4555C270.286 87.0958 270.983 86.5706 271.546 85.916C271.147 85.0457 270.506 84.3083 269.701 83.7914C268.895 83.2745 267.957 82.9998 267 83Z" fill="#9CA3AF"/>
|
|
10
|
+
<rect x="55.5" y="60.5" width="239" height="43" rx="21.5" stroke="#4B5563"/>
|
|
11
|
+
<g clip-path="url(#clip0_170_151296)">
|
|
12
|
+
<rect width="246" height="44" transform="translate(52 126)" fill="#374151"/>
|
|
13
|
+
<mask id="path-9-inside-1_170_151296" fill="white">
|
|
14
|
+
<path d="M52 126H110V170H52V126Z"/>
|
|
15
|
+
</mask>
|
|
16
|
+
<path d="M52 126H110V170H52V126Z" fill="#374151"/>
|
|
17
|
+
<path d="M81.7064 134.293C81.5189 134.105 81.2646 134 80.9994 134C80.7343 134 80.48 134.105 80.2924 134.293L73.2924 141.293C73.1103 141.481 73.0095 141.734 73.0118 141.996C73.014 142.258 73.1192 142.509 73.3046 142.695C73.49 142.88 73.7408 142.985 74.003 142.987C74.2652 142.99 74.5178 142.889 74.7064 142.707L74.9994 142.414V149C74.9994 149.265 75.1048 149.519 75.2923 149.707C75.4799 149.894 75.7342 150 75.9994 150H77.9994C78.2646 150 78.519 149.894 78.7065 149.707C78.8941 149.519 78.9994 149.265 78.9994 149V147C78.9994 146.735 79.1048 146.48 79.2923 146.293C79.4799 146.105 79.7342 146 79.9994 146H81.9994C82.2646 146 82.519 146.105 82.7065 146.293C82.8941 146.48 82.9994 146.735 82.9994 147V149C82.9994 149.265 83.1048 149.519 83.2923 149.707C83.4799 149.894 83.7342 150 83.9994 150H85.9994C86.2646 150 86.519 149.894 86.7065 149.707C86.8941 149.519 86.9994 149.265 86.9994 149V142.414L87.2924 142.707C87.481 142.889 87.7336 142.99 87.9958 142.987C88.258 142.985 88.5088 142.88 88.6942 142.695C88.8797 142.509 88.9848 142.258 88.9871 141.996C88.9894 141.734 88.8886 141.481 88.7064 141.293L81.7064 134.293Z" fill="#9CA3AF"/>
|
|
18
|
+
<rect x="64" y="158" width="34" height="6" rx="3" fill="#9CA3AF"/>
|
|
19
|
+
<path d="M109 126V170H111V126H109Z" fill="#4B5563" mask="url(#path-9-inside-1_170_151296)"/>
|
|
20
|
+
<mask id="path-13-inside-2_170_151296" fill="white">
|
|
21
|
+
<path d="M110 126H172V170H110V126Z"/>
|
|
22
|
+
</mask>
|
|
23
|
+
<path d="M110 126H172V170H110V126Z" fill="#374151"/>
|
|
24
|
+
<path d="M133.939 136.939C134.221 136.658 134.602 136.5 135 136.5H147C147.398 136.5 147.779 136.658 148.061 136.939C148.342 137.221 148.5 137.602 148.5 138V138.5H133.5V138C133.5 137.602 133.658 137.221 133.939 136.939Z" fill="#9CA3AF" stroke="#9CA3AF"/>
|
|
25
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M149 141H133V146C133 146.53 133.211 147.039 133.586 147.414C133.961 147.789 134.47 148 135 148H147C147.53 148 148.039 147.789 148.414 147.414C148.789 147.039 149 146.53 149 146V141ZM135 145C135 144.735 135.105 144.48 135.293 144.293C135.48 144.105 135.735 144 136 144H137C137.265 144 137.52 144.105 137.707 144.293C137.895 144.48 138 144.735 138 145C138 145.265 137.895 145.52 137.707 145.707C137.52 145.895 137.265 146 137 146H136C135.735 146 135.48 145.895 135.293 145.707C135.105 145.52 135 145.265 135 145ZM140 144C139.735 144 139.48 144.105 139.293 144.293C139.105 144.48 139 144.735 139 145C139 145.265 139.105 145.52 139.293 145.707C139.48 145.895 139.735 146 140 146H141C141.265 146 141.52 145.895 141.707 145.707C141.895 145.52 142 145.265 142 145C142 144.735 141.895 144.48 141.707 144.293C141.52 144.105 141.265 144 141 144H140Z" fill="#9CA3AF"/>
|
|
26
|
+
<rect x="122" y="158" width="38" height="6" rx="3" fill="#9CA3AF"/>
|
|
27
|
+
<path d="M171 126V170H173V126H171Z" fill="#4B5563" mask="url(#path-13-inside-2_170_151296)"/>
|
|
28
|
+
<mask id="path-18-inside-3_170_151296" fill="white">
|
|
29
|
+
<path d="M172 126H238V170H172V126Z"/>
|
|
30
|
+
</mask>
|
|
31
|
+
<path d="M172 126H238V170H172V126Z" fill="#374151"/>
|
|
32
|
+
<path d="M200 136C200 135.735 199.895 135.48 199.707 135.293C199.519 135.105 199.265 135 199 135C198.735 135 198.48 135.105 198.293 135.293C198.105 135.48 198 135.735 198 136V143.268C197.696 143.444 197.443 143.696 197.268 144C197.092 144.304 197 144.649 197 145C197 145.351 197.092 145.696 197.268 146C197.443 146.304 197.696 146.556 198 146.732V148C198 148.265 198.105 148.52 198.293 148.707C198.48 148.895 198.735 149 199 149C199.265 149 199.519 148.895 199.707 148.707C199.895 148.52 200 148.265 200 148V146.732C200.304 146.556 200.556 146.304 200.732 146C200.907 145.696 201 145.351 201 145C201 144.649 200.907 144.304 200.732 144C200.556 143.696 200.304 143.444 200 143.268V136ZM206 136C206 135.735 205.895 135.48 205.707 135.293C205.519 135.105 205.265 135 205 135C204.735 135 204.48 135.105 204.293 135.293C204.105 135.48 204 135.735 204 136V137.268C203.696 137.444 203.443 137.696 203.268 138C203.092 138.304 203 138.649 203 139C203 139.351 203.092 139.696 203.268 140C203.443 140.304 203.696 140.556 204 140.732V148C204 148.265 204.105 148.52 204.293 148.707C204.48 148.895 204.735 149 205 149C205.265 149 205.519 148.895 205.707 148.707C205.895 148.52 206 148.265 206 148V140.732C206.304 140.556 206.556 140.304 206.732 140C206.907 139.696 207 139.351 207 139C207 138.649 206.907 138.304 206.732 138C206.556 137.696 206.304 137.444 206 137.268V136ZM211 135C211.265 135 211.519 135.105 211.707 135.293C211.895 135.48 212 135.735 212 136V143.268C212.304 143.444 212.556 143.696 212.732 144C212.907 144.304 213 144.649 213 145C213 145.351 212.907 145.696 212.732 146C212.556 146.304 212.304 146.556 212 146.732V148C212 148.265 211.895 148.52 211.707 148.707C211.519 148.895 211.265 149 211 149C210.735 149 210.48 148.895 210.293 148.707C210.105 148.52 210 148.265 210 148V146.732C209.696 146.556 209.443 146.304 209.268 146C209.092 145.696 209 145.351 209 145C209 144.649 209.092 144.304 209.268 144C209.443 143.696 209.696 143.444 210 143.268V136C210 135.735 210.105 135.48 210.293 135.293C210.48 135.105 210.735 135 211 135Z" fill="#9CA3AF"/>
|
|
33
|
+
<rect x="184" y="158" width="42" height="6" rx="3" fill="#9CA3AF"/>
|
|
34
|
+
<path d="M237 126V170H239V126H237Z" fill="#4B5563" mask="url(#path-18-inside-3_170_151296)"/>
|
|
35
|
+
<rect width="60" height="44" transform="translate(238 126)" fill="#374151"/>
|
|
36
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M276 142C276 144.122 275.157 146.157 273.657 147.657C272.157 149.157 270.122 150 268 150C265.878 150 263.843 149.157 262.343 147.657C260.843 146.157 260 144.122 260 142C260 139.878 260.843 137.843 262.343 136.343C263.843 134.843 265.878 134 268 134C270.122 134 272.157 134.843 273.657 136.343C275.157 137.843 276 139.878 276 142ZM270 139C270 139.53 269.789 140.039 269.414 140.414C269.039 140.789 268.53 141 268 141C267.47 141 266.961 140.789 266.586 140.414C266.211 140.039 266 139.53 266 139C266 138.47 266.211 137.961 266.586 137.586C266.961 137.211 267.47 137 268 137C268.53 137 269.039 137.211 269.414 137.586C269.789 137.961 270 138.47 270 139ZM268 143C267.043 143 266.105 143.274 265.299 143.791C264.494 144.308 263.853 145.046 263.454 145.916C264.017 146.571 264.714 147.096 265.499 147.455C266.284 147.815 267.137 148.001 268 148C268.863 148.001 269.716 147.815 270.501 147.455C271.286 147.096 271.983 146.571 272.546 145.916C272.147 145.046 271.506 144.308 270.701 143.791C269.895 143.274 268.957 143 268 143Z" fill="#9CA3AF"/>
|
|
37
|
+
<rect x="250" y="158" width="36" height="6" rx="3" fill="#9CA3AF"/>
|
|
38
|
+
</g>
|
|
39
|
+
<defs>
|
|
40
|
+
<clipPath id="clip0_170_151296">
|
|
41
|
+
<rect width="246" height="44" fill="white" transform="translate(52 126)"/>
|
|
42
|
+
</clipPath>
|
|
43
|
+
</defs>
|
|
44
|
+
</svg>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="55.5" y="60.5" width="239" height="43" rx="21.5" fill="white"/>
|
|
3
|
+
<path d="M83.7064 74.2928C83.5189 74.1053 83.2646 74 82.9994 74C82.7343 74 82.48 74.1053 82.2924 74.2928L75.2924 81.2928C75.1103 81.4814 75.0095 81.734 75.0118 81.9962C75.014 82.2584 75.1192 82.5092 75.3046 82.6946C75.49 82.88 75.7408 82.9852 76.003 82.9875C76.2652 82.9897 76.5178 82.8889 76.7064 82.7068L76.9994 82.4138V88.9998C76.9994 89.265 77.1048 89.5194 77.2923 89.7069C77.4799 89.8944 77.7342 89.9998 77.9994 89.9998H79.9994C80.2646 89.9998 80.519 89.8944 80.7065 89.7069C80.8941 89.5194 80.9994 89.265 80.9994 88.9998V86.9998C80.9994 86.7346 81.1048 86.4802 81.2923 86.2927C81.4799 86.1051 81.7342 85.9998 81.9994 85.9998H83.9994C84.2646 85.9998 84.519 86.1051 84.7065 86.2927C84.8941 86.4802 84.9994 86.7346 84.9994 86.9998V88.9998C84.9994 89.265 85.1048 89.5194 85.2923 89.7069C85.4799 89.8944 85.7342 89.9998 85.9994 89.9998H87.9994C88.2646 89.9998 88.519 89.8944 88.7065 89.7069C88.8941 89.5194 88.9994 89.265 88.9994 88.9998V82.4138L89.2924 82.7068C89.481 82.8889 89.7336 82.9897 89.9958 82.9875C90.258 82.9852 90.5088 82.88 90.6942 82.6946C90.8797 82.5092 90.9848 82.2584 90.9871 81.9962C90.9894 81.734 90.8886 81.4814 90.7064 81.2928L83.7064 74.2928Z" fill="#6B7280"/>
|
|
4
|
+
<path d="M120.334 85.3335V86.1668C120.334 86.8299 120.597 87.4658 121.066 87.9346C121.535 88.4034 122.171 88.6668 122.834 88.6668H131.167C131.83 88.6668 132.466 88.4034 132.935 87.9346C133.404 87.4658 133.667 86.8299 133.667 86.1668V85.3335M130.334 82.0002L127.001 85.3335M127.001 85.3335L123.667 82.0002M127.001 85.3335V75.3335" stroke="#6B7280" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<rect x="161" y="68" width="28" height="28" rx="14" fill="#EB4F27"/>
|
|
6
|
+
<path d="M175 82H170H175Z" fill="white"/>
|
|
7
|
+
<path d="M175 77V82M175 82V87M175 82H180M175 82H170" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path d="M218 76C218 75.7348 217.895 75.4804 217.707 75.2929C217.519 75.1054 217.265 75 217 75C216.735 75 216.48 75.1054 216.293 75.2929C216.105 75.4804 216 75.7348 216 76V83.268C215.696 83.4435 215.443 83.696 215.268 84C215.092 84.3041 215 84.6489 215 85C215 85.3511 215.092 85.6959 215.268 86C215.443 86.304 215.696 86.5565 216 86.732V88C216 88.2652 216.105 88.5196 216.293 88.7071C216.48 88.8946 216.735 89 217 89C217.265 89 217.519 88.8946 217.707 88.7071C217.895 88.5196 218 88.2652 218 88V86.732C218.304 86.5565 218.556 86.304 218.732 86C218.907 85.6959 219 85.3511 219 85C219 84.6489 218.907 84.3041 218.732 84C218.556 83.696 218.304 83.4435 218 83.268V76ZM224 76C224 75.7348 223.895 75.4804 223.707 75.2929C223.519 75.1054 223.265 75 223 75C222.735 75 222.48 75.1054 222.293 75.2929C222.105 75.4804 222 75.7348 222 76V77.268C221.696 77.4435 221.443 77.696 221.268 78C221.092 78.3041 221 78.6489 221 79C221 79.3511 221.092 79.6959 221.268 80C221.443 80.304 221.696 80.5565 222 80.732V88C222 88.2652 222.105 88.5196 222.293 88.7071C222.48 88.8946 222.735 89 223 89C223.265 89 223.519 88.8946 223.707 88.7071C223.895 88.5196 224 88.2652 224 88V80.732C224.304 80.5565 224.556 80.304 224.732 80C224.907 79.6959 225 79.3511 225 79C225 78.6489 224.907 78.3041 224.732 78C224.556 77.696 224.304 77.4435 224 77.268V76ZM229 75C229.265 75 229.519 75.1054 229.707 75.2929C229.895 75.4804 230 75.7348 230 76V83.268C230.304 83.4435 230.556 83.696 230.732 84C230.907 84.3041 231 84.6489 231 85C231 85.3511 230.907 85.6959 230.732 86C230.556 86.304 230.304 86.5565 230 86.732V88C230 88.2652 229.895 88.5196 229.707 88.7071C229.519 88.8946 229.265 89 229 89C228.735 89 228.48 88.8946 228.293 88.7071C228.105 88.5196 228 88.2652 228 88V86.732C227.696 86.5565 227.443 86.304 227.268 86C227.092 85.6959 227 85.3511 227 85C227 84.6489 227.092 84.3041 227.268 84C227.443 83.696 227.696 83.4435 228 83.268V76C228 75.7348 228.105 75.4804 228.293 75.2929C228.48 75.1054 228.735 75 229 75Z" fill="#6B7280"/>
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M275 82C275 84.1217 274.157 86.1566 272.657 87.6569C271.157 89.1571 269.122 90 267 90C264.878 90 262.843 89.1571 261.343 87.6569C259.843 86.1566 259 84.1217 259 82C259 79.8783 259.843 77.8434 261.343 76.3431C262.843 74.8429 264.878 74 267 74C269.122 74 271.157 74.8429 272.657 76.3431C274.157 77.8434 275 79.8783 275 82ZM269 79C269 79.5304 268.789 80.0391 268.414 80.4142C268.039 80.7893 267.53 81 267 81C266.47 81 265.961 80.7893 265.586 80.4142C265.211 80.0391 265 79.5304 265 79C265 78.4696 265.211 77.9609 265.586 77.5858C265.961 77.2107 266.47 77 267 77C267.53 77 268.039 77.2107 268.414 77.5858C268.789 77.9609 269 78.4696 269 79ZM267 83C266.043 82.9998 265.105 83.2745 264.299 83.7914C263.494 84.3083 262.853 85.0457 262.454 85.916C263.017 86.5706 263.714 87.0958 264.499 87.4555C265.284 87.8152 266.137 88.0009 267 88C267.863 88.0009 268.716 87.8152 269.501 87.4555C270.286 87.0958 270.983 86.5706 271.546 85.916C271.147 85.0457 270.506 84.3083 269.701 83.7914C268.895 83.2745 267.957 82.9998 267 83Z" fill="#6B7280"/>
|
|
10
|
+
<rect x="55.5" y="60.5" width="239" height="43" rx="21.5" stroke="#E5E7EB"/>
|
|
11
|
+
<g clip-path="url(#clip0_170_151013)">
|
|
12
|
+
<mask id="path-9-inside-1_170_151013" fill="white">
|
|
13
|
+
<path d="M52 126H110V170H52V126Z"/>
|
|
14
|
+
</mask>
|
|
15
|
+
<path d="M52 126H110V170H52V126Z" fill="white"/>
|
|
16
|
+
<path d="M81.7064 134.293C81.5189 134.105 81.2646 134 80.9994 134C80.7343 134 80.48 134.105 80.2924 134.293L73.2924 141.293C73.1103 141.481 73.0095 141.734 73.0118 141.996C73.014 142.258 73.1192 142.509 73.3046 142.695C73.49 142.88 73.7408 142.985 74.003 142.987C74.2652 142.99 74.5178 142.889 74.7064 142.707L74.9994 142.414V149C74.9994 149.265 75.1048 149.519 75.2923 149.707C75.4799 149.894 75.7342 150 75.9994 150H77.9994C78.2646 150 78.519 149.894 78.7065 149.707C78.8941 149.519 78.9994 149.265 78.9994 149V147C78.9994 146.735 79.1048 146.48 79.2923 146.293C79.4799 146.105 79.7342 146 79.9994 146H81.9994C82.2646 146 82.519 146.105 82.7065 146.293C82.8941 146.48 82.9994 146.735 82.9994 147V149C82.9994 149.265 83.1048 149.519 83.2923 149.707C83.4799 149.894 83.7342 150 83.9994 150H85.9994C86.2646 150 86.519 149.894 86.7065 149.707C86.8941 149.519 86.9994 149.265 86.9994 149V142.414L87.2924 142.707C87.481 142.889 87.7336 142.99 87.9958 142.987C88.258 142.985 88.5088 142.88 88.6942 142.695C88.8797 142.509 88.9848 142.258 88.9871 141.996C88.9894 141.734 88.8886 141.481 88.7064 141.293L81.7064 134.293Z" fill="#6B7280"/>
|
|
17
|
+
<rect x="64" y="158" width="34" height="6" rx="3" fill="#D1D5DB"/>
|
|
18
|
+
<path d="M109 126V170H111V126H109Z" fill="#E5E7EB" mask="url(#path-9-inside-1_170_151013)"/>
|
|
19
|
+
<mask id="path-13-inside-2_170_151013" fill="white">
|
|
20
|
+
<path d="M110 126H172V170H110V126Z"/>
|
|
21
|
+
</mask>
|
|
22
|
+
<path d="M110 126H172V170H110V126Z" fill="white"/>
|
|
23
|
+
<path d="M133.939 136.939C134.221 136.658 134.602 136.5 135 136.5H147C147.398 136.5 147.779 136.658 148.061 136.939C148.342 137.221 148.5 137.602 148.5 138V138.5H133.5V138C133.5 137.602 133.658 137.221 133.939 136.939Z" fill="#6B7280" stroke="#6B7280"/>
|
|
24
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M149 141H133V146C133 146.53 133.211 147.039 133.586 147.414C133.961 147.789 134.47 148 135 148H147C147.53 148 148.039 147.789 148.414 147.414C148.789 147.039 149 146.53 149 146V141ZM135 145C135 144.735 135.105 144.48 135.293 144.293C135.48 144.105 135.735 144 136 144H137C137.265 144 137.52 144.105 137.707 144.293C137.895 144.48 138 144.735 138 145C138 145.265 137.895 145.52 137.707 145.707C137.52 145.895 137.265 146 137 146H136C135.735 146 135.48 145.895 135.293 145.707C135.105 145.52 135 145.265 135 145ZM140 144C139.735 144 139.48 144.105 139.293 144.293C139.105 144.48 139 144.735 139 145C139 145.265 139.105 145.52 139.293 145.707C139.48 145.895 139.735 146 140 146H141C141.265 146 141.52 145.895 141.707 145.707C141.895 145.52 142 145.265 142 145C142 144.735 141.895 144.48 141.707 144.293C141.52 144.105 141.265 144 141 144H140Z" fill="#6B7280"/>
|
|
25
|
+
<rect x="122" y="158" width="38" height="6" rx="3" fill="#D1D5DB"/>
|
|
26
|
+
<path d="M171 126V170H173V126H171Z" fill="#E5E7EB" mask="url(#path-13-inside-2_170_151013)"/>
|
|
27
|
+
<mask id="path-18-inside-3_170_151013" fill="white">
|
|
28
|
+
<path d="M172 126H238V170H172V126Z"/>
|
|
29
|
+
</mask>
|
|
30
|
+
<path d="M172 126H238V170H172V126Z" fill="white"/>
|
|
31
|
+
<path d="M200 136C200 135.735 199.895 135.48 199.707 135.293C199.519 135.105 199.265 135 199 135C198.735 135 198.48 135.105 198.293 135.293C198.105 135.48 198 135.735 198 136V143.268C197.696 143.444 197.443 143.696 197.268 144C197.092 144.304 197 144.649 197 145C197 145.351 197.092 145.696 197.268 146C197.443 146.304 197.696 146.556 198 146.732V148C198 148.265 198.105 148.52 198.293 148.707C198.48 148.895 198.735 149 199 149C199.265 149 199.519 148.895 199.707 148.707C199.895 148.52 200 148.265 200 148V146.732C200.304 146.556 200.556 146.304 200.732 146C200.907 145.696 201 145.351 201 145C201 144.649 200.907 144.304 200.732 144C200.556 143.696 200.304 143.444 200 143.268V136ZM206 136C206 135.735 205.895 135.48 205.707 135.293C205.519 135.105 205.265 135 205 135C204.735 135 204.48 135.105 204.293 135.293C204.105 135.48 204 135.735 204 136V137.268C203.696 137.444 203.443 137.696 203.268 138C203.092 138.304 203 138.649 203 139C203 139.351 203.092 139.696 203.268 140C203.443 140.304 203.696 140.556 204 140.732V148C204 148.265 204.105 148.52 204.293 148.707C204.48 148.895 204.735 149 205 149C205.265 149 205.519 148.895 205.707 148.707C205.895 148.52 206 148.265 206 148V140.732C206.304 140.556 206.556 140.304 206.732 140C206.907 139.696 207 139.351 207 139C207 138.649 206.907 138.304 206.732 138C206.556 137.696 206.304 137.444 206 137.268V136ZM211 135C211.265 135 211.519 135.105 211.707 135.293C211.895 135.48 212 135.735 212 136V143.268C212.304 143.444 212.556 143.696 212.732 144C212.907 144.304 213 144.649 213 145C213 145.351 212.907 145.696 212.732 146C212.556 146.304 212.304 146.556 212 146.732V148C212 148.265 211.895 148.52 211.707 148.707C211.519 148.895 211.265 149 211 149C210.735 149 210.48 148.895 210.293 148.707C210.105 148.52 210 148.265 210 148V146.732C209.696 146.556 209.443 146.304 209.268 146C209.092 145.696 209 145.351 209 145C209 144.649 209.092 144.304 209.268 144C209.443 143.696 209.696 143.444 210 143.268V136C210 135.735 210.105 135.48 210.293 135.293C210.48 135.105 210.735 135 211 135Z" fill="#6B7280"/>
|
|
32
|
+
<rect x="184" y="158" width="42" height="6" rx="3" fill="#D1D5DB"/>
|
|
33
|
+
<path d="M237 126V170H239V126H237Z" fill="#E5E7EB" mask="url(#path-18-inside-3_170_151013)"/>
|
|
34
|
+
<rect width="60" height="44" transform="translate(238 126)" fill="white"/>
|
|
35
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M276 142C276 144.122 275.157 146.157 273.657 147.657C272.157 149.157 270.122 150 268 150C265.878 150 263.843 149.157 262.343 147.657C260.843 146.157 260 144.122 260 142C260 139.878 260.843 137.843 262.343 136.343C263.843 134.843 265.878 134 268 134C270.122 134 272.157 134.843 273.657 136.343C275.157 137.843 276 139.878 276 142ZM270 139C270 139.53 269.789 140.039 269.414 140.414C269.039 140.789 268.53 141 268 141C267.47 141 266.961 140.789 266.586 140.414C266.211 140.039 266 139.53 266 139C266 138.47 266.211 137.961 266.586 137.586C266.961 137.211 267.47 137 268 137C268.53 137 269.039 137.211 269.414 137.586C269.789 137.961 270 138.47 270 139ZM268 143C267.043 143 266.105 143.274 265.299 143.791C264.494 144.308 263.853 145.046 263.454 145.916C264.017 146.571 264.714 147.096 265.499 147.455C266.284 147.815 267.137 148.001 268 148C268.863 148.001 269.716 147.815 270.501 147.455C271.286 147.096 271.983 146.571 272.546 145.916C272.147 145.046 271.506 144.308 270.701 143.791C269.895 143.274 268.957 143 268 143Z" fill="#6B7280"/>
|
|
36
|
+
<rect x="250" y="158" width="36" height="6" rx="3" fill="#D1D5DB"/>
|
|
37
|
+
</g>
|
|
38
|
+
<defs>
|
|
39
|
+
<clipPath id="clip0_170_151013">
|
|
40
|
+
<rect width="246" height="44" fill="white" transform="translate(52 126)"/>
|
|
41
|
+
</clipPath>
|
|
42
|
+
</defs>
|
|
43
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="510" height="80" viewBox="0 0 510 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="17" y="31" width="85" height="18" rx="2" fill="#6B7280"/>
|
|
3
|
+
<path d="M162.541 25.5909H159.128L150.69 56.9375H154.104L162.541 25.5909Z" fill="#6B7280"/>
|
|
4
|
+
<rect x="212" y="31" width="85" height="18" rx="2" fill="#6B7280"/>
|
|
5
|
+
<path d="M357.541 25.5909H354.128L345.69 56.9375H349.104L357.541 25.5909Z" fill="#6B7280"/>
|
|
6
|
+
<rect x="407" y="31" width="85" height="18" rx="2" fill="#EF562F"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="510" height="80" viewBox="0 0 510 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="17" y="30" width="85" height="18" rx="2" fill="#D1D5DB"/>
|
|
3
|
+
<path d="M162.541 24.5909H159.128L150.69 55.9375H154.104L162.541 24.5909Z" fill="#A1A1AA"/>
|
|
4
|
+
<rect x="212" y="30" width="85" height="18" rx="2" fill="#D1D5DB"/>
|
|
5
|
+
<path d="M357.541 24.5909H354.128L345.69 55.9375H349.104L357.541 24.5909Z" fill="#A1A1AA"/>
|
|
6
|
+
<rect x="407" y="30" width="85" height="18" rx="2" fill="#EB4F27"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="240" height="230" viewBox="0 0 240 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="6" y="6" width="227" height="59" rx="8" fill="#EB4F27"/>
|
|
3
|
+
<rect x="30" y="30" width="179" height="11" rx="4" fill="white"/>
|
|
4
|
+
<rect x="6" y="85" width="227" height="59" rx="8" fill="#EB4F27"/>
|
|
5
|
+
<rect x="30" y="109" width="18.0268" height="11" rx="4" fill="white"/>
|
|
6
|
+
<rect x="58.0269" y="109" width="150.973" height="11" rx="4" fill="white"/>
|
|
7
|
+
<rect x="6" y="164" width="227" height="59" rx="8" fill="#EB4F27"/>
|
|
8
|
+
<rect x="30" y="188" width="150.973" height="11" rx="4" fill="white"/>
|
|
9
|
+
<rect x="190.973" y="188" width="18.0268" height="11" rx="4" fill="white"/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="370" height="48" viewBox="0 0 370 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3 11C3 6.58172 6.58172 3 11 3H124V45H11C6.58172 45 3 41.4183 3 37V11Z" fill="#EB4F27"/>
|
|
3
|
+
<rect x="25" y="17.5" width="77" height="13" rx="2" fill="white"/>
|
|
4
|
+
<line x1="123.5" y1="45.0664" x2="123.5" y2="3.00003" stroke="#EC3000"/>
|
|
5
|
+
<rect width="121" height="42" transform="translate(124 3)" fill="#EB4F27"/>
|
|
6
|
+
<rect x="146" y="17.5" width="77" height="13" rx="2" fill="white"/>
|
|
7
|
+
<line x1="244.5" y1="45.0664" x2="244.5" y2="3.00003" stroke="#EC3000"/>
|
|
8
|
+
<path d="M245 3H358C362.418 3 366 6.58172 366 11V37C366 41.4183 362.418 45 358 45H245V3Z" fill="#EB4F27"/>
|
|
9
|
+
<rect x="267" y="17.5" width="77" height="13" rx="2" fill="white"/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="370" height="48" viewBox="0 0 370 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3 11C3 6.58172 6.58172 3 11 3H124V45H11C6.58172 45 3 41.4183 3 37V11Z" fill="#EB4F27"/>
|
|
3
|
+
<rect x="25" y="17.5" width="77" height="13" rx="2" fill="white"/>
|
|
4
|
+
<line x1="123.5" y1="45.0664" x2="123.5" y2="3.00003" stroke="#EC3000"/>
|
|
5
|
+
<rect width="121" height="42" transform="translate(124 3)" fill="#EB4F27"/>
|
|
6
|
+
<rect x="146" y="17.5" width="77" height="13" rx="2" fill="white"/>
|
|
7
|
+
<line x1="244.5" y1="45.0664" x2="244.5" y2="3.00003" stroke="#EC3000"/>
|
|
8
|
+
<path d="M245 3H358C362.418 3 366 6.58172 366 11V37C366 41.4183 362.418 45 358 45H245V3Z" fill="#EB4F27"/>
|
|
9
|
+
<rect x="267" y="17.5" width="77" height="13" rx="2" fill="white"/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="240" height="230" viewBox="0 0 240 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="6" y="6" width="227" height="59" rx="8" fill="#EB4F27"/>
|
|
3
|
+
<rect x="30" y="30" width="179" height="11" rx="4" fill="white"/>
|
|
4
|
+
<rect x="6" y="85" width="227" height="59" rx="8" fill="#EB4F27"/>
|
|
5
|
+
<rect x="30" y="109" width="18.0268" height="11" rx="4" fill="white"/>
|
|
6
|
+
<rect x="58.0269" y="109" width="150.973" height="11" rx="4" fill="white"/>
|
|
7
|
+
<rect x="6" y="164" width="227" height="59" rx="8" fill="#EB4F27"/>
|
|
8
|
+
<rect x="30" y="188" width="150.973" height="11" rx="4" fill="white"/>
|
|
9
|
+
<rect x="190.973" y="188" width="18.0268" height="11" rx="4" fill="white"/>
|
|
10
|
+
</svg>
|