flowbite-svelte 0.27.15 → 0.27.16
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/CHANGELOG.md +2 -0
- package/README.md +2 -0
- package/accordions/Accordion.svelte +24 -0
- package/accordions/Accordion.svelte.d.ts +30 -0
- package/accordions/AccordionItem.svelte +59 -0
- package/accordions/AccordionItem.svelte.d.ts +28 -0
- package/alerts/Alert.svelte +47 -0
- package/alerts/Alert.svelte.d.ts +32 -0
- package/avatar/Avatar.svelte +39 -0
- package/avatar/Avatar.svelte.d.ts +27 -0
- package/avatar/Dot.svelte +34 -0
- package/avatar/Dot.svelte.d.ts +23 -0
- package/avatar/Placeholder.svelte +15 -0
- package/avatar/Placeholder.svelte.d.ts +16 -0
- package/badges/Badge.svelte +51 -0
- package/badges/Badge.svelte.d.ts +26 -0
- package/breadcrumbs/Breadcrumb.svelte +13 -0
- package/breadcrumbs/Breadcrumb.svelte.d.ts +22 -0
- package/breadcrumbs/BreadcrumbItem.svelte +44 -0
- package/breadcrumbs/BreadcrumbItem.svelte.d.ts +24 -0
- package/buttongroups/ButtonGroup.svelte +10 -0
- package/buttongroups/ButtonGroup.svelte.d.ts +21 -0
- package/buttons/Button.svelte +111 -0
- package/buttons/Button.svelte.d.ts +35 -0
- package/cards/Card.svelte +40 -0
- package/cards/Card.svelte.d.ts +25 -0
- package/carousels/Caption.svelte +7 -0
- package/carousels/Caption.svelte.d.ts +17 -0
- package/carousels/Carousel.svelte +138 -0
- package/carousels/Carousel.svelte.d.ts +30 -0
- package/carousels/CarouselTransition.svelte +157 -0
- package/carousels/CarouselTransition.svelte.d.ts +32 -0
- package/carousels/Indicator.svelte +11 -0
- package/carousels/Indicator.svelte.d.ts +20 -0
- package/carousels/Slide.svelte +9 -0
- package/carousels/Slide.svelte.d.ts +19 -0
- package/carousels/Thumbnail.svelte +23 -0
- package/carousels/Thumbnail.svelte.d.ts +23 -0
- package/darkmode/DarkMode.svelte +34 -0
- package/darkmode/DarkMode.svelte.d.ts +16 -0
- package/{src/lib/datepicker → datepicker}/Calender.svelte +0 -0
- package/datepicker/Calender.svelte.d.ts +19 -0
- package/datepicker/Datepicker.svelte +70 -0
- package/datepicker/Datepicker.svelte.d.ts +25 -0
- package/drawer/Drawer.svelte +74 -0
- package/drawer/Drawer.svelte.d.ts +37 -0
- package/dropdowns/Dropdown.svelte +32 -0
- package/dropdowns/Dropdown.svelte.d.ts +24 -0
- package/dropdowns/DropdownDivider.svelte +5 -0
- package/dropdowns/DropdownDivider.svelte.d.ts +17 -0
- package/dropdowns/DropdownHeader.svelte +13 -0
- package/dropdowns/DropdownHeader.svelte.d.ts +20 -0
- package/dropdowns/DropdownItem.svelte +29 -0
- package/dropdowns/DropdownItem.svelte.d.ts +29 -0
- package/footer/Footer.svelte +21 -0
- package/footer/Footer.svelte.d.ts +20 -0
- package/footer/FooterBrand.svelte +20 -0
- package/footer/FooterBrand.svelte.d.ts +26 -0
- package/footer/FooterCopyright.svelte +20 -0
- package/footer/FooterCopyright.svelte.d.ts +22 -0
- package/footer/FooterIcon.svelte +14 -0
- package/footer/FooterIcon.svelte.d.ts +22 -0
- package/footer/FooterLink.svelte +13 -0
- package/footer/FooterLink.svelte.d.ts +22 -0
- package/footer/FooterLinkGroup.svelte +7 -0
- package/footer/FooterLinkGroup.svelte.d.ts +19 -0
- package/forms/Checkbox.svelte +52 -0
- package/forms/Checkbox.svelte.d.ts +36 -0
- package/forms/Dropzone.svelte +26 -0
- package/forms/Dropzone.svelte.d.ts +30 -0
- package/forms/Fileupload.svelte +27 -0
- package/forms/Fileupload.svelte.d.ts +31 -0
- package/forms/FloatingLabelInput.svelte +106 -0
- package/forms/FloatingLabelInput.svelte.d.ts +36 -0
- package/forms/Helper.svelte +14 -0
- package/forms/Helper.svelte.d.ts +20 -0
- package/forms/Iconinput.svelte +81 -0
- package/forms/Iconinput.svelte.d.ts +39 -0
- package/forms/Input.svelte +82 -0
- package/forms/Input.svelte.d.ts +45 -0
- package/forms/InputAddon.svelte +29 -0
- package/forms/InputAddon.svelte.d.ts +19 -0
- package/forms/Label.svelte +25 -0
- package/forms/Label.svelte.d.ts +21 -0
- package/forms/NumberInput.svelte +7 -0
- package/forms/NumberInput.svelte.d.ts +17 -0
- package/forms/Radio.svelte +45 -0
- package/forms/Radio.svelte.d.ts +38 -0
- package/{src/lib/forms → forms}/RadioInline.svelte +0 -0
- package/forms/RadioInline.svelte.d.ts +23 -0
- package/forms/Range.svelte +22 -0
- package/forms/Range.svelte.d.ts +24 -0
- package/forms/Search.svelte +55 -0
- package/forms/Search.svelte.d.ts +34 -0
- package/forms/Select.svelte +25 -0
- package/forms/Select.svelte.d.ts +27 -0
- package/forms/SimpleSearch.svelte +20 -0
- package/forms/SimpleSearch.svelte.d.ts +18 -0
- package/forms/Textarea.svelte +48 -0
- package/forms/Textarea.svelte.d.ts +32 -0
- package/forms/Toggle.svelte +32 -0
- package/forms/Toggle.svelte.d.ts +25 -0
- package/forms/VoiceSearch.svelte +63 -0
- package/forms/VoiceSearch.svelte.d.ts +28 -0
- package/index.d.ts +129 -0
- package/index.js +165 -0
- package/kbd/ArrowKeyDown.svelte +15 -0
- package/kbd/ArrowKeyDown.svelte.d.ts +17 -0
- package/kbd/ArrowKeyLeft.svelte +15 -0
- package/kbd/ArrowKeyLeft.svelte.d.ts +17 -0
- package/kbd/ArrowKeyRight.svelte +15 -0
- package/kbd/ArrowKeyRight.svelte.d.ts +17 -0
- package/kbd/ArrowKeyUp.svelte +15 -0
- package/kbd/ArrowKeyUp.svelte.d.ts +17 -0
- package/kbd/Kbd.svelte +7 -0
- package/kbd/Kbd.svelte.d.ts +19 -0
- package/list-group/Listgroup.svelte +18 -0
- package/list-group/Listgroup.svelte.d.ts +23 -0
- package/list-group/ListgroupItem.svelte +62 -0
- package/list-group/ListgroupItem.svelte.d.ts +35 -0
- package/megamenu/MegaMenu.svelte +42 -0
- package/megamenu/MegaMenu.svelte.d.ts +27 -0
- package/modals/Modal.svelte +138 -0
- package/modals/Modal.svelte.d.ts +30 -0
- package/navbar/Menu.svelte +36 -0
- package/navbar/Menu.svelte.d.ts +22 -0
- package/navbar/NavBrand.svelte +7 -0
- package/navbar/NavBrand.svelte.d.ts +19 -0
- package/navbar/NavDropdown.svelte +59 -0
- package/navbar/NavDropdown.svelte.d.ts +35 -0
- package/navbar/NavHamburger.svelte +9 -0
- package/navbar/NavHamburger.svelte.d.ts +19 -0
- package/navbar/NavLi.svelte +28 -0
- package/navbar/NavLi.svelte.d.ts +33 -0
- package/navbar/NavUl.svelte +28 -0
- package/navbar/NavUl.svelte.d.ts +21 -0
- package/navbar/Navbar.svelte +17 -0
- package/navbar/Navbar.svelte.d.ts +25 -0
- package/package.json +258 -113
- package/paginations/Pagination.svelte +36 -0
- package/paginations/Pagination.svelte.d.ts +26 -0
- package/paginations/PaginationItem.svelte +24 -0
- package/paginations/PaginationItem.svelte.d.ts +29 -0
- package/popover/Popover.svelte +18 -0
- package/popover/Popover.svelte.d.ts +23 -0
- package/progressbars/Progressbar.svelte +34 -0
- package/progressbars/Progressbar.svelte.d.ts +23 -0
- package/ratings/AdvancedRating.svelte +24 -0
- package/ratings/AdvancedRating.svelte.d.ts +28 -0
- package/ratings/Rating.svelte +34 -0
- package/ratings/Rating.svelte.d.ts +27 -0
- package/ratings/RatingComment.svelte +64 -0
- package/ratings/RatingComment.svelte.d.ts +39 -0
- package/ratings/Review.svelte +64 -0
- package/ratings/Review.svelte.d.ts +29 -0
- package/ratings/ScoreRating.svelte +52 -0
- package/ratings/ScoreRating.svelte.d.ts +36 -0
- package/ratings/Star.svelte +36 -0
- package/ratings/Star.svelte.d.ts +22 -0
- package/sidebars/Sidebar.svelte +7 -0
- package/sidebars/Sidebar.svelte.d.ts +19 -0
- package/sidebars/SidebarBrand.svelte +11 -0
- package/sidebars/SidebarBrand.svelte.d.ts +21 -0
- package/sidebars/SidebarCta.svelte +21 -0
- package/sidebars/SidebarCta.svelte.d.ts +23 -0
- package/sidebars/SidebarDropdownItem.svelte +23 -0
- package/sidebars/SidebarDropdownItem.svelte.d.ts +31 -0
- package/sidebars/SidebarDropdownWrapper.svelte +45 -0
- package/sidebars/SidebarDropdownWrapper.svelte.d.ts +26 -0
- package/sidebars/SidebarGroup.svelte +12 -0
- package/sidebars/SidebarGroup.svelte.d.ts +21 -0
- package/sidebars/SidebarItem.svelte +30 -0
- package/sidebars/SidebarItem.svelte.d.ts +35 -0
- package/sidebars/SidebarWrapper.svelte +7 -0
- package/sidebars/SidebarWrapper.svelte.d.ts +19 -0
- package/skeleton/CardPlaceholder.svelte +44 -0
- package/skeleton/CardPlaceholder.svelte.d.ts +18 -0
- package/skeleton/ImagePlaceholder.svelte +32 -0
- package/skeleton/ImagePlaceholder.svelte.d.ts +18 -0
- package/skeleton/ListPlaceholder.svelte +42 -0
- package/skeleton/ListPlaceholder.svelte.d.ts +17 -0
- package/skeleton/Skeleton.svelte +13 -0
- package/skeleton/Skeleton.svelte.d.ts +17 -0
- package/skeleton/TestimonialPlaceholder.svelte +25 -0
- package/skeleton/TestimonialPlaceholder.svelte.d.ts +17 -0
- package/skeleton/TextPlaceholder.svelte +37 -0
- package/skeleton/TextPlaceholder.svelte.d.ts +17 -0
- package/skeleton/VideoPlaceholder.svelte +20 -0
- package/skeleton/VideoPlaceholder.svelte.d.ts +18 -0
- package/skeleton/WidgetPlaceholder.svelte +18 -0
- package/skeleton/WidgetPlaceholder.svelte.d.ts +17 -0
- package/spinners/Spinner.svelte +46 -0
- package/spinners/Spinner.svelte.d.ts +22 -0
- package/tables/Table.svelte +31 -0
- package/tables/Table.svelte.d.ts +24 -0
- package/{src/lib/tables → tables}/TableBody.svelte +0 -0
- package/tables/TableBody.svelte.d.ts +27 -0
- package/tables/TableBodyCell.svelte +14 -0
- package/tables/TableBodyCell.svelte.d.ts +19 -0
- package/tables/TableBodyRow.svelte +39 -0
- package/tables/TableBodyRow.svelte.d.ts +19 -0
- package/tables/TableHead.svelte +37 -0
- package/tables/TableHead.svelte.d.ts +19 -0
- package/tables/TableHeadCell.svelte +6 -0
- package/tables/TableHeadCell.svelte.d.ts +18 -0
- package/tables/TableSearch.svelte +55 -0
- package/tables/TableSearch.svelte.d.ts +24 -0
- package/tabs/TabHead.svelte +27 -0
- package/tabs/TabHead.svelte.d.ts +20 -0
- package/tabs/TabHeadItem.svelte +56 -0
- package/tabs/TabHeadItem.svelte.d.ts +34 -0
- package/tabs/TabItem.svelte +53 -0
- package/tabs/TabItem.svelte.d.ts +34 -0
- package/tabs/Tabs.svelte +50 -0
- package/tabs/Tabs.svelte.d.ts +33 -0
- package/timelines/Activity.svelte +6 -0
- package/timelines/Activity.svelte.d.ts +18 -0
- package/timelines/ActivityItem.svelte +29 -0
- package/timelines/ActivityItem.svelte.d.ts +17 -0
- package/timelines/Group.svelte +11 -0
- package/timelines/Group.svelte.d.ts +20 -0
- package/timelines/GroupItem.svelte +49 -0
- package/timelines/GroupItem.svelte.d.ts +17 -0
- package/timelines/Timeline.svelte +17 -0
- package/timelines/Timeline.svelte.d.ts +19 -0
- package/timelines/TimelineHorizontal.svelte +6 -0
- package/timelines/TimelineHorizontal.svelte.d.ts +18 -0
- package/timelines/TimelineItem.svelte +125 -0
- package/timelines/TimelineItem.svelte.d.ts +22 -0
- package/timelines/TimelineItemHorizontal.svelte +55 -0
- package/timelines/TimelineItemHorizontal.svelte.d.ts +21 -0
- package/timelines/TimelineItemVertical.svelte +33 -0
- package/timelines/TimelineItemVertical.svelte.d.ts +20 -0
- package/toasts/Toast.svelte +39 -0
- package/toasts/Toast.svelte.d.ts +25 -0
- package/toolbar/Toolbar.svelte +57 -0
- package/toolbar/Toolbar.svelte.d.ts +21 -0
- package/toolbar/ToolbarButton.svelte +44 -0
- package/toolbar/ToolbarButton.svelte.d.ts +24 -0
- package/toolbar/ToolbarGroup.svelte +9 -0
- package/toolbar/ToolbarGroup.svelte.d.ts +16 -0
- package/tooltips/Tooltip.svelte +23 -0
- package/tooltips/Tooltip.svelte.d.ts +22 -0
- package/types.d.ts +225 -0
- package/types.js +1 -0
- package/typography/A.svelte +9 -0
- package/typography/A.svelte.d.ts +21 -0
- package/typography/Blockquote.svelte +44 -0
- package/typography/Blockquote.svelte.d.ts +26 -0
- package/typography/DescriptionList.svelte +10 -0
- package/typography/DescriptionList.svelte.d.ts +21 -0
- package/typography/Heading.svelte +20 -0
- package/typography/Heading.svelte.d.ts +21 -0
- package/typography/Hr.svelte +24 -0
- package/typography/Hr.svelte.d.ts +26 -0
- package/typography/Img.svelte +30 -0
- package/typography/Img.svelte.d.ts +26 -0
- package/typography/Layout.svelte +10 -0
- package/typography/Layout.svelte.d.ts +21 -0
- package/typography/Li.svelte +9 -0
- package/typography/Li.svelte.d.ts +20 -0
- package/typography/List.svelte +23 -0
- package/typography/List.svelte.d.ts +25 -0
- package/typography/Mark.svelte +9 -0
- package/typography/Mark.svelte.d.ts +21 -0
- package/typography/P.svelte +75 -0
- package/typography/P.svelte.d.ts +30 -0
- package/typography/Secondary.svelte +8 -0
- package/typography/Secondary.svelte.d.ts +20 -0
- package/typography/Span.svelte +17 -0
- package/typography/Span.svelte.d.ts +27 -0
- package/typography/Ul.svelte +20 -0
- package/typography/Ul.svelte.d.ts +21 -0
- package/utils/Chevron.svelte +26 -0
- package/utils/Chevron.svelte.d.ts +20 -0
- package/utils/ChevronDown.svelte +36 -0
- package/utils/ChevronDown.svelte.d.ts +22 -0
- package/utils/ChevronLeft.svelte +36 -0
- package/utils/ChevronLeft.svelte.d.ts +22 -0
- package/utils/ChevronRight.svelte +36 -0
- package/utils/ChevronRight.svelte.d.ts +22 -0
- package/utils/ChevronUp.svelte +36 -0
- package/utils/ChevronUp.svelte.d.ts +22 -0
- package/utils/CloseButton.svelte +52 -0
- package/utils/CloseButton.svelte.d.ts +23 -0
- package/utils/Frame.svelte +108 -0
- package/utils/Frame.svelte.d.ts +35 -0
- package/utils/InformationCircle.svelte +37 -0
- package/utils/InformationCircle.svelte.d.ts +22 -0
- package/utils/Popper.svelte +139 -0
- package/utils/Popper.svelte.d.ts +28 -0
- package/utils/UserCircle.svelte +37 -0
- package/utils/UserCircle.svelte.d.ts +22 -0
- package/utils/Wrapper.svelte +10 -0
- package/utils/Wrapper.svelte.d.ts +22 -0
- package/utils/backdrop.d.ts +6 -0
- package/utils/backdrop.js +90 -0
- package/utils/clickOutside.d.ts +3 -0
- package/utils/clickOutside.js +15 -0
- package/utils/createEventDispatcher.d.ts +1 -0
- package/{src/lib/utils → utils}/createEventDispatcher.js +0 -0
- package/utils/focusTrap.d.ts +3 -0
- package/{src/lib/utils → utils}/focusTrap.js +0 -0
- package/utils/generateId.d.ts +1 -0
- package/{src/lib/utils → utils}/generateId.js +0 -0
- package/video/Video.svelte +22 -0
- package/video/Video.svelte.d.ts +23 -0
- package/.eslintrc.cjs +0 -20
- package/.github/FUNDING.yml +0 -13
- package/.github/ISSUE_TEMPLATE/bug_report.yml +0 -33
- package/.github/ISSUE_TEMPLATE/config.yml +0 -5
- package/.github/ISSUE_TEMPLATE/feature_request.md +0 -17
- package/.github/pull_request_template.md +0 -67
- package/.prettierrc +0 -8
- package/CONTRIBUTING.md +0 -67
- package/mdsvex.config.js +0 -22
- package/playwright.config.ts +0 -10
- package/postcss.config.cjs +0 -13
- package/src/app.css +0 -41
- package/src/app.d.ts +0 -9
- package/src/app.html +0 -32
- package/src/app.postcss +0 -4
- package/src/hooks.server.js +0 -76
- package/src/lib/accordions/Accordion.svelte +0 -45
- package/src/lib/accordions/AccordionItem.svelte +0 -79
- package/src/lib/alerts/Alert.svelte +0 -59
- package/src/lib/avatar/Avatar.svelte +0 -54
- package/src/lib/avatar/Dot.svelte +0 -48
- package/src/lib/avatar/Placeholder.svelte +0 -16
- package/src/lib/badges/Badge.svelte +0 -67
- package/src/lib/breadcrumbs/Breadcrumb.svelte +0 -16
- package/src/lib/breadcrumbs/BreadcrumbItem.svelte +0 -47
- package/src/lib/buttongroups/ButtonGroup.svelte +0 -14
- package/src/lib/buttons/Button.svelte +0 -182
- package/src/lib/cards/Card.svelte +0 -60
- package/src/lib/carousels/Caption.svelte +0 -8
- package/src/lib/carousels/Carousel.svelte +0 -147
- package/src/lib/carousels/CarouselTransition.svelte +0 -167
- package/src/lib/carousels/Indicator.svelte +0 -13
- package/src/lib/carousels/Slide.svelte +0 -10
- package/src/lib/carousels/Thumbnail.svelte +0 -25
- package/src/lib/darkmode/DarkMode.svelte +0 -36
- package/src/lib/datepicker/Datepicker.svelte +0 -74
- package/src/lib/drawer/Drawer.svelte +0 -85
- package/src/lib/dropdowns/Dropdown.svelte +0 -36
- package/src/lib/dropdowns/DropdownDivider.svelte +0 -6
- package/src/lib/dropdowns/DropdownHeader.svelte +0 -14
- package/src/lib/dropdowns/DropdownItem.svelte +0 -34
- package/src/lib/footer/Footer.svelte +0 -22
- package/src/lib/footer/FooterBrand.svelte +0 -21
- package/src/lib/footer/FooterCopyright.svelte +0 -21
- package/src/lib/footer/FooterIcon.svelte +0 -15
- package/src/lib/footer/FooterLink.svelte +0 -14
- package/src/lib/footer/FooterLinkGroup.svelte +0 -8
- package/src/lib/forms/Checkbox.svelte +0 -58
- package/src/lib/forms/Dropzone.svelte +0 -28
- package/src/lib/forms/Fileupload.svelte +0 -29
- package/src/lib/forms/FloatingLabelInput.svelte +0 -124
- package/src/lib/forms/Helper.svelte +0 -15
- package/src/lib/forms/Iconinput.svelte +0 -86
- package/src/lib/forms/Input.svelte +0 -110
- package/src/lib/forms/InputAddon.svelte +0 -50
- package/src/lib/forms/Label.svelte +0 -31
- package/src/lib/forms/NumberInput.svelte +0 -9
- package/src/lib/forms/Radio.svelte +0 -69
- package/src/lib/forms/Range.svelte +0 -29
- package/src/lib/forms/Search.svelte +0 -58
- package/src/lib/forms/Select.svelte +0 -40
- package/src/lib/forms/SimpleSearch.svelte +0 -21
- package/src/lib/forms/Textarea.svelte +0 -77
- package/src/lib/forms/Toggle.svelte +0 -46
- package/src/lib/forms/VoiceSearch.svelte +0 -71
- package/src/lib/index.ts +0 -200
- package/src/lib/kbd/ArrowKeyDown.svelte +0 -16
- package/src/lib/kbd/ArrowKeyLeft.svelte +0 -16
- package/src/lib/kbd/ArrowKeyRight.svelte +0 -16
- package/src/lib/kbd/ArrowKeyUp.svelte +0 -16
- package/src/lib/kbd/Kbd.svelte +0 -9
- package/src/lib/list-group/Listgroup.svelte +0 -23
- package/src/lib/list-group/ListgroupItem.svelte +0 -77
- package/src/lib/megamenu/MegaMenu.svelte +0 -57
- package/src/lib/modals/Modal.svelte +0 -165
- package/src/lib/navbar/Menu.svelte +0 -37
- package/src/lib/navbar/NavBrand.svelte +0 -8
- package/src/lib/navbar/NavDropdown.svelte +0 -66
- package/src/lib/navbar/NavHamburger.svelte +0 -11
- package/src/lib/navbar/NavLi.svelte +0 -37
- package/src/lib/navbar/NavUl.svelte +0 -35
- package/src/lib/navbar/Navbar.svelte +0 -36
- package/src/lib/paginations/Pagination.svelte +0 -42
- package/src/lib/paginations/PaginationItem.svelte +0 -36
- package/src/lib/popover/Popover.svelte +0 -20
- package/src/lib/progressbars/Progressbar.svelte +0 -39
- package/src/lib/ratings/AdvancedRating.svelte +0 -25
- package/src/lib/ratings/Rating.svelte +0 -37
- package/src/lib/ratings/RatingComment.svelte +0 -81
- package/src/lib/ratings/Review.svelte +0 -66
- package/src/lib/ratings/ScoreRating.svelte +0 -53
- package/src/lib/ratings/Star.svelte +0 -37
- package/src/lib/sidebars/Sidebar.svelte +0 -8
- package/src/lib/sidebars/SidebarBrand.svelte +0 -15
- package/src/lib/sidebars/SidebarCta.svelte +0 -24
- package/src/lib/sidebars/SidebarDropdownItem.svelte +0 -27
- package/src/lib/sidebars/SidebarDropdownWrapper.svelte +0 -49
- package/src/lib/sidebars/SidebarGroup.svelte +0 -15
- package/src/lib/sidebars/SidebarItem.svelte +0 -34
- package/src/lib/sidebars/SidebarWrapper.svelte +0 -9
- package/src/lib/skeleton/CardPlaceholder.svelte +0 -46
- package/src/lib/skeleton/ImagePlaceholder.svelte +0 -34
- package/src/lib/skeleton/ListPlaceholder.svelte +0 -44
- package/src/lib/skeleton/Skeleton.svelte +0 -14
- package/src/lib/skeleton/TestimonialPlaceholder.svelte +0 -26
- package/src/lib/skeleton/TextPlaceholder.svelte +0 -38
- package/src/lib/skeleton/VideoPlaceholder.svelte +0 -22
- package/src/lib/skeleton/WidgetPlaceholder.svelte +0 -20
- package/src/lib/spinners/Spinner.svelte +0 -54
- package/src/lib/tables/Table.svelte +0 -36
- package/src/lib/tables/TableBodyCell.svelte +0 -21
- package/src/lib/tables/TableBodyRow.svelte +0 -49
- package/src/lib/tables/TableHead.svelte +0 -49
- package/src/lib/tables/TableHeadCell.svelte +0 -7
- package/src/lib/tables/TableSearch.svelte +0 -60
- package/src/lib/tabs/TabHead.svelte +0 -31
- package/src/lib/tabs/TabHeadItem.svelte +0 -70
- package/src/lib/tabs/TabItem.svelte +0 -65
- package/src/lib/tabs/Tabs.svelte +0 -68
- package/src/lib/timelines/Activity.svelte +0 -7
- package/src/lib/timelines/ActivityItem.svelte +0 -31
- package/src/lib/timelines/Group.svelte +0 -12
- package/src/lib/timelines/GroupItem.svelte +0 -51
- package/src/lib/timelines/Timeline.svelte +0 -21
- package/src/lib/timelines/TimelineHorizontal.svelte +0 -7
- package/src/lib/timelines/TimelineItem.svelte +0 -135
- package/src/lib/timelines/TimelineItemHorizontal.svelte +0 -56
- package/src/lib/timelines/TimelineItemVertical.svelte +0 -34
- package/src/lib/toasts/Toast.svelte +0 -60
- package/src/lib/toolbar/Toolbar.svelte +0 -73
- package/src/lib/toolbar/ToolbarButton.svelte +0 -58
- package/src/lib/toolbar/ToolbarGroup.svelte +0 -11
- package/src/lib/tooltips/Tooltip.svelte +0 -25
- package/src/lib/types.ts +0 -285
- package/src/lib/typography/A.svelte +0 -11
- package/src/lib/typography/Blockquote.svelte +0 -59
- package/src/lib/typography/DescriptionList.svelte +0 -13
- package/src/lib/typography/Heading.svelte +0 -22
- package/src/lib/typography/Hr.svelte +0 -28
- package/src/lib/typography/Img.svelte +0 -32
- package/src/lib/typography/Layout.svelte +0 -12
- package/src/lib/typography/Li.svelte +0 -11
- package/src/lib/typography/List.svelte +0 -33
- package/src/lib/typography/Mark.svelte +0 -11
- package/src/lib/typography/P.svelte +0 -118
- package/src/lib/typography/Secondary.svelte +0 -10
- package/src/lib/typography/Span.svelte +0 -29
- package/src/lib/typography/Ul.svelte +0 -22
- package/src/lib/utils/Chevron.svelte +0 -32
- package/src/lib/utils/ChevronDown.svelte +0 -37
- package/src/lib/utils/ChevronLeft.svelte +0 -37
- package/src/lib/utils/ChevronRight.svelte +0 -37
- package/src/lib/utils/ChevronUp.svelte +0 -37
- package/src/lib/utils/CloseButton.svelte +0 -64
- package/src/lib/utils/Frame.svelte +0 -146
- package/src/lib/utils/InformationCircle.svelte +0 -38
- package/src/lib/utils/Popper.svelte +0 -148
- package/src/lib/utils/UserCircle.svelte +0 -38
- package/src/lib/utils/Wrapper.svelte +0 -13
- package/src/lib/utils/backdrop.ts +0 -109
- package/src/lib/utils/clickOutside.ts +0 -16
- package/src/lib/video/Video.svelte +0 -24
- package/src/routes/+error.svelte +0 -16
- package/src/routes/+layout.js +0 -9
- package/src/routes/+layout.svelte +0 -259
- package/src/routes/+page.svelte +0 -126
- package/src/routes/Toc/+page.svelte +0 -41
- package/src/routes/api/posts/+server.js +0 -7
- package/src/routes/blocks/+server.ts +0 -51
- package/src/routes/blocks/AccordionBlock/+page.svelte +0 -47
- package/src/routes/blocks/AlertBlock/+page.svelte +0 -47
- package/src/routes/blocks/AvatarBlock/+page.svelte +0 -47
- package/src/routes/blocks/BadgeBlock/+page.svelte +0 -47
- package/src/routes/blocks/BlockquoteBlock/+page.svelte +0 -46
- package/src/routes/blocks/BreadcrumbBlock/+page.svelte +0 -47
- package/src/routes/blocks/ButtonBlock/+page.svelte +0 -47
- package/src/routes/blocks/ButtongroupBlock/+page.svelte +0 -47
- package/src/routes/blocks/CardBlock/+page.svelte +0 -47
- package/src/routes/blocks/CarouselBlock/+page.svelte +0 -47
- package/src/routes/blocks/CheckboxBlock/+page.svelte +0 -55
- package/src/routes/blocks/DatepickerBlock/+page.svelte +0 -48
- package/src/routes/blocks/DrawerBlock/+page.svelte +0 -46
- package/src/routes/blocks/DropdownBlock/+page.svelte +0 -47
- package/src/routes/blocks/FileinputBlock/+page.svelte +0 -47
- package/src/routes/blocks/FloatingLabelBlock/+page.svelte +0 -47
- package/src/routes/blocks/FooterBlock/+page.svelte +0 -47
- package/src/routes/blocks/FormBlock/+page.svelte +0 -47
- package/src/routes/blocks/HeadingBlock/+page.svelte +0 -46
- package/src/routes/blocks/HrBlock/+page.svelte +0 -46
- package/src/routes/blocks/ImageBlock/+page.svelte +0 -46
- package/src/routes/blocks/InputfieldBlock/+page.svelte +0 -47
- package/src/routes/blocks/KbdBlock/+page.svelte +0 -47
- package/src/routes/blocks/LinkBlock/+page.svelte +0 -46
- package/src/routes/blocks/ListBlock/+page.svelte +0 -46
- package/src/routes/blocks/ListgroupBlock/+page.svelte +0 -47
- package/src/routes/blocks/MegamenuBlock/+page.svelte +0 -47
- package/src/routes/blocks/ModalBlock/+page.svelte +0 -47
- package/src/routes/blocks/NavbarBlock/+page.svelte +0 -47
- package/src/routes/blocks/PaginationBlock/+page.svelte +0 -47
- package/src/routes/blocks/ParagraphBlock/+page.svelte +0 -46
- package/src/routes/blocks/PopoverBlock/+page.svelte +0 -46
- package/src/routes/blocks/ProgressbarBlock/+page.svelte +0 -47
- package/src/routes/blocks/RadioBlock/+page.svelte +0 -47
- package/src/routes/blocks/RangeBlock/+page.svelte +0 -47
- package/src/routes/blocks/RatingBlock/+page.svelte +0 -47
- package/src/routes/blocks/SearchinputBlock/+page.svelte +0 -47
- package/src/routes/blocks/SelectBlock/+page.svelte +0 -47
- package/src/routes/blocks/SidebarBlock/+page.svelte +0 -47
- package/src/routes/blocks/SkeletonBlock/+page.svelte +0 -47
- package/src/routes/blocks/SpinnerBlock/+page.svelte +0 -47
- package/src/routes/blocks/TabBlock/+page.svelte +0 -47
- package/src/routes/blocks/TableBlock/+page.svelte +0 -47
- package/src/routes/blocks/TextBlock/+page.svelte +0 -46
- package/src/routes/blocks/TextareaBlock/+page.svelte +0 -47
- package/src/routes/blocks/TimelineBlock/+page.svelte +0 -47
- package/src/routes/blocks/ToastBlock/+page.svelte +0 -47
- package/src/routes/blocks/ToggleBlock/+page.svelte +0 -47
- package/src/routes/blocks/TooltipBlock/+page.svelte +0 -47
- package/src/routes/blocks/TypographyBlock/+page.svelte +0 -47
- package/src/routes/blocks/VideoBlock/+page.svelte +0 -46
- package/src/routes/components/[slug]/+page.js +0 -12
- package/src/routes/components/[slug]/+page.svelte +0 -6
- package/src/routes/components/accordion.md +0 -300
- package/src/routes/components/alert.md +0 -324
- package/src/routes/components/avatar.md +0 -228
- package/src/routes/components/badge.md +0 -190
- package/src/routes/components/breadcrumb.md +0 -134
- package/src/routes/components/button-group.md +0 -225
- package/src/routes/components/button.md +0 -335
- package/src/routes/components/card.md +0 -454
- package/src/routes/components/carousel.md +0 -294
- package/src/routes/components/darkmode.md +0 -121
- package/src/routes/components/drawer.md +0 -727
- package/src/routes/components/dropdown.md +0 -710
- package/src/routes/components/footer.md +0 -306
- package/src/routes/components/forms.md +0 -298
- package/src/routes/components/imageData/+server.js +0 -50
- package/src/routes/components/kbd.md +0 -284
- package/src/routes/components/list-group.md +0 -192
- package/src/routes/components/mega-menu.md +0 -286
- package/src/routes/components/modal.md +0 -360
- package/src/routes/components/navbar.md +0 -349
- package/src/routes/components/pagination.md +0 -263
- package/src/routes/components/popover.md +0 -398
- package/src/routes/components/progress.md +0 -213
- package/src/routes/components/rating.md +0 -408
- package/src/routes/components/sidebar.md +0 -584
- package/src/routes/components/skeleton.md +0 -176
- package/src/routes/components/spinner.md +0 -137
- package/src/routes/components/tab.md +0 -305
- package/src/routes/components/table.md +0 -849
- package/src/routes/components/timeline.md +0 -362
- package/src/routes/components/toast.md +0 -381
- package/src/routes/components/tooltip.md +0 -174
- package/src/routes/components/typography.md +0 -132
- package/src/routes/components/video.md +0 -143
- package/src/routes/datepicker/+page.svelte +0 -179
- package/src/routes/extend/CheckCircle.svelte +0 -9
- package/src/routes/extend/[slug]/+page.js +0 -12
- package/src/routes/extend/[slug]/+page.svelte +0 -6
- package/src/routes/extend/flowbite-svelte-starter.md +0 -76
- package/src/routes/extend/icons.md +0 -270
- package/src/routes/forms/[slug]/+page.js +0 -12
- package/src/routes/forms/[slug]/+page.svelte +0 -6
- package/src/routes/forms/checkbox.md +0 -338
- package/src/routes/forms/file-input.md +0 -158
- package/src/routes/forms/floating-label.md +0 -184
- package/src/routes/forms/input-field.md +0 -410
- package/src/routes/forms/radio.md +0 -330
- package/src/routes/forms/range.md +0 -134
- package/src/routes/forms/search-input.md +0 -131
- package/src/routes/forms/select.md +0 -194
- package/src/routes/forms/textarea.md +0 -162
- package/src/routes/forms/toggle.md +0 -103
- package/src/routes/layouts/component/+page.svelte +0 -9
- package/src/routes/layouts/formLayout/+page.svelte +0 -60
- package/src/routes/layouts/pageLayout/+page.svelte +0 -57
- package/src/routes/layouts/testLayout/+page.svelte +0 -6
- package/src/routes/layouts/typographyLayout/+page.svelte +0 -100
- package/src/routes/layouts/utilitiesLayout/+page.svelte +0 -33
- package/src/routes/moduleItems/+server.js +0 -13
- package/src/routes/pages/[slug]/+page.js +0 -12
- package/src/routes/pages/[slug]/+page.svelte +0 -6
- package/src/routes/pages/about.md +0 -36
- package/src/routes/pages/getting-started.md +0 -119
- package/src/routes/pages/how-to-contribute.md +0 -148
- package/src/routes/pages/license.md +0 -48
- package/src/routes/pages/types.md +0 -28
- package/src/routes/props/A.json +0 -1
- package/src/routes/props/Accordion.json +0 -1
- package/src/routes/props/AccordionItem.json +0 -1
- package/src/routes/props/Activity.json +0 -1
- package/src/routes/props/ActivityItem.json +0 -1
- package/src/routes/props/AdvancedRating.json +0 -1
- package/src/routes/props/Alert.json +0 -1
- package/src/routes/props/ArrowKeyDown.json +0 -1
- package/src/routes/props/ArrowKeyLeft.json +0 -1
- package/src/routes/props/ArrowKeyRight.json +0 -1
- package/src/routes/props/ArrowKeyUp.json +0 -1
- package/src/routes/props/Avatar.json +0 -1
- package/src/routes/props/Badge.json +0 -1
- package/src/routes/props/Blockquote.json +0 -1
- package/src/routes/props/Breadcrumb.json +0 -1
- package/src/routes/props/BreadcrumbItem.json +0 -1
- package/src/routes/props/Button.json +0 -1
- package/src/routes/props/ButtonGroup.json +0 -1
- package/src/routes/props/Caption.json +0 -1
- package/src/routes/props/Card.json +0 -1
- package/src/routes/props/CardPlaceholder.json +0 -1
- package/src/routes/props/Carousel.json +0 -1
- package/src/routes/props/CarouselTransition.json +0 -1
- package/src/routes/props/Checkbox.json +0 -1
- package/src/routes/props/Chevron.json +0 -1
- package/src/routes/props/ChevronDown.json +0 -1
- package/src/routes/props/ChevronLeft.json +0 -1
- package/src/routes/props/ChevronRight.json +0 -1
- package/src/routes/props/ChevronUp.json +0 -1
- package/src/routes/props/CloseButton.json +0 -1
- package/src/routes/props/DarkMode.json +0 -1
- package/src/routes/props/Datepicker.json +0 -1
- package/src/routes/props/DescriptionList.json +0 -1
- package/src/routes/props/Dot.json +0 -1
- package/src/routes/props/Drawer.json +0 -1
- package/src/routes/props/Dropdown.json +0 -1
- package/src/routes/props/DropdownDivider.json +0 -1
- package/src/routes/props/DropdownHeader.json +0 -1
- package/src/routes/props/DropdownItem.json +0 -1
- package/src/routes/props/Dropzone.json +0 -1
- package/src/routes/props/Fileupload.json +0 -1
- package/src/routes/props/FloatingLabelInput.json +0 -1
- package/src/routes/props/Footer.json +0 -1
- package/src/routes/props/FooterBrand.json +0 -1
- package/src/routes/props/FooterCopyright.json +0 -1
- package/src/routes/props/FooterIcon.json +0 -1
- package/src/routes/props/FooterLink.json +0 -1
- package/src/routes/props/FooterLinkGroup.json +0 -1
- package/src/routes/props/Frame.json +0 -1
- package/src/routes/props/Group.json +0 -1
- package/src/routes/props/GroupItem.json +0 -1
- package/src/routes/props/Heading.json +0 -1
- package/src/routes/props/Helper.json +0 -1
- package/src/routes/props/Hr.json +0 -1
- package/src/routes/props/Iconinput.json +0 -1
- package/src/routes/props/ImagePlaceholder.json +0 -1
- package/src/routes/props/Img.json +0 -1
- package/src/routes/props/Indicator.json +0 -1
- package/src/routes/props/InformationCircle.json +0 -1
- package/src/routes/props/Input.json +0 -1
- package/src/routes/props/InputAddon.json +0 -1
- package/src/routes/props/Kbd.json +0 -1
- package/src/routes/props/Label.json +0 -1
- package/src/routes/props/Layout.json +0 -1
- package/src/routes/props/Li.json +0 -1
- package/src/routes/props/List.json +0 -1
- package/src/routes/props/ListPlaceholder.json +0 -1
- package/src/routes/props/Listgroup.json +0 -1
- package/src/routes/props/ListgroupItem.json +0 -1
- package/src/routes/props/Mark.json +0 -1
- package/src/routes/props/MegaMenu.json +0 -1
- package/src/routes/props/Menu.json +0 -1
- package/src/routes/props/Modal.json +0 -1
- package/src/routes/props/NavBrand.json +0 -1
- package/src/routes/props/NavDropdown.json +0 -1
- package/src/routes/props/NavHamburger.json +0 -1
- package/src/routes/props/NavLi.json +0 -1
- package/src/routes/props/NavUl.json +0 -1
- package/src/routes/props/Navbar.json +0 -1
- package/src/routes/props/NumberInput.json +0 -1
- package/src/routes/props/P.json +0 -1
- package/src/routes/props/Pagination.json +0 -1
- package/src/routes/props/PaginationItem.json +0 -1
- package/src/routes/props/Placeholder.json +0 -1
- package/src/routes/props/Popover.json +0 -1
- package/src/routes/props/Popper.json +0 -1
- package/src/routes/props/Progressbar.json +0 -1
- package/src/routes/props/Radio.json +0 -1
- package/src/routes/props/Range.json +0 -1
- package/src/routes/props/Rating.json +0 -1
- package/src/routes/props/RatingComment.json +0 -1
- package/src/routes/props/Review.json +0 -1
- package/src/routes/props/ScoreRating.json +0 -1
- package/src/routes/props/Search.json +0 -1
- package/src/routes/props/Secondary.json +0 -1
- package/src/routes/props/Select.json +0 -1
- package/src/routes/props/Sidebar.json +0 -1
- package/src/routes/props/SidebarBrand.json +0 -1
- package/src/routes/props/SidebarCta.json +0 -1
- package/src/routes/props/SidebarDropdownItem.json +0 -1
- package/src/routes/props/SidebarDropdownWrapper.json +0 -1
- package/src/routes/props/SidebarGroup.json +0 -1
- package/src/routes/props/SidebarItem.json +0 -1
- package/src/routes/props/SidebarWrapper.json +0 -1
- package/src/routes/props/Skeleton.json +0 -1
- package/src/routes/props/Slide.json +0 -1
- package/src/routes/props/Span.json +0 -1
- package/src/routes/props/Spinner.json +0 -1
- package/src/routes/props/Star.json +0 -1
- package/src/routes/props/TabHead.json +0 -1
- package/src/routes/props/TabHeadItem.json +0 -1
- package/src/routes/props/TabItem.json +0 -1
- package/src/routes/props/Table.json +0 -1
- package/src/routes/props/TableBodyCell.json +0 -1
- package/src/routes/props/TableBodyRow.json +0 -1
- package/src/routes/props/TableHead.json +0 -1
- package/src/routes/props/TableSearch.json +0 -1
- package/src/routes/props/Tabs.json +0 -1
- package/src/routes/props/TestimonialPlaceholder.json +0 -1
- package/src/routes/props/TextPlaceholder.json +0 -1
- package/src/routes/props/Textarea.json +0 -1
- package/src/routes/props/Thumbnail.json +0 -1
- package/src/routes/props/Timeline.json +0 -1
- package/src/routes/props/TimelineHorizontal.json +0 -1
- package/src/routes/props/TimelineItem.json +0 -1
- package/src/routes/props/TimelineItemHorizontal.json +0 -1
- package/src/routes/props/TimelineItemVertical.json +0 -1
- package/src/routes/props/Toast.json +0 -1
- package/src/routes/props/Toggle.json +0 -1
- package/src/routes/props/Toolbar.json +0 -1
- package/src/routes/props/ToolbarButton.json +0 -1
- package/src/routes/props/Tooltip.json +0 -1
- package/src/routes/props/Ul.json +0 -1
- package/src/routes/props/UserCircle.json +0 -1
- package/src/routes/props/Video.json +0 -1
- package/src/routes/props/VideoPlaceholder.json +0 -1
- package/src/routes/props/VoiceSearch.json +0 -1
- package/src/routes/props/WidgetPlaceholder.json +0 -1
- package/src/routes/props/Wrapper.json +0 -1
- package/src/routes/props/backdrop.json +0 -1
- package/src/routes/typography/[slug]/+page.js +0 -12
- package/src/routes/typography/[slug]/+page.svelte +0 -6
- package/src/routes/typography/blockquote.md +0 -249
- package/src/routes/typography/heading.md +0 -299
- package/src/routes/typography/hr.md +0 -151
- package/src/routes/typography/image.md +0 -259
- package/src/routes/typography/link.md +0 -159
- package/src/routes/typography/list.md +0 -487
- package/src/routes/typography/paragraph.md +0 -433
- package/src/routes/typography/text.md +0 -367
- package/src/routes/utilities/[slug]/+page.js +0 -12
- package/src/routes/utilities/[slug]/+page.svelte +0 -6
- package/src/routes/utilities/close-button.md +0 -76
- package/src/routes/utilities/colors.md +0 -90
- package/src/routes/utilities/label.md +0 -65
- package/src/routes/utilities/toolbar.md +0 -186
- package/src/routes/utils/CompoDescription.svelte +0 -7
- package/src/routes/utils/ExampleDiv.svelte +0 -10
- package/src/routes/utils/ExampleWrapper.svelte +0 -22
- package/src/routes/utils/GitHubSource.svelte +0 -18
- package/src/routes/utils/Htwo.svelte +0 -29
- package/src/routes/utils/MetaTag.svelte +0 -40
- package/src/routes/utils/TableDefaultRow.svelte +0 -73
- package/src/routes/utils/TableProp.svelte +0 -25
- package/src/routes/utils/index.ts +0 -91
- 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 +0 -4
- package/static/images/carousel-2.svg +0 -4
- package/static/images/carousel-3.svg +0 -4
- package/static/images/carousel-4.svg +0 -4
- package/static/images/carousel-5.svg +0 -4
- package/static/images/colors.webp +0 -0
- package/static/images/components/accordion-dark.svg +0 -40
- package/static/images/components/accordion.svg +0 -40
- package/static/images/components/alerts-dark.svg +0 -11
- package/static/images/components/alerts.svg +0 -11
- package/static/images/components/avatar-dark.svg +0 -117
- package/static/images/components/avatar.svg +0 -117
- package/static/images/components/badges-dark.svg +0 -5
- package/static/images/components/badges.svg +0 -5
- package/static/images/components/blockquote-dark.svg +0 -8
- package/static/images/components/blockquote.svg +0 -8
- package/static/images/components/breadcrumbs-dark.svg +0 -7
- package/static/images/components/breadcrumbs.svg +0 -7
- package/static/images/components/button-group-dark.svg +0 -10
- package/static/images/components/button-group.svg +0 -10
- package/static/images/components/buttons-dark.svg +0 -10
- package/static/images/components/buttons.svg +0 -10
- package/static/images/components/cards-dark.svg +0 -31
- package/static/images/components/cards.svg +0 -32
- package/static/images/components/carousel-dark.svg +0 -13
- package/static/images/components/carousel.svg +0 -13
- package/static/images/components/checkbox.svg +0 -14
- package/static/images/components/datepicker-dark.svg +0 -67
- package/static/images/components/datepicker.svg +0 -67
- package/static/images/components/drawer-dark.svg +0 -33
- package/static/images/components/drawer.svg +0 -33
- package/static/images/components/dropdown-dark.svg +0 -35
- package/static/images/components/dropdown.svg +0 -35
- package/static/images/components/file-input-dark.svg +0 -59
- package/static/images/components/file-input.svg +0 -46
- package/static/images/components/floating-label-dark.svg +0 -11
- package/static/images/components/floating-label.svg +0 -11
- package/static/images/components/footer-dark.svg +0 -52
- package/static/images/components/footer.svg +0 -50
- package/static/images/components/forms-dark.svg +0 -64
- package/static/images/components/forms.svg +0 -64
- package/static/images/components/heading-dark.svg +0 -5
- package/static/images/components/heading.svg +0 -5
- package/static/images/components/hr-dark.svg +0 -7
- package/static/images/components/hr.svg +0 -7
- package/static/images/components/image-dark.svg +0 -6
- package/static/images/components/image.svg +0 -6
- package/static/images/components/input-field-dark.svg +0 -65
- package/static/images/components/input-field.svg +0 -66
- package/static/images/components/keyboard-dark.svg +0 -460
- package/static/images/components/keyboard.svg +0 -462
- package/static/images/components/link-dark.svg +0 -4
- package/static/images/components/link.svg +0 -4
- package/static/images/components/list-dark.svg +0 -26
- package/static/images/components/list-group-dark.svg +0 -33
- package/static/images/components/list-group.svg +0 -53
- package/static/images/components/list.svg +0 -26
- package/static/images/components/mega-menu-dark.svg +0 -72
- package/static/images/components/mega-menu.svg +0 -72
- package/static/images/components/modal-dark.svg +0 -32
- package/static/images/components/modal.svg +0 -33
- package/static/images/components/navbar-dark.svg +0 -78
- package/static/images/components/navbar.svg +0 -78
- package/static/images/components/pagination-dark.svg +0 -50
- package/static/images/components/pagination.svg +0 -50
- package/static/images/components/paragraph-dark.svg +0 -13
- package/static/images/components/paragraph.svg +0 -13
- package/static/images/components/popover-dark.svg +0 -18
- package/static/images/components/popover.svg +0 -17
- package/static/images/components/progress-dark.svg +0 -10
- package/static/images/components/progress.svg +0 -10
- package/static/images/components/radio-dark.svg +0 -14
- package/static/images/components/radio.svg +0 -12
- package/static/images/components/range-slider-dark.svg +0 -38
- package/static/images/components/range-slider.svg +0 -38
- package/static/images/components/rating-dark.svg +0 -29
- package/static/images/components/rating.svg +0 -29
- package/static/images/components/search-input-dark.svg +0 -82
- package/static/images/components/search-input.svg +0 -82
- package/static/images/components/select-dark.svg +0 -64
- package/static/images/components/select.svg +0 -64
- package/static/images/components/sidebar-dark.svg +0 -17
- package/static/images/components/sidebar.svg +0 -18
- package/static/images/components/skeleton-dark.svg +0 -11
- package/static/images/components/skeleton.svg +0 -11
- package/static/images/components/spinner-dark.svg +0 -6
- package/static/images/components/spinner.svg +0 -6
- package/static/images/components/table-dark.svg +0 -42
- package/static/images/components/table.svg +0 -42
- package/static/images/components/tabs-dark.svg +0 -10
- package/static/images/components/tabs.svg +0 -10
- package/static/images/components/text-dark.svg +0 -11
- package/static/images/components/text.svg +0 -11
- package/static/images/components/textarea-dark.svg +0 -16
- package/static/images/components/textarea.svg +0 -16
- package/static/images/components/timeline-dark.svg +0 -20
- package/static/images/components/timeline.svg +0 -20
- package/static/images/components/toast-dark.svg +0 -49
- package/static/images/components/toast.svg +0 -49
- package/static/images/components/toggle-dark.svg +0 -12
- package/static/images/components/toggle.svg +0 -12
- package/static/images/components/tooltips-dark.svg +0 -7
- package/static/images/components/tooltips.svg +0 -7
- package/static/images/components/typography-dark.svg +0 -13
- package/static/images/components/typography.svg +0 -13
- package/static/images/components/video-dark.svg +0 -4
- package/static/images/components/video.svg +0 -4
- 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/favicon.png +0 -0
- package/static/images/favicon.svg +0 -49
- package/static/images/flowbite-svelte-icon-logo.svg +0 -49
- package/static/images/flowbite-svelte-icon.svg +0 -49
- package/static/images/flowbite-svelte-og-image.png +0 -0
- package/static/images/flowbite-svelte.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/site.webmanifest +0 -9
- package/static/videos/flowbite.mp4 +0 -0
- package/svelte.config.js +0 -24
- package/tailwind.config.cjs +0 -88
- package/tests/components.spec.ts +0 -176
- package/tests/extend.spec.ts +0 -13
- package/tests/forms.spec.ts +0 -62
- package/tests/page.spec.ts +0 -31
- package/tests/redirect.spec.ts +0 -176
- package/tests/typography.spec.ts +0 -52
- package/tests/utilities.spec.ts +0 -22
- package/tsconfig.json +0 -17
- package/vite.config.ts +0 -19
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
<svg width="330" height="220" viewBox="0 0 330 220" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect x="21.5" y="15.5" width="35" height="35" rx="3.5" fill="#374151"/>
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.2484 27.3516C42.4734 27.5766 42.5998 27.8818 42.5998 28.2C42.5998 28.5182 42.4734 28.8233 42.2484 29.0484L38.2968 33L42.2484 36.9516C42.467 37.1779 42.588 37.481 42.5852 37.7956C42.5825 38.1103 42.4563 38.4113 42.2338 38.6337C42.0113 38.8562 41.7103 38.9824 41.3957 38.9852C41.0811 38.9879 40.7779 38.8669 40.5516 38.6484L35.7516 33.8484C35.5266 33.6233 35.4003 33.3182 35.4003 33C35.4003 32.6818 35.5266 32.3766 35.7516 32.1516L40.5516 27.3516C40.7766 27.1266 41.0818 27.0002 41.4 27.0002C41.7182 27.0002 42.0234 27.1266 42.2484 27.3516V27.3516Z" fill="#9CA3AF"/>
|
|
4
|
-
<rect x="21.5" y="15.5" width="35" height="35" rx="3.5" stroke="#4B5563"/>
|
|
5
|
-
<rect x="81.5" y="15.5" width="35" height="35" rx="3.5" fill="#374151"/>
|
|
6
|
-
<rect x="94" y="28" width="10" height="10" rx="4" fill="#6B7280"/>
|
|
7
|
-
<rect x="81.5" y="15.5" width="35" height="35" rx="3.5" stroke="#4B5563"/>
|
|
8
|
-
<rect x="125.5" y="15.5" width="35" height="35" rx="3.5" fill="#374151"/>
|
|
9
|
-
<rect x="138" y="28" width="10" height="10" rx="4" fill="#6B7280"/>
|
|
10
|
-
<rect x="125.5" y="15.5" width="35" height="35" rx="3.5" stroke="#4B5563"/>
|
|
11
|
-
<rect x="169.5" y="15.5" width="35" height="35" rx="3.5" fill="#374151"/>
|
|
12
|
-
<rect x="182" y="28" width="10" height="10" rx="4" fill="#6B7280"/>
|
|
13
|
-
<rect x="169.5" y="15.5" width="35" height="35" rx="3.5" stroke="#4B5563"/>
|
|
14
|
-
<rect x="213.5" y="15.5" width="35" height="35" rx="3.5" fill="#374151"/>
|
|
15
|
-
<rect x="226" y="28" width="10" height="10" rx="4" fill="#6B7280"/>
|
|
16
|
-
<rect x="213.5" y="15.5" width="35" height="35" rx="3.5" stroke="#4B5563"/>
|
|
17
|
-
<rect x="273.5" y="15.5" width="35" height="35" rx="3.5" fill="#374151"/>
|
|
18
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M287.752 38.6485C287.527 38.4235 287.4 38.1183 287.4 37.8001C287.4 37.4819 287.527 37.1767 287.752 36.9517L291.703 33.0001L287.752 29.0485C287.533 28.8222 287.412 28.519 287.415 28.2044C287.418 27.8898 287.544 27.5888 287.766 27.3663C287.989 27.1438 288.29 27.0176 288.604 27.0149C288.919 27.0121 289.222 27.1331 289.448 27.3517L294.248 32.1517C294.473 32.3767 294.6 32.6819 294.6 33.0001C294.6 33.3183 294.473 33.6234 294.248 33.8485L289.448 38.6485C289.223 38.8734 288.918 38.9998 288.6 38.9998C288.282 38.9998 287.977 38.8734 287.752 38.6485Z" fill="#9CA3AF"/>
|
|
19
|
-
<rect x="273.5" y="15.5" width="35" height="35" rx="3.5" stroke="#4B5563"/>
|
|
20
|
-
<path d="M57.5 85V84.5H57H25C22.5147 84.5 20.5 86.5147 20.5 89V117C20.5 119.485 22.5147 121.5 25 121.5H57H57.5V121V85Z" fill="#374151"/>
|
|
21
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.2484 97.3516C42.4734 97.5766 42.5998 97.8818 42.5998 98.2C42.5998 98.5182 42.4734 98.8233 42.2484 99.0484L38.2968 103L42.2484 106.952C42.467 107.178 42.588 107.481 42.5852 107.796C42.5825 108.11 42.4563 108.411 42.2338 108.634C42.0113 108.856 41.7103 108.982 41.3957 108.985C41.0811 108.988 40.7779 108.867 40.5516 108.648L35.7516 103.848C35.5266 103.623 35.4003 103.318 35.4003 103C35.4003 102.682 35.5266 102.377 35.7516 102.152L40.5516 97.3516C40.7766 97.1266 41.0818 97.0002 41.4 97.0002C41.7182 97.0002 42.0234 97.1266 42.2484 97.3516V97.3516Z" fill="#9CA3AF"/>
|
|
22
|
-
<path d="M57.5 85V84.5H57H25C22.5147 84.5 20.5 86.5147 20.5 89V117C20.5 119.485 22.5147 121.5 25 121.5H57H57.5V121V85Z" stroke="#4B5563"/>
|
|
23
|
-
<rect x="56.5" y="84.5" width="37" height="37" fill="#374151"/>
|
|
24
|
-
<rect x="70" y="98" width="10" height="10" rx="4" fill="#6B7280"/>
|
|
25
|
-
<rect x="56.5" y="84.5" width="37" height="37" stroke="#4B5563"/>
|
|
26
|
-
<rect x="92.5" y="84.5" width="37" height="37" fill="#374151"/>
|
|
27
|
-
<rect x="106" y="98" width="10" height="10" rx="4" fill="#6B7280"/>
|
|
28
|
-
<rect x="92.5" y="84.5" width="37" height="37" stroke="#4B5563"/>
|
|
29
|
-
<rect x="128.5" y="84.5" width="37" height="37" fill="#374151"/>
|
|
30
|
-
<rect x="142" y="98" width="10" height="10" rx="4" fill="#6B7280"/>
|
|
31
|
-
<rect x="128.5" y="84.5" width="37" height="37" stroke="#4B5563"/>
|
|
32
|
-
<rect x="164.5" y="84.5" width="37" height="37" fill="#374151"/>
|
|
33
|
-
<rect x="178" y="98" width="10" height="10" rx="4" fill="#6B7280"/>
|
|
34
|
-
<rect x="164.5" y="84.5" width="37" height="37" stroke="#4B5563"/>
|
|
35
|
-
<rect x="200.5" y="84.5" width="37" height="37" fill="#374151"/>
|
|
36
|
-
<rect x="214" y="98" width="10" height="10" rx="4" fill="#6B7280"/>
|
|
37
|
-
<rect x="200.5" y="84.5" width="37" height="37" stroke="#4B5563"/>
|
|
38
|
-
<rect x="236.5" y="84.5" width="37" height="37" fill="#374151"/>
|
|
39
|
-
<rect x="250" y="98" width="10" height="10" rx="4" fill="#6B7280"/>
|
|
40
|
-
<rect x="236.5" y="84.5" width="37" height="37" stroke="#4B5563"/>
|
|
41
|
-
<path d="M273 84.5H272.5V85V121V121.5H273H305C307.485 121.5 309.5 119.485 309.5 117V89C309.5 86.5147 307.485 84.5 305 84.5H273Z" fill="#374151"/>
|
|
42
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M287.752 108.648C287.527 108.423 287.4 108.118 287.4 107.8C287.4 107.482 287.527 107.177 287.752 106.952L291.703 103L287.752 99.0485C287.533 98.8222 287.412 98.519 287.415 98.2044C287.418 97.8898 287.544 97.5888 287.766 97.3663C287.989 97.1438 288.29 97.0176 288.604 97.0149C288.919 97.0121 289.222 97.1331 289.448 97.3517L294.248 102.152C294.473 102.377 294.6 102.682 294.6 103C294.6 103.318 294.473 103.623 294.248 103.848L289.448 108.648C289.223 108.873 288.918 109 288.6 109C288.282 109 287.977 108.873 287.752 108.648Z" fill="#9CA3AF"/>
|
|
43
|
-
<path d="M273 84.5H272.5V85V121V121.5H273H305C307.485 121.5 309.5 119.485 309.5 117V89C309.5 86.5147 307.485 84.5 305 84.5H273Z" stroke="#4B5563"/>
|
|
44
|
-
<rect x="122.5" y="155" width="85" height="12" rx="6" fill="#9CA3AF"/>
|
|
45
|
-
<path d="M91 183C91 180.791 92.7909 179 95 179H165V205H95C92.7909 205 91 203.209 91 201V183Z" fill="#1C64F2"/>
|
|
46
|
-
<rect x="115" y="188" width="26" height="8" rx="2" fill="white"/>
|
|
47
|
-
<line x1="164.5" y1="205" x2="164.5" y2="179" stroke="#1A56DB"/>
|
|
48
|
-
<path d="M165 179H237C239.209 179 241 180.791 241 183V201C241 203.209 239.209 205 237 205H165V179Z" fill="#1C64F2"/>
|
|
49
|
-
<rect x="189" y="188" width="28" height="8" rx="2" fill="white"/>
|
|
50
|
-
</svg>
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
<svg width="330" height="220" viewBox="0 0 330 220" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect x="21.5" y="15.5" width="35" height="35" rx="3.5" fill="white"/>
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.2484 27.3516C42.4734 27.5766 42.5998 27.8818 42.5998 28.2C42.5998 28.5182 42.4734 28.8233 42.2484 29.0484L38.2968 33L42.2484 36.9516C42.467 37.1779 42.588 37.481 42.5852 37.7956C42.5825 38.1103 42.4563 38.4113 42.2338 38.6337C42.0113 38.8562 41.7103 38.9824 41.3957 38.9852C41.0811 38.9879 40.7779 38.8669 40.5516 38.6484L35.7516 33.8484C35.5266 33.6233 35.4003 33.3182 35.4003 33C35.4003 32.6818 35.5266 32.3766 35.7516 32.1516L40.5516 27.3516C40.7766 27.1266 41.0818 27.0002 41.4 27.0002C41.7182 27.0002 42.0234 27.1266 42.2484 27.3516V27.3516Z" fill="#9CA3AF"/>
|
|
4
|
-
<rect x="21.5" y="15.5" width="35" height="35" rx="3.5" stroke="#D1D5DB"/>
|
|
5
|
-
<rect x="81.5" y="15.5" width="35" height="35" rx="3.5" fill="white"/>
|
|
6
|
-
<rect x="94" y="28" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
7
|
-
<rect x="81.5" y="15.5" width="35" height="35" rx="3.5" stroke="#D1D5DB"/>
|
|
8
|
-
<rect x="125.5" y="15.5" width="35" height="35" rx="3.5" fill="white"/>
|
|
9
|
-
<rect x="138" y="28" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
10
|
-
<rect x="125.5" y="15.5" width="35" height="35" rx="3.5" stroke="#D1D5DB"/>
|
|
11
|
-
<rect x="169.5" y="15.5" width="35" height="35" rx="3.5" fill="white"/>
|
|
12
|
-
<rect x="182" y="28" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
13
|
-
<rect x="169.5" y="15.5" width="35" height="35" rx="3.5" stroke="#D1D5DB"/>
|
|
14
|
-
<rect x="213.5" y="15.5" width="35" height="35" rx="3.5" fill="white"/>
|
|
15
|
-
<rect x="226" y="28" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
16
|
-
<rect x="213.5" y="15.5" width="35" height="35" rx="3.5" stroke="#D1D5DB"/>
|
|
17
|
-
<rect x="273.5" y="15.5" width="35" height="35" rx="3.5" fill="white"/>
|
|
18
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M287.752 38.6485C287.527 38.4235 287.4 38.1183 287.4 37.8001C287.4 37.4819 287.527 37.1767 287.752 36.9517L291.703 33.0001L287.752 29.0485C287.533 28.8222 287.412 28.519 287.415 28.2044C287.418 27.8898 287.544 27.5888 287.766 27.3663C287.989 27.1438 288.29 27.0176 288.604 27.0149C288.919 27.0121 289.222 27.1331 289.448 27.3517L294.248 32.1517C294.473 32.3767 294.6 32.6819 294.6 33.0001C294.6 33.3183 294.473 33.6234 294.248 33.8485L289.448 38.6485C289.223 38.8734 288.918 38.9998 288.6 38.9998C288.282 38.9998 287.977 38.8734 287.752 38.6485Z" fill="#9CA3AF"/>
|
|
19
|
-
<rect x="273.5" y="15.5" width="35" height="35" rx="3.5" stroke="#D1D5DB"/>
|
|
20
|
-
<path d="M57.5 85V84.5H57H25C22.5147 84.5 20.5 86.5147 20.5 89V117C20.5 119.485 22.5147 121.5 25 121.5H57H57.5V121V85Z" fill="white"/>
|
|
21
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.2484 97.3516C42.4734 97.5766 42.5998 97.8818 42.5998 98.2C42.5998 98.5182 42.4734 98.8233 42.2484 99.0484L38.2968 103L42.2484 106.952C42.467 107.178 42.588 107.481 42.5852 107.796C42.5825 108.11 42.4563 108.411 42.2338 108.634C42.0113 108.856 41.7103 108.982 41.3957 108.985C41.0811 108.988 40.7779 108.867 40.5516 108.648L35.7516 103.848C35.5266 103.623 35.4003 103.318 35.4003 103C35.4003 102.682 35.5266 102.377 35.7516 102.152L40.5516 97.3516C40.7766 97.1266 41.0818 97.0002 41.4 97.0002C41.7182 97.0002 42.0234 97.1266 42.2484 97.3516V97.3516Z" fill="#9CA3AF"/>
|
|
22
|
-
<path d="M57.5 85V84.5H57H25C22.5147 84.5 20.5 86.5147 20.5 89V117C20.5 119.485 22.5147 121.5 25 121.5H57H57.5V121V85Z" stroke="#D1D5DB"/>
|
|
23
|
-
<rect x="56.5" y="84.5" width="37" height="37" fill="white"/>
|
|
24
|
-
<rect x="70" y="98" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
25
|
-
<rect x="56.5" y="84.5" width="37" height="37" stroke="#D1D5DB"/>
|
|
26
|
-
<rect x="92.5" y="84.5" width="37" height="37" fill="white"/>
|
|
27
|
-
<rect x="106" y="98" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
28
|
-
<rect x="92.5" y="84.5" width="37" height="37" stroke="#D1D5DB"/>
|
|
29
|
-
<rect x="128.5" y="84.5" width="37" height="37" fill="white"/>
|
|
30
|
-
<rect x="142" y="98" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
31
|
-
<rect x="128.5" y="84.5" width="37" height="37" stroke="#D1D5DB"/>
|
|
32
|
-
<rect x="164.5" y="84.5" width="37" height="37" fill="white"/>
|
|
33
|
-
<rect x="178" y="98" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
34
|
-
<rect x="164.5" y="84.5" width="37" height="37" stroke="#D1D5DB"/>
|
|
35
|
-
<rect x="200.5" y="84.5" width="37" height="37" fill="white"/>
|
|
36
|
-
<rect x="214" y="98" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
37
|
-
<rect x="200.5" y="84.5" width="37" height="37" stroke="#D1D5DB"/>
|
|
38
|
-
<rect x="236.5" y="84.5" width="37" height="37" fill="white"/>
|
|
39
|
-
<rect x="250" y="98" width="10" height="10" rx="4" fill="#D1D5DB"/>
|
|
40
|
-
<rect x="236.5" y="84.5" width="37" height="37" stroke="#D1D5DB"/>
|
|
41
|
-
<path d="M273 84.5H272.5V85V121V121.5H273H305C307.485 121.5 309.5 119.485 309.5 117V89C309.5 86.5147 307.485 84.5 305 84.5H273Z" fill="white"/>
|
|
42
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M287.752 108.648C287.527 108.423 287.4 108.118 287.4 107.8C287.4 107.482 287.527 107.177 287.752 106.952L291.703 103L287.752 99.0485C287.533 98.8222 287.412 98.519 287.415 98.2044C287.418 97.8898 287.544 97.5888 287.766 97.3663C287.989 97.1438 288.29 97.0176 288.604 97.0149C288.919 97.0121 289.222 97.1331 289.448 97.3517L294.248 102.152C294.473 102.377 294.6 102.682 294.6 103C294.6 103.318 294.473 103.623 294.248 103.848L289.448 108.648C289.223 108.873 288.918 109 288.6 109C288.282 109 287.977 108.873 287.752 108.648Z" fill="#9CA3AF"/>
|
|
43
|
-
<path d="M273 84.5H272.5V85V121V121.5H273H305C307.485 121.5 309.5 119.485 309.5 117V89C309.5 86.5147 307.485 84.5 305 84.5H273Z" stroke="#D1D5DB"/>
|
|
44
|
-
<rect x="122.5" y="155" width="85" height="12" rx="6" fill="#D1D5DB"/>
|
|
45
|
-
<path d="M91 183C91 180.791 92.7909 179 95 179H165V205H95C92.7909 205 91 203.209 91 201V183Z" fill="#1A56DB"/>
|
|
46
|
-
<rect x="115" y="188" width="26" height="8" rx="2" fill="white"/>
|
|
47
|
-
<line x1="164.5" y1="205" x2="164.5" y2="179" stroke="#1E429F"/>
|
|
48
|
-
<path d="M165 179H237C239.209 179 241 180.791 241 183V201C241 203.209 239.209 205 237 205H165V179Z" fill="#1A56DB"/>
|
|
49
|
-
<rect x="189" y="188" width="28" height="8" rx="2" fill="white"/>
|
|
50
|
-
</svg>
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect x="48" y="63.5" width="253" height="8" rx="4" fill="#6B7280"/>
|
|
3
|
-
<rect x="48" y="79.5" width="253" height="8" rx="4" fill="#4B5563"/>
|
|
4
|
-
<rect x="48" y="95.5" width="78" height="8" rx="4" fill="#4B5563"/>
|
|
5
|
-
<rect x="138" y="95.5" width="126" height="8" rx="4" fill="#6B7280"/>
|
|
6
|
-
<rect x="276" y="95.5" width="25" height="8" rx="4" fill="#4B5563"/>
|
|
7
|
-
<rect x="48" y="111.5" width="253" height="8" rx="4" fill="#4B5563"/>
|
|
8
|
-
<rect x="48" y="127.5" width="253" height="8" rx="4" fill="#4B5563"/>
|
|
9
|
-
<rect x="48" y="143.5" width="83" height="8" rx="4" fill="#6B7280"/>
|
|
10
|
-
<rect x="143" y="143.5" width="55" height="8" rx="4" fill="#4B5563"/>
|
|
11
|
-
<rect x="210" y="143.5" width="91" height="8" rx="4" fill="#4B5563"/>
|
|
12
|
-
<rect x="48" y="159.5" width="219" height="8" rx="4" fill="#4B5563"/>
|
|
13
|
-
</svg>
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect x="48" y="63.5" width="253" height="8" rx="4" fill="#E5E7EB"/>
|
|
3
|
-
<rect x="48" y="79.5" width="253" height="8" rx="4" fill="#D1D5DB"/>
|
|
4
|
-
<rect x="48" y="95.5" width="78" height="8" rx="4" fill="#D1D5DB"/>
|
|
5
|
-
<rect x="138" y="95.5" width="126" height="8" rx="4" fill="#E5E7EB"/>
|
|
6
|
-
<rect x="276" y="95.5" width="25" height="8" rx="4" fill="#D1D5DB"/>
|
|
7
|
-
<rect x="48" y="111.5" width="253" height="8" rx="4" fill="#D1D5DB"/>
|
|
8
|
-
<rect x="48" y="127.5" width="253" height="8" rx="4" fill="#D1D5DB"/>
|
|
9
|
-
<rect x="48" y="143.5" width="83" height="8" rx="4" fill="#E5E7EB"/>
|
|
10
|
-
<rect x="143" y="143.5" width="55" height="8" rx="4" fill="#D1D5DB"/>
|
|
11
|
-
<rect x="210" y="143.5" width="91" height="8" rx="4" fill="#D1D5DB"/>
|
|
12
|
-
<rect x="48" y="159.5" width="219" height="8" rx="4" fill="#D1D5DB"/>
|
|
13
|
-
</svg>
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect width="10.2379" height="9.774" transform="matrix(0.586967 -0.809611 0.586967 0.809611 169 148.289)" fill="#374151"/>
|
|
3
|
-
<rect x="86" y="21" width="176" height="129" rx="6" fill="#374151"/>
|
|
4
|
-
<rect width="169" height="93" transform="translate(92 24)" fill="#374151"/>
|
|
5
|
-
<path d="M97.5477 48.2877C99.821 47.0027 102.389 46.3294 105 46.3333C107.708 46.3333 110.251 47.0429 112.452 48.2877M108.25 39.8333C108.25 40.6953 107.908 41.5219 107.298 42.1314C106.689 42.7409 105.862 43.0833 105 43.0833C104.138 43.0833 103.311 42.7409 102.702 42.1314C102.092 41.5219 101.75 40.6953 101.75 39.8333C101.75 38.9714 102.092 38.1447 102.702 37.5352C103.311 36.9257 104.138 36.5833 105 36.5833C105.862 36.5833 106.689 36.9257 107.298 37.5352C107.908 38.1447 108.25 38.9714 108.25 39.8333ZM114.75 42C114.75 43.2804 114.498 44.5482 114.008 45.7312C113.518 46.9141 112.8 47.9889 111.894 48.8943C110.989 49.7997 109.914 50.5178 108.731 51.0078C107.548 51.4978 106.28 51.75 105 51.75C103.72 51.75 102.452 51.4978 101.269 51.0078C100.086 50.5178 99.0111 49.7997 98.1057 48.8943C97.2003 47.9889 96.4822 46.9141 95.9922 45.7312C95.5022 44.5482 95.25 43.2804 95.25 42C95.25 39.4141 96.2772 36.9342 98.1057 35.1057C99.9342 33.2772 102.414 32.25 105 32.25C107.586 32.25 110.066 33.2772 111.894 35.1057C113.723 36.9342 114.75 39.4141 114.75 42Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
<rect x="92" y="60" width="54" height="8" rx="2" fill="#9CA3AF"/>
|
|
7
|
-
<rect x="92" y="73" width="76" height="6" rx="2" fill="#6B7280"/>
|
|
8
|
-
<rect x="92" y="95" width="157" height="6" rx="2" fill="#6B7280"/>
|
|
9
|
-
<rect x="92" y="106" width="96" height="6" rx="2" fill="#6B7280"/>
|
|
10
|
-
<rect x="92" y="132" width="20" height="6" rx="2" fill="#9CA3AF"/>
|
|
11
|
-
<rect x="119" y="132" width="48" height="6" rx="2" fill="#6B7280"/>
|
|
12
|
-
<rect x="181" y="132" width="20" height="6" rx="2" fill="#9CA3AF"/>
|
|
13
|
-
<rect x="208" y="132" width="31" height="6" rx="2" fill="#6B7280"/>
|
|
14
|
-
<rect x="218" y="28" width="38.2963" height="16" rx="3" fill="#1A56DB"/>
|
|
15
|
-
<rect x="228" y="33.5" width="18.2963" height="5" rx="2" fill="white"/>
|
|
16
|
-
<rect x="99" y="163" width="151" height="35" rx="8" fill="#1A56DB"/>
|
|
17
|
-
<rect x="123" y="175.5" width="103" height="10" rx="2" fill="white"/>
|
|
18
|
-
</svg>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect width="10.2379" height="9.774" transform="matrix(0.586967 -0.809611 0.586967 0.809611 169 148.289)" fill="#F3F4F6"/>
|
|
3
|
-
<rect x="86" y="21" width="176" height="129" rx="6" fill="#F3F4F6"/>
|
|
4
|
-
<path d="M97.5477 48.2877C99.821 47.0027 102.389 46.3294 105 46.3333C107.708 46.3333 110.251 47.0429 112.452 48.2877M108.25 39.8333C108.25 40.6953 107.908 41.5219 107.298 42.1314C106.689 42.7409 105.862 43.0833 105 43.0833C104.138 43.0833 103.311 42.7409 102.702 42.1314C102.092 41.5219 101.75 40.6953 101.75 39.8333C101.75 38.9714 102.092 38.1447 102.702 37.5352C103.311 36.9257 104.138 36.5833 105 36.5833C105.862 36.5833 106.689 36.9257 107.298 37.5352C107.908 38.1447 108.25 38.9714 108.25 39.8333ZM114.75 42C114.75 43.2804 114.498 44.5482 114.008 45.7312C113.518 46.9141 112.8 47.9889 111.894 48.8943C110.989 49.7997 109.914 50.5178 108.731 51.0078C107.548 51.4978 106.28 51.75 105 51.75C103.72 51.75 102.452 51.4978 101.269 51.0078C100.086 50.5178 99.0111 49.7997 98.1057 48.8943C97.2003 47.9889 96.4822 46.9141 95.9922 45.7312C95.5022 44.5482 95.25 43.2804 95.25 42C95.25 39.4141 96.2772 36.9342 98.1057 35.1057C99.9342 33.2772 102.414 32.25 105 32.25C107.586 32.25 110.066 33.2772 111.894 35.1057C113.723 36.9342 114.75 39.4141 114.75 42Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<rect x="92" y="60" width="54" height="8" rx="2" fill="#9CA3AF"/>
|
|
6
|
-
<rect x="92" y="73" width="76" height="6" rx="2" fill="#D1D5DB"/>
|
|
7
|
-
<rect x="92" y="95" width="157" height="6" rx="2" fill="#E5E7EB"/>
|
|
8
|
-
<rect x="92" y="106" width="96" height="6" rx="2" fill="#E5E7EB"/>
|
|
9
|
-
<rect x="91.7037" y="132" width="20" height="6" rx="2" fill="#D1D5DB"/>
|
|
10
|
-
<rect x="118.704" y="132" width="48" height="6" rx="2" fill="#E5E7EB"/>
|
|
11
|
-
<rect x="181" y="132" width="20" height="6" rx="2" fill="#D1D5DB"/>
|
|
12
|
-
<rect x="208" y="132" width="31" height="6" rx="2" fill="#E5E7EB"/>
|
|
13
|
-
<rect x="218" y="28" width="38.2963" height="16" rx="3" fill="#1A56DB"/>
|
|
14
|
-
<rect x="228" y="33.5" width="18.2963" height="5" rx="2" fill="white"/>
|
|
15
|
-
<rect x="99" y="163" width="151" height="35" rx="8" fill="#1A56DB"/>
|
|
16
|
-
<rect x="123" y="175.5" width="103" height="10" rx="2" fill="white"/>
|
|
17
|
-
</svg>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="340" height="130" viewBox="0 0 340 130" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect x="12" y="110" width="315.08" height="12" rx="6" fill="#374151"/>
|
|
3
|
-
<rect x="12" y="110" width="99.8079" height="12" rx="6" fill="#6B7280"/>
|
|
4
|
-
<rect x="12" y="95" width="55.3654" height="5" rx="2.5" fill="#6B7280"/>
|
|
5
|
-
<rect x="12" y="59" width="315.08" height="12" rx="6" fill="#374151"/>
|
|
6
|
-
<rect x="12" y="59" width="189.353" height="12" rx="6" fill="#6B7280"/>
|
|
7
|
-
<rect x="272" y="44" width="55.3654" height="5" rx="2.5" fill="#6B7280"/>
|
|
8
|
-
<rect x="12" y="8" width="315.08" height="12" rx="6" fill="#374151"/>
|
|
9
|
-
<rect x="12" y="8" width="151.5" height="12" rx="6" fill="#6B7280"/>
|
|
10
|
-
</svg>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="340" height="130" viewBox="0 0 340 130" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect x="12" y="110" width="315.08" height="12" rx="6" fill="#D1D5DB"/>
|
|
3
|
-
<rect x="12" y="110" width="99.8079" height="12" rx="6" fill="#9CA3AF"/>
|
|
4
|
-
<rect x="12" y="95" width="55.3654" height="5" rx="2.5" fill="#D1D5DB"/>
|
|
5
|
-
<rect x="12" y="59" width="315.08" height="12" rx="6" fill="#D1D5DB"/>
|
|
6
|
-
<rect x="12" y="59" width="189.353" height="12" rx="6" fill="#9CA3AF"/>
|
|
7
|
-
<rect x="272" y="44" width="55.3654" height="5" rx="2.5" fill="#D1D5DB"/>
|
|
8
|
-
<rect x="12" y="8" width="315.08" height="12" rx="6" fill="#D1D5DB"/>
|
|
9
|
-
<rect x="12" y="8" width="151.5" height="12" rx="6" fill="#9CA3AF"/>
|
|
10
|
-
</svg>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<svg width="159" height="78" viewBox="0 0 159 78" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect x="1" y="1" width="13" height="13" rx="6.5" fill="#374151"/>
|
|
3
|
-
<circle cx="7.5" cy="7.5" r="6.5" fill="#374151"/>
|
|
4
|
-
<rect x="1" y="1" width="13" height="13" rx="6.5" stroke="#6B7280" stroke-width="1.4"/>
|
|
5
|
-
<rect x="24" y="5" width="74.9508" height="5" rx="2" fill="#9CA3AF"/>
|
|
6
|
-
<circle cx="8" cy="39" r="7" fill="#1C64F2"/>
|
|
7
|
-
<circle cx="7.99994" cy="38.9999" r="3.76923" fill="#374151"/>
|
|
8
|
-
<rect x="23.5315" y="36.4375" width="74.95" height="5" rx="2" fill="#9CA3AF"/>
|
|
9
|
-
<rect x="1" y="63.5" width="13" height="13" rx="6.5" fill="#374151"/>
|
|
10
|
-
<circle cx="7.5" cy="70" r="6.5" fill="#374151"/>
|
|
11
|
-
<rect x="1" y="63.5" width="13" height="13" rx="6.5" stroke="#6B7280" stroke-width="1.4"/>
|
|
12
|
-
<rect x="24" y="63" width="74.9508" height="5" rx="2" fill="#9CA3AF"/>
|
|
13
|
-
<rect x="24" y="74" width="128.278" height="3" rx="1.5" fill="#6B7280"/>
|
|
14
|
-
</svg>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<svg width="159" height="78" viewBox="0 0 159 78" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<circle cx="7.5" cy="7.5" r="6.5" fill="#F9FAFB"/>
|
|
3
|
-
<rect x="1" y="1" width="13" height="13" rx="6.5" stroke="#D1D5DB" stroke-width="1.4"/>
|
|
4
|
-
<rect x="24" y="5" width="74.9508" height="5" rx="2" fill="#9CA3AF"/>
|
|
5
|
-
<circle cx="8" cy="39" r="7" fill="#1C64F2"/>
|
|
6
|
-
<circle cx="7.99994" cy="38.9999" r="3.76923" fill="#F9FAFB"/>
|
|
7
|
-
<rect x="23.5315" y="36.4375" width="74.95" height="5" rx="2" fill="#9CA3AF"/>
|
|
8
|
-
<circle cx="7.5" cy="70" r="6.5" fill="#F9FAFB"/>
|
|
9
|
-
<rect x="1" y="63.5" width="13" height="13" rx="6.5" stroke="#D1D5DB" stroke-width="1.4"/>
|
|
10
|
-
<rect x="24" y="63" width="74.9508" height="5" rx="2" fill="#9CA3AF"/>
|
|
11
|
-
<rect x="24" y="74" width="128.278" height="3" rx="1.5" fill="#D1D5DB"/>
|
|
12
|
-
</svg>
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
<svg width="316" height="88" viewBox="0 0 316 88" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect x="0.5" y="8" width="315" height="8" rx="4" fill="#4B5563"/>
|
|
3
|
-
<rect x="0.5" y="8" width="256" height="8" rx="4" fill="#1C64F2"/>
|
|
4
|
-
<g filter="url(#filter0_d_2666_7511)">
|
|
5
|
-
<rect width="20" height="20" rx="10" transform="matrix(-1 0 0 1 256.5 2)" fill="white"/>
|
|
6
|
-
<circle cx="246.5" cy="12" r="10" fill="#9CA3AF"/>
|
|
7
|
-
<rect x="0.5" y="-0.5" width="21" height="21" rx="10.5" transform="matrix(-1 0 0 1 257.5 2)" stroke="#9CA3AF"/>
|
|
8
|
-
</g>
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7596 65.6912C11.9788 65.7821 12.1661 65.9359 12.2979 66.1333C12.4297 66.3307 12.5 66.5627 12.5 66.8V81.2C12.4999 81.4373 12.4295 81.6692 12.2976 81.8665C12.1658 82.0638 11.9784 82.2176 11.7591 82.3084C11.5399 82.3992 11.2987 82.423 11.0659 82.3767C10.8332 82.3304 10.6194 82.2162 10.4516 82.0484L6.00315 77.6H2.89995C2.58169 77.6 2.27647 77.4736 2.05142 77.2485C1.82638 77.0235 1.69995 76.7183 1.69995 76.4V71.6C1.69995 71.2817 1.82638 70.9765 2.05142 70.7515C2.27647 70.5264 2.58169 70.4 2.89995 70.4H6.00315L10.4516 65.9516C10.6194 65.7837 10.8332 65.6693 11.066 65.623C11.2989 65.5766 11.5402 65.6003 11.7596 65.6912V65.6912ZM15.2516 70.7516C15.4766 70.5266 15.7818 70.4002 16.1 70.4002C16.4181 70.4002 16.7233 70.5266 16.9483 70.7516L18.5 72.3032L20.0515 70.7516C20.1622 70.637 20.2947 70.5456 20.4411 70.4827C20.5875 70.4198 20.7449 70.3867 20.9043 70.3853C21.0636 70.3839 21.2216 70.4143 21.3691 70.4746C21.5166 70.5349 21.6506 70.624 21.7632 70.7367C21.8759 70.8494 21.965 70.9834 22.0253 71.1308C22.0857 71.2783 22.116 71.4363 22.1147 71.5957C22.1133 71.755 22.0802 71.9125 22.0173 72.0589C21.9544 72.2053 21.863 72.3377 21.7484 72.4484L20.1967 74L21.7484 75.5516C21.9669 75.7779 22.0879 76.081 22.0852 76.3957C22.0824 76.7103 21.9562 77.0113 21.7337 77.2338C21.5112 77.4563 21.2103 77.5825 20.8956 77.5852C20.581 77.5879 20.2779 77.467 20.0515 77.2484L18.5 75.6968L16.9483 77.2484C16.722 77.467 16.4189 77.5879 16.1043 77.5852C15.7896 77.5825 15.4887 77.4563 15.2662 77.2338C15.0437 77.0113 14.9175 76.7103 14.9147 76.3957C14.912 76.081 15.033 75.7779 15.2516 75.5516L16.8032 74L15.2516 72.4484C15.0266 72.2234 14.9002 71.9182 14.9002 71.6C14.9002 71.2818 15.0266 70.9766 15.2516 70.7516V70.7516Z" fill="#9CA3AF"/>
|
|
10
|
-
<rect x="36.5" y="70" width="174" height="8" rx="4" fill="#1E429F"/>
|
|
11
|
-
<rect x="36" y="70" width="114" height="8" rx="4" fill="#1C64F2"/>
|
|
12
|
-
<g filter="url(#filter1_d_2666_7511)">
|
|
13
|
-
<rect width="20" height="20" rx="10" transform="matrix(-1 0 0 1 150 64)" fill="#9CA3AF"/>
|
|
14
|
-
<circle cx="140" cy="74" r="10" fill="#9CA3AF"/>
|
|
15
|
-
<rect x="0.5" y="-0.5" width="21" height="21" rx="10.5" transform="matrix(-1 0 0 1 151 64)" stroke="#9CA3AF"/>
|
|
16
|
-
</g>
|
|
17
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M233.76 65.6913C233.979 65.7822 234.166 65.9361 234.298 66.1334C234.43 66.3308 234.5 66.5628 234.5 66.8001V81.2001C234.5 81.4374 234.429 81.6694 234.298 81.8667C234.166 82.064 233.978 82.2177 233.759 82.3085C233.54 82.3993 233.299 82.4231 233.066 82.3768C232.833 82.3305 232.619 82.2163 232.452 82.0485L228.003 77.6001H224.9C224.582 77.6001 224.276 77.4737 224.051 77.2486C223.826 77.0236 223.7 76.7184 223.7 76.4001V71.6001C223.7 71.2819 223.826 70.9766 224.051 70.7516C224.276 70.5265 224.582 70.4001 224.9 70.4001H228.003L232.452 65.9517C232.619 65.7838 232.833 65.6694 233.066 65.6231C233.299 65.5767 233.54 65.6005 233.76 65.6913V65.6913ZM240.088 65.5149C240.313 65.29 240.619 65.1636 240.937 65.1636C241.255 65.1636 241.56 65.29 241.785 65.5149C242.901 66.6281 243.786 67.9507 244.389 69.4069C244.992 70.863 245.302 72.424 245.3 74.0001C245.302 75.5762 244.992 77.1372 244.389 78.5933C243.786 80.0495 242.901 81.3721 241.785 82.4853C241.559 82.7039 241.256 82.8249 240.941 82.8221C240.626 82.8194 240.325 82.6932 240.103 82.4707C239.88 82.2482 239.754 81.9472 239.752 81.6326C239.749 81.318 239.87 81.0148 240.088 80.7885C240.981 79.8982 241.689 78.8401 242.172 77.6751C242.654 76.51 242.902 75.2611 242.9 74.0001C242.9 71.3481 241.827 68.9505 240.088 67.2117C239.863 66.9867 239.737 66.6815 239.737 66.3633C239.737 66.0451 239.863 65.74 240.088 65.5149V65.5149ZM236.694 68.9085C236.805 68.7969 236.937 68.7084 237.083 68.648C237.229 68.5877 237.385 68.5566 237.543 68.5566C237.7 68.5566 237.856 68.5877 238.002 68.648C238.148 68.7084 238.28 68.7969 238.392 68.9085C239.061 69.5765 239.592 70.3702 239.954 71.244C240.316 72.1177 240.501 73.0544 240.5 74.0001C240.501 74.9458 240.315 75.8825 239.954 76.7562C239.592 77.63 239.061 78.4237 238.392 79.0917C238.166 79.3169 237.861 79.4434 237.543 79.4434C237.224 79.4434 236.919 79.3169 236.694 79.0917C236.468 78.8665 236.342 78.5612 236.342 78.2427C236.342 77.9243 236.468 77.6189 236.694 77.3937C237.14 76.9487 237.494 76.4198 237.736 75.8374C237.977 75.255 238.101 74.6306 238.1 74.0001C238.101 73.3697 237.977 72.7452 237.736 72.1628C237.494 71.5804 237.14 71.0515 236.694 70.6065C236.582 70.4951 236.493 70.3627 236.433 70.217C236.373 70.0714 236.342 69.9152 236.342 69.7575C236.342 69.5998 236.373 69.4437 236.433 69.298C236.493 69.1523 236.582 69.02 236.694 68.9085V68.9085Z" fill="#9CA3AF"/>
|
|
18
|
-
<defs>
|
|
19
|
-
<filter id="filter0_d_2666_7511" x="233.5" y="0" width="26" height="26" 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="1"/>
|
|
23
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
24
|
-
<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"/>
|
|
25
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2666_7511"/>
|
|
26
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2666_7511" result="shape"/>
|
|
27
|
-
</filter>
|
|
28
|
-
<filter id="filter1_d_2666_7511" x="127" y="62" width="26" height="26" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
29
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
30
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
31
|
-
<feOffset dy="1"/>
|
|
32
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
33
|
-
<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"/>
|
|
34
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2666_7511"/>
|
|
35
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2666_7511" result="shape"/>
|
|
36
|
-
</filter>
|
|
37
|
-
</defs>
|
|
38
|
-
</svg>
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
<svg width="316" height="88" viewBox="0 0 316 88" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect x="0.5" y="8" width="315" height="8" rx="4" fill="#E5E7EB"/>
|
|
3
|
-
<rect x="0.5" y="8" width="256" height="8" rx="4" fill="#1C64F2"/>
|
|
4
|
-
<g filter="url(#filter0_d_2666_7497)">
|
|
5
|
-
<rect width="20" height="20" rx="10" transform="matrix(-1 0 0 1 256.5 2)" fill="white"/>
|
|
6
|
-
<circle cx="246.5" cy="12" r="10" fill="white"/>
|
|
7
|
-
<rect x="0.5" y="-0.5" width="21" height="21" rx="10.5" transform="matrix(-1 0 0 1 257.5 2)" stroke="#E5E7EB"/>
|
|
8
|
-
</g>
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7596 65.6912C11.9788 65.7821 12.1661 65.9359 12.2979 66.1333C12.4297 66.3307 12.5 66.5627 12.5 66.8V81.2C12.4999 81.4373 12.4295 81.6692 12.2976 81.8665C12.1658 82.0638 11.9784 82.2176 11.7591 82.3084C11.5399 82.3992 11.2987 82.423 11.0659 82.3767C10.8332 82.3304 10.6194 82.2162 10.4516 82.0484L6.00315 77.6H2.89995C2.58169 77.6 2.27647 77.4736 2.05142 77.2485C1.82638 77.0235 1.69995 76.7183 1.69995 76.4V71.6C1.69995 71.2817 1.82638 70.9765 2.05142 70.7515C2.27647 70.5264 2.58169 70.4 2.89995 70.4H6.00315L10.4516 65.9516C10.6194 65.7837 10.8332 65.6693 11.066 65.623C11.2989 65.5766 11.5402 65.6003 11.7596 65.6912V65.6912ZM15.2516 70.7516C15.4766 70.5266 15.7818 70.4002 16.1 70.4002C16.4181 70.4002 16.7233 70.5266 16.9483 70.7516L18.5 72.3032L20.0515 70.7516C20.1622 70.637 20.2947 70.5456 20.4411 70.4827C20.5875 70.4198 20.7449 70.3867 20.9043 70.3853C21.0636 70.3839 21.2216 70.4143 21.3691 70.4746C21.5166 70.5349 21.6506 70.624 21.7632 70.7367C21.8759 70.8494 21.965 70.9834 22.0253 71.1308C22.0857 71.2783 22.116 71.4363 22.1147 71.5957C22.1133 71.755 22.0802 71.9125 22.0173 72.0589C21.9544 72.2053 21.863 72.3377 21.7484 72.4484L20.1967 74L21.7484 75.5516C21.9669 75.7779 22.0879 76.081 22.0852 76.3957C22.0824 76.7103 21.9562 77.0113 21.7337 77.2338C21.5112 77.4563 21.2103 77.5825 20.8956 77.5852C20.581 77.5879 20.2779 77.467 20.0515 77.2484L18.5 75.6968L16.9483 77.2484C16.722 77.467 16.4189 77.5879 16.1043 77.5852C15.7896 77.5825 15.4887 77.4563 15.2662 77.2338C15.0437 77.0113 14.9175 76.7103 14.9147 76.3957C14.912 76.081 15.033 75.7779 15.2516 75.5516L16.8032 74L15.2516 72.4484C15.0266 72.2234 14.9002 71.9182 14.9002 71.6C14.9002 71.2818 15.0266 70.9766 15.2516 70.7516V70.7516Z" fill="#6B7280"/>
|
|
10
|
-
<rect x="36.5" y="70" width="174" height="8" rx="4" fill="#A4CAFE"/>
|
|
11
|
-
<rect x="36" y="70" width="114" height="8" rx="4" fill="#1C64F2"/>
|
|
12
|
-
<g filter="url(#filter1_d_2666_7497)">
|
|
13
|
-
<rect width="20" height="20" rx="10" transform="matrix(-1 0 0 1 150 64)" fill="white"/>
|
|
14
|
-
<circle cx="140" cy="74" r="10" fill="white"/>
|
|
15
|
-
<rect x="0.5" y="-0.5" width="21" height="21" rx="10.5" transform="matrix(-1 0 0 1 151 64)" stroke="#E5E7EB"/>
|
|
16
|
-
</g>
|
|
17
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M233.76 65.6913C233.979 65.7822 234.166 65.9361 234.298 66.1334C234.43 66.3308 234.5 66.5628 234.5 66.8001V81.2001C234.5 81.4374 234.429 81.6694 234.298 81.8667C234.166 82.064 233.978 82.2177 233.759 82.3085C233.54 82.3993 233.299 82.4231 233.066 82.3768C232.833 82.3305 232.619 82.2163 232.452 82.0485L228.003 77.6001H224.9C224.582 77.6001 224.276 77.4737 224.051 77.2486C223.826 77.0236 223.7 76.7184 223.7 76.4001V71.6001C223.7 71.2819 223.826 70.9766 224.051 70.7516C224.276 70.5265 224.582 70.4001 224.9 70.4001H228.003L232.452 65.9517C232.619 65.7838 232.833 65.6694 233.066 65.6231C233.299 65.5767 233.54 65.6005 233.76 65.6913V65.6913ZM240.088 65.5149C240.313 65.29 240.619 65.1636 240.937 65.1636C241.255 65.1636 241.56 65.29 241.785 65.5149C242.901 66.6281 243.786 67.9507 244.389 69.4069C244.992 70.863 245.302 72.424 245.3 74.0001C245.302 75.5762 244.992 77.1372 244.389 78.5933C243.786 80.0495 242.901 81.3721 241.785 82.4853C241.559 82.7039 241.256 82.8249 240.941 82.8221C240.626 82.8194 240.325 82.6932 240.103 82.4707C239.88 82.2482 239.754 81.9472 239.752 81.6326C239.749 81.318 239.87 81.0148 240.088 80.7885C240.981 79.8982 241.689 78.8401 242.172 77.6751C242.654 76.51 242.902 75.2611 242.9 74.0001C242.9 71.3481 241.827 68.9505 240.088 67.2117C239.863 66.9867 239.737 66.6815 239.737 66.3633C239.737 66.0451 239.863 65.74 240.088 65.5149V65.5149ZM236.694 68.9085C236.805 68.7969 236.937 68.7084 237.083 68.648C237.229 68.5877 237.385 68.5566 237.543 68.5566C237.7 68.5566 237.856 68.5877 238.002 68.648C238.148 68.7084 238.28 68.7969 238.392 68.9085C239.061 69.5765 239.592 70.3702 239.954 71.244C240.316 72.1177 240.501 73.0544 240.5 74.0001C240.501 74.9458 240.315 75.8825 239.954 76.7562C239.592 77.63 239.061 78.4237 238.392 79.0917C238.166 79.3169 237.861 79.4434 237.543 79.4434C237.224 79.4434 236.919 79.3169 236.694 79.0917C236.468 78.8665 236.342 78.5612 236.342 78.2427C236.342 77.9243 236.468 77.6189 236.694 77.3937C237.14 76.9487 237.494 76.4198 237.736 75.8374C237.977 75.255 238.101 74.6306 238.1 74.0001C238.101 73.3697 237.977 72.7452 237.736 72.1628C237.494 71.5804 237.14 71.0515 236.694 70.6065C236.582 70.4951 236.493 70.3627 236.433 70.217C236.373 70.0714 236.342 69.9152 236.342 69.7575C236.342 69.5998 236.373 69.4437 236.433 69.298C236.493 69.1523 236.582 69.02 236.694 68.9085V68.9085Z" fill="#6B7280"/>
|
|
18
|
-
<defs>
|
|
19
|
-
<filter id="filter0_d_2666_7497" x="233.5" y="0" width="26" height="26" 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="1"/>
|
|
23
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
24
|
-
<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"/>
|
|
25
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2666_7497"/>
|
|
26
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2666_7497" result="shape"/>
|
|
27
|
-
</filter>
|
|
28
|
-
<filter id="filter1_d_2666_7497" x="127" y="62" width="26" height="26" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
29
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
30
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
31
|
-
<feOffset dy="1"/>
|
|
32
|
-
<feGaussianBlur stdDeviation="1"/>
|
|
33
|
-
<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"/>
|
|
34
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2666_7497"/>
|
|
35
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2666_7497" result="shape"/>
|
|
36
|
-
</filter>
|
|
37
|
-
</defs>
|
|
38
|
-
</svg>
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
<svg width="216" height="126" viewBox="0 0 216 126" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M8.6441 2.63437C8.9141 1.80547 10.0868 1.80547 10.3559 2.63437L11.3189 5.59717C11.3777 5.77761 11.4921 5.93483 11.6457 6.04636C11.7992 6.1579 11.9841 6.21803 12.1739 6.21817H15.2897C16.1618 6.21817 16.5236 7.33417 15.8189 7.84717L13.2989 9.67777C13.145 9.7894 13.0305 9.94688 12.9716 10.1276C12.9127 10.3084 12.9126 10.5031 12.9713 10.684L13.9343 13.6468C14.2043 14.4757 13.2548 15.166 12.5483 14.653L10.0283 12.8224C9.87459 12.7108 9.6895 12.6507 9.49955 12.6507C9.3096 12.6507 9.12452 12.7108 8.9708 12.8224L6.4508 14.653C5.7452 15.166 4.7966 14.4757 5.0657 13.6468L6.0287 10.684C6.08736 10.5031 6.08725 10.3084 6.0284 10.1276C5.96955 9.94688 5.85497 9.7894 5.7011 9.67777L3.182 7.84807C2.4773 7.33507 2.84 6.21907 3.7112 6.21907H6.8261C7.01604 6.21912 7.20113 6.15907 7.35487 6.04753C7.50861 5.93598 7.62312 5.77866 7.682 5.59807L8.645 2.63527L8.6441 2.63437Z" fill="#FACA15"/>
|
|
3
|
-
<path d="M27.6441 2.63437C27.9141 1.80547 29.0868 1.80547 29.3559 2.63437L30.3189 5.59717C30.3777 5.77761 30.4921 5.93483 30.6457 6.04636C30.7992 6.1579 30.9841 6.21803 31.1739 6.21817H34.2897C35.1618 6.21817 35.5236 7.33417 34.8189 7.84717L32.2989 9.67777C32.145 9.7894 32.0305 9.94688 31.9716 10.1276C31.9127 10.3084 31.9126 10.5031 31.9713 10.684L32.9343 13.6468C33.2043 14.4757 32.2548 15.166 31.5483 14.653L29.0283 12.8224C28.8746 12.7108 28.6895 12.6507 28.4995 12.6507C28.3096 12.6507 28.1245 12.7108 27.9708 12.8224L25.4508 14.653C24.7452 15.166 23.7966 14.4757 24.0657 13.6468L25.0287 10.684C25.0874 10.5031 25.0873 10.3084 25.0284 10.1276C24.9695 9.94688 24.855 9.7894 24.7011 9.67777L22.182 7.84807C21.4773 7.33507 21.84 6.21907 22.7112 6.21907H25.8261C26.016 6.21912 26.2011 6.15907 26.3549 6.04753C26.5086 5.93598 26.6231 5.77866 26.682 5.59807L27.645 2.63527L27.6441 2.63437Z" fill="#FACA15"/>
|
|
4
|
-
<path d="M46.6441 2.63437C46.9141 1.80547 48.0868 1.80547 48.3559 2.63437L49.3189 5.59717C49.3777 5.77761 49.4921 5.93483 49.6457 6.04636C49.7992 6.1579 49.9841 6.21803 50.1739 6.21817H53.2897C54.1618 6.21817 54.5236 7.33417 53.8189 7.84717L51.2989 9.67777C51.145 9.7894 51.0305 9.94688 50.9716 10.1276C50.9127 10.3084 50.9126 10.5031 50.9713 10.684L51.9343 13.6468C52.2043 14.4757 51.2548 15.166 50.5483 14.653L48.0283 12.8224C47.8746 12.7108 47.6895 12.6507 47.4995 12.6507C47.3096 12.6507 47.1245 12.7108 46.9708 12.8224L44.4508 14.653C43.7452 15.166 42.7966 14.4757 43.0657 13.6468L44.0287 10.684C44.0874 10.5031 44.0873 10.3084 44.0284 10.1276C43.9695 9.94688 43.855 9.7894 43.7011 9.67777L41.182 7.84807C40.4773 7.33507 40.84 6.21907 41.7112 6.21907H44.8261C45.016 6.21912 45.2011 6.15907 45.3549 6.04753C45.5086 5.93598 45.6231 5.77866 45.682 5.59807L46.645 2.63527L46.6441 2.63437Z" fill="#FACA15"/>
|
|
5
|
-
<path d="M65.6441 2.63437C65.9141 1.80547 67.0868 1.80547 67.3559 2.63437L68.3189 5.59717C68.3777 5.77761 68.4921 5.93483 68.6457 6.04636C68.7992 6.1579 68.9841 6.21803 69.1739 6.21817H72.2897C73.1618 6.21817 73.5236 7.33417 72.8189 7.84717L70.2989 9.67777C70.145 9.7894 70.0305 9.94688 69.9716 10.1276C69.9128 10.3084 69.9126 10.5031 69.9713 10.684L70.9343 13.6468C71.2043 14.4757 70.2548 15.166 69.5483 14.653L67.0283 12.8224C66.8746 12.7108 66.6895 12.6507 66.4996 12.6507C66.3096 12.6507 66.1245 12.7108 65.9708 12.8224L63.4508 14.653C62.7452 15.166 61.7966 14.4757 62.0657 13.6468L63.0287 10.684C63.0874 10.5031 63.0873 10.3084 63.0284 10.1276C62.9696 9.94688 62.855 9.7894 62.7011 9.67777L60.182 7.84807C59.4773 7.33507 59.84 6.21907 60.7112 6.21907H63.8261C64.016 6.21912 64.2011 6.15907 64.3549 6.04753C64.5086 5.93598 64.6231 5.77866 64.682 5.59807L65.645 2.63527L65.6441 2.63437Z" fill="#FACA15"/>
|
|
6
|
-
<path d="M84.6441 2.63437C84.9141 1.80547 86.0868 1.80547 86.3559 2.63437L87.3189 5.59717C87.3777 5.77761 87.4921 5.93483 87.6457 6.04636C87.7992 6.1579 87.9841 6.21803 88.1739 6.21817H91.2897C92.1618 6.21817 92.5236 7.33417 91.8189 7.84717L89.2989 9.67777C89.145 9.7894 89.0305 9.94688 88.9716 10.1276C88.9128 10.3084 88.9126 10.5031 88.9713 10.684L89.9343 13.6468C90.2043 14.4757 89.2548 15.166 88.5483 14.653L86.0283 12.8224C85.8746 12.7108 85.6895 12.6507 85.4996 12.6507C85.3096 12.6507 85.1245 12.7108 84.9708 12.8224L82.4508 14.653C81.7452 15.166 80.7966 14.4757 81.0657 13.6468L82.0287 10.684C82.0874 10.5031 82.0873 10.3084 82.0284 10.1276C81.9696 9.94688 81.855 9.7894 81.7011 9.67777L79.182 7.84807C78.4773 7.33507 78.84 6.21907 79.7112 6.21907H82.8261C83.016 6.21912 83.2011 6.15907 83.3549 6.04753C83.5086 5.93598 83.6231 5.77866 83.682 5.59807L84.645 2.63527L84.6441 2.63437Z" fill="#4B5563"/>
|
|
7
|
-
<path d="M8.6441 32.6344C8.9141 31.8055 10.0868 31.8055 10.3559 32.6344L11.3189 35.5972C11.3777 35.7776 11.4921 35.9348 11.6457 36.0464C11.7992 36.1579 11.9841 36.218 12.1739 36.2182H15.2897C16.1618 36.2182 16.5236 37.3342 15.8189 37.8472L13.2989 39.6778C13.145 39.7894 13.0305 39.9469 12.9716 40.1276C12.9127 40.3084 12.9126 40.5031 12.9713 40.684L13.9343 43.6468C14.2043 44.4757 13.2548 45.166 12.5483 44.653L10.0283 42.8224C9.87459 42.7108 9.6895 42.6507 9.49955 42.6507C9.3096 42.6507 9.12452 42.7108 8.9708 42.8224L6.4508 44.653C5.7452 45.166 4.7966 44.4757 5.0657 43.6468L6.0287 40.684C6.08736 40.5031 6.08725 40.3084 6.0284 40.1276C5.96955 39.9469 5.85497 39.7894 5.7011 39.6778L3.182 37.8481C2.4773 37.3351 2.84 36.2191 3.7112 36.2191H6.8261C7.01604 36.2191 7.20113 36.1591 7.35487 36.0475C7.50861 35.936 7.62312 35.7787 7.682 35.5981L8.645 32.6353L8.6441 32.6344Z" fill="#FACA15"/>
|
|
8
|
-
<rect x="21.5" y="37" width="17" height="4" rx="2" fill="#6B7280"/>
|
|
9
|
-
<rect x="44.5" y="37" width="36" height="4" rx="2" fill="#9CA3AF"/>
|
|
10
|
-
<path d="M8.6441 62.6344C8.9141 61.8055 10.0868 61.8055 10.3559 62.6344L11.3189 65.5972C11.3777 65.7776 11.4921 65.9348 11.6457 66.0464C11.7992 66.1579 11.9841 66.218 12.1739 66.2182H15.2897C16.1618 66.2182 16.5236 67.3342 15.8189 67.8472L13.2989 69.6778C13.145 69.7894 13.0305 69.9469 12.9716 70.1276C12.9127 70.3084 12.9126 70.5031 12.9713 70.684L13.9343 73.6468C14.2043 74.4757 13.2548 75.166 12.5483 74.653L10.0283 72.8224C9.87459 72.7108 9.6895 72.6507 9.49955 72.6507C9.3096 72.6507 9.12452 72.7108 8.9708 72.8224L6.4508 74.653C5.7452 75.166 4.7966 74.4757 5.0657 73.6468L6.0287 70.684C6.08736 70.5031 6.08725 70.3084 6.0284 70.1276C5.96955 69.9469 5.85497 69.7894 5.7011 69.6778L3.182 67.8481C2.4773 67.3351 2.84 66.2191 3.7112 66.2191H6.8261C7.01604 66.2191 7.20113 66.1591 7.35487 66.0475C7.50861 65.936 7.62312 65.7787 7.682 65.5981L8.645 62.6353L8.6441 62.6344Z" fill="#FACA15"/>
|
|
11
|
-
<path d="M27.6441 62.6344C27.9141 61.8055 29.0868 61.8055 29.3559 62.6344L30.3189 65.5972C30.3777 65.7776 30.4921 65.9348 30.6457 66.0464C30.7992 66.1579 30.9841 66.218 31.1739 66.2182H34.2897C35.1618 66.2182 35.5236 67.3342 34.8189 67.8472L32.2989 69.6778C32.145 69.7894 32.0305 69.9469 31.9716 70.1276C31.9127 70.3084 31.9126 70.5031 31.9713 70.684L32.9343 73.6468C33.2043 74.4757 32.2548 75.166 31.5483 74.653L29.0283 72.8224C28.8746 72.7108 28.6895 72.6507 28.4995 72.6507C28.3096 72.6507 28.1245 72.7108 27.9708 72.8224L25.4508 74.653C24.7452 75.166 23.7966 74.4757 24.0657 73.6468L25.0287 70.684C25.0874 70.5031 25.0873 70.3084 25.0284 70.1276C24.9695 69.9469 24.855 69.7894 24.7011 69.6778L22.182 67.8481C21.4773 67.3351 21.84 66.2191 22.7112 66.2191H25.8261C26.016 66.2191 26.2011 66.1591 26.3549 66.0475C26.5086 65.936 26.6231 65.7787 26.682 65.5981L27.645 62.6353L27.6441 62.6344Z" fill="#FACA15"/>
|
|
12
|
-
<path d="M46.6441 62.6344C46.9141 61.8055 48.0868 61.8055 48.3559 62.6344L49.3189 65.5972C49.3777 65.7776 49.4921 65.9348 49.6457 66.0464C49.7992 66.1579 49.9841 66.218 50.1739 66.2182H53.2897C54.1618 66.2182 54.5236 67.3342 53.8189 67.8472L51.2989 69.6778C51.145 69.7894 51.0305 69.9469 50.9716 70.1276C50.9127 70.3084 50.9126 70.5031 50.9713 70.684L51.9343 73.6468C52.2043 74.4757 51.2548 75.166 50.5483 74.653L48.0283 72.8224C47.8746 72.7108 47.6895 72.6507 47.4995 72.6507C47.3096 72.6507 47.1245 72.7108 46.9708 72.8224L44.4508 74.653C43.7452 75.166 42.7966 74.4757 43.0657 73.6468L44.0287 70.684C44.0874 70.5031 44.0873 70.3084 44.0284 70.1276C43.9695 69.9469 43.855 69.7894 43.7011 69.6778L41.182 67.8481C40.4773 67.3351 40.84 66.2191 41.7112 66.2191H44.8261C45.016 66.2191 45.2011 66.1591 45.3549 66.0475C45.5086 65.936 45.6231 65.7787 45.682 65.5981L46.645 62.6353L46.6441 62.6344Z" fill="#FACA15"/>
|
|
13
|
-
<path d="M65.6441 62.6344C65.9141 61.8055 67.0868 61.8055 67.3559 62.6344L68.3189 65.5972C68.3777 65.7776 68.4921 65.9348 68.6457 66.0464C68.7992 66.1579 68.9841 66.218 69.1739 66.2182H72.2897C73.1618 66.2182 73.5236 67.3342 72.8189 67.8472L70.2989 69.6778C70.145 69.7894 70.0305 69.9469 69.9716 70.1276C69.9128 70.3084 69.9126 70.5031 69.9713 70.684L70.9343 73.6468C71.2043 74.4757 70.2548 75.166 69.5483 74.653L67.0283 72.8224C66.8746 72.7108 66.6895 72.6507 66.4996 72.6507C66.3096 72.6507 66.1245 72.7108 65.9708 72.8224L63.4508 74.653C62.7452 75.166 61.7966 74.4757 62.0657 73.6468L63.0287 70.684C63.0874 70.5031 63.0873 70.3084 63.0284 70.1276C62.9696 69.9469 62.855 69.7894 62.7011 69.6778L60.182 67.8481C59.4773 67.3351 59.84 66.2191 60.7112 66.2191H63.8261C64.016 66.2191 64.2011 66.1591 64.3549 66.0475C64.5086 65.936 64.6231 65.7787 64.682 65.5981L65.645 62.6353L65.6441 62.6344Z" fill="#FACA15"/>
|
|
14
|
-
<path d="M84.6441 62.6344C84.9141 61.8055 86.0868 61.8055 86.3559 62.6344L87.3189 65.5972C87.3777 65.7776 87.4921 65.9348 87.6457 66.0464C87.7992 66.1579 87.9841 66.218 88.1739 66.2182H91.2897C92.1618 66.2182 92.5236 67.3342 91.8189 67.8472L89.2989 69.6778C89.145 69.7894 89.0305 69.9469 88.9716 70.1276C88.9128 70.3084 88.9126 70.5031 88.9713 70.684L89.9343 73.6468C90.2043 74.4757 89.2548 75.166 88.5483 74.653L86.0283 72.8224C85.8746 72.7108 85.6895 72.6507 85.4996 72.6507C85.3096 72.6507 85.1245 72.7108 84.9708 72.8224L82.4508 74.653C81.7452 75.166 80.7966 74.4757 81.0657 73.6468L82.0287 70.684C82.0874 70.5031 82.0873 70.3084 82.0284 70.1276C81.9696 69.9469 81.855 69.7894 81.7011 69.6778L79.182 67.8481C78.4773 67.3351 78.84 66.2191 79.7112 66.2191H82.8261C83.016 66.2191 83.2011 66.1591 83.3549 66.0475C83.5086 65.936 83.6231 65.7787 83.682 65.5981L84.645 62.6353L84.6441 62.6344Z" fill="#FACA15"/>
|
|
15
|
-
<rect x="97.5" y="67" width="17" height="4" rx="2" fill="#6B7280"/>
|
|
16
|
-
<rect x="120.5" y="67" width="36" height="4" rx="2" fill="#9CA3AF"/>
|
|
17
|
-
<rect x="0.5" y="86" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
18
|
-
<rect x="23.5" y="86" width="169" height="4" rx="2" fill="#6B7280"/>
|
|
19
|
-
<rect x="198.5" y="86" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
20
|
-
<rect x="0.5" y="98" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
21
|
-
<rect x="23.5" y="98" width="169" height="4" rx="2" fill="#6B7280"/>
|
|
22
|
-
<rect x="198.5" y="98" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
23
|
-
<rect x="0.5" y="110" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
24
|
-
<rect x="23.5" y="110" width="169" height="4" rx="2" fill="#6B7280"/>
|
|
25
|
-
<rect x="198.5" y="110" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
26
|
-
<rect x="0.5" y="122" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
27
|
-
<rect x="23.5" y="122" width="169" height="4" rx="2" fill="#6B7280"/>
|
|
28
|
-
<rect x="198.5" y="122" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
29
|
-
</svg>
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
<svg width="216" height="126" viewBox="0 0 216 126" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M8.64409 2.63437C8.9141 1.80547 10.0868 1.80547 10.3559 2.63437L11.3189 5.59717C11.3777 5.77761 11.4921 5.93483 11.6457 6.04636C11.7992 6.1579 11.9841 6.21803 12.1739 6.21817H15.2897C16.1618 6.21817 16.5236 7.33417 15.8189 7.84717L13.2989 9.67777C13.145 9.7894 13.0304 9.94688 12.9716 10.1276C12.9127 10.3084 12.9126 10.5031 12.9713 10.684L13.9343 13.6468C14.2043 14.4757 13.2548 15.166 12.5483 14.653L10.0283 12.8224C9.87458 12.7108 9.6895 12.6507 9.49955 12.6507C9.30959 12.6507 9.12451 12.7108 8.9708 12.8224L6.4508 14.653C5.7452 15.166 4.79659 14.4757 5.0657 13.6468L6.0287 10.684C6.08735 10.5031 6.08725 10.3084 6.0284 10.1276C5.96954 9.94688 5.85497 9.7894 5.70109 9.67777L3.182 7.84807C2.4773 7.33507 2.84 6.21907 3.7112 6.21907H6.8261C7.01604 6.21912 7.20113 6.15907 7.35487 6.04753C7.50861 5.93598 7.62311 5.77866 7.682 5.59807L8.645 2.63527L8.64409 2.63437Z" fill="#FACA15"/>
|
|
3
|
-
<path d="M27.6441 2.63437C27.9141 1.80547 29.0868 1.80547 29.3559 2.63437L30.3189 5.59717C30.3777 5.77761 30.4921 5.93483 30.6457 6.04636C30.7992 6.1579 30.9841 6.21803 31.1739 6.21817H34.2897C35.1618 6.21817 35.5236 7.33417 34.8189 7.84717L32.2989 9.67777C32.145 9.7894 32.0304 9.94688 31.9716 10.1276C31.9127 10.3084 31.9126 10.5031 31.9713 10.684L32.9343 13.6468C33.2043 14.4757 32.2548 15.166 31.5483 14.653L29.0283 12.8224C28.8746 12.7108 28.6895 12.6507 28.4995 12.6507C28.3096 12.6507 28.1245 12.7108 27.9708 12.8224L25.4508 14.653C24.7452 15.166 23.7966 14.4757 24.0657 13.6468L25.0287 10.684C25.0874 10.5031 25.0872 10.3084 25.0284 10.1276C24.9695 9.94688 24.855 9.7894 24.7011 9.67777L22.182 7.84807C21.4773 7.33507 21.84 6.21907 22.7112 6.21907H25.8261C26.016 6.21912 26.2011 6.15907 26.3549 6.04753C26.5086 5.93598 26.6231 5.77866 26.682 5.59807L27.645 2.63527L27.6441 2.63437Z" fill="#FACA15"/>
|
|
4
|
-
<path d="M46.6441 2.63437C46.9141 1.80547 48.0868 1.80547 48.3559 2.63437L49.3189 5.59717C49.3777 5.77761 49.4921 5.93483 49.6457 6.04636C49.7992 6.1579 49.9841 6.21803 50.1739 6.21817H53.2897C54.1618 6.21817 54.5236 7.33417 53.8189 7.84717L51.2989 9.67777C51.145 9.7894 51.0304 9.94688 50.9716 10.1276C50.9127 10.3084 50.9126 10.5031 50.9713 10.684L51.9343 13.6468C52.2043 14.4757 51.2548 15.166 50.5483 14.653L48.0283 12.8224C47.8746 12.7108 47.6895 12.6507 47.4995 12.6507C47.3096 12.6507 47.1245 12.7108 46.9708 12.8224L44.4508 14.653C43.7452 15.166 42.7966 14.4757 43.0657 13.6468L44.0287 10.684C44.0874 10.5031 44.0872 10.3084 44.0284 10.1276C43.9695 9.94688 43.855 9.7894 43.7011 9.67777L41.182 7.84807C40.4773 7.33507 40.84 6.21907 41.7112 6.21907H44.8261C45.016 6.21912 45.2011 6.15907 45.3549 6.04753C45.5086 5.93598 45.6231 5.77866 45.682 5.59807L46.645 2.63527L46.6441 2.63437Z" fill="#FACA15"/>
|
|
5
|
-
<path d="M65.6441 2.63437C65.9141 1.80547 67.0868 1.80547 67.3559 2.63437L68.3189 5.59717C68.3777 5.77761 68.4921 5.93483 68.6457 6.04636C68.7992 6.1579 68.9841 6.21803 69.1739 6.21817H72.2897C73.1618 6.21817 73.5236 7.33417 72.8189 7.84717L70.2989 9.67777C70.145 9.7894 70.0304 9.94688 69.9716 10.1276C69.9127 10.3084 69.9126 10.5031 69.9713 10.684L70.9343 13.6468C71.2043 14.4757 70.2548 15.166 69.5483 14.653L67.0283 12.8224C66.8746 12.7108 66.6895 12.6507 66.4995 12.6507C66.3096 12.6507 66.1245 12.7108 65.9708 12.8224L63.4508 14.653C62.7452 15.166 61.7966 14.4757 62.0657 13.6468L63.0287 10.684C63.0874 10.5031 63.0872 10.3084 63.0284 10.1276C62.9695 9.94688 62.855 9.7894 62.7011 9.67777L60.182 7.84807C59.4773 7.33507 59.84 6.21907 60.7112 6.21907H63.8261C64.016 6.21912 64.2011 6.15907 64.3549 6.04753C64.5086 5.93598 64.6231 5.77866 64.682 5.59807L65.645 2.63527L65.6441 2.63437Z" fill="#FACA15"/>
|
|
6
|
-
<path d="M84.6441 2.63437C84.9141 1.80547 86.0868 1.80547 86.3559 2.63437L87.3189 5.59717C87.3777 5.77761 87.4921 5.93483 87.6457 6.04636C87.7992 6.1579 87.9841 6.21803 88.1739 6.21817H91.2897C92.1618 6.21817 92.5236 7.33417 91.8189 7.84717L89.2989 9.67777C89.145 9.7894 89.0304 9.94688 88.9716 10.1276C88.9127 10.3084 88.9126 10.5031 88.9713 10.684L89.9343 13.6468C90.2043 14.4757 89.2548 15.166 88.5483 14.653L86.0283 12.8224C85.8746 12.7108 85.6895 12.6507 85.4995 12.6507C85.3096 12.6507 85.1245 12.7108 84.9708 12.8224L82.4508 14.653C81.7452 15.166 80.7966 14.4757 81.0657 13.6468L82.0287 10.684C82.0874 10.5031 82.0872 10.3084 82.0284 10.1276C81.9695 9.94688 81.855 9.7894 81.7011 9.67777L79.182 7.84807C78.4773 7.33507 78.84 6.21907 79.7112 6.21907H82.8261C83.016 6.21912 83.2011 6.15907 83.3549 6.04753C83.5086 5.93598 83.6231 5.77866 83.682 5.59807L84.645 2.63527L84.6441 2.63437Z" fill="#D1D5DB"/>
|
|
7
|
-
<path d="M8.64409 32.6344C8.9141 31.8055 10.0868 31.8055 10.3559 32.6344L11.3189 35.5972C11.3777 35.7776 11.4921 35.9348 11.6457 36.0464C11.7992 36.1579 11.9841 36.218 12.1739 36.2182H15.2897C16.1618 36.2182 16.5236 37.3342 15.8189 37.8472L13.2989 39.6778C13.145 39.7894 13.0304 39.9469 12.9716 40.1276C12.9127 40.3084 12.9126 40.5031 12.9713 40.684L13.9343 43.6468C14.2043 44.4757 13.2548 45.166 12.5483 44.653L10.0283 42.8224C9.87458 42.7108 9.6895 42.6507 9.49955 42.6507C9.30959 42.6507 9.12451 42.7108 8.9708 42.8224L6.4508 44.653C5.7452 45.166 4.79659 44.4757 5.0657 43.6468L6.0287 40.684C6.08735 40.5031 6.08725 40.3084 6.0284 40.1276C5.96954 39.9469 5.85497 39.7894 5.70109 39.6778L3.182 37.8481C2.4773 37.3351 2.84 36.2191 3.7112 36.2191H6.8261C7.01604 36.2191 7.20113 36.1591 7.35487 36.0475C7.50861 35.936 7.62311 35.7787 7.682 35.5981L8.645 32.6353L8.64409 32.6344Z" fill="#FACA15"/>
|
|
8
|
-
<rect x="21.5" y="37" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
9
|
-
<rect x="44.5" y="37" width="36" height="4" rx="2" fill="#E5E7EB"/>
|
|
10
|
-
<path d="M8.64409 62.6344C8.9141 61.8055 10.0868 61.8055 10.3559 62.6344L11.3189 65.5972C11.3777 65.7776 11.4921 65.9348 11.6457 66.0464C11.7992 66.1579 11.9841 66.218 12.1739 66.2182H15.2897C16.1618 66.2182 16.5236 67.3342 15.8189 67.8472L13.2989 69.6778C13.145 69.7894 13.0304 69.9469 12.9716 70.1276C12.9127 70.3084 12.9126 70.5031 12.9713 70.684L13.9343 73.6468C14.2043 74.4757 13.2548 75.166 12.5483 74.653L10.0283 72.8224C9.87458 72.7108 9.6895 72.6507 9.49955 72.6507C9.30959 72.6507 9.12451 72.7108 8.9708 72.8224L6.4508 74.653C5.7452 75.166 4.79659 74.4757 5.0657 73.6468L6.0287 70.684C6.08735 70.5031 6.08725 70.3084 6.0284 70.1276C5.96954 69.9469 5.85497 69.7894 5.70109 69.6778L3.182 67.8481C2.4773 67.3351 2.84 66.2191 3.7112 66.2191H6.8261C7.01604 66.2191 7.20113 66.1591 7.35487 66.0475C7.50861 65.936 7.62311 65.7787 7.682 65.5981L8.645 62.6353L8.64409 62.6344Z" fill="#FACA15"/>
|
|
11
|
-
<path d="M27.6441 62.6344C27.9141 61.8055 29.0868 61.8055 29.3559 62.6344L30.3189 65.5972C30.3777 65.7776 30.4921 65.9348 30.6457 66.0464C30.7992 66.1579 30.9841 66.218 31.1739 66.2182H34.2897C35.1618 66.2182 35.5236 67.3342 34.8189 67.8472L32.2989 69.6778C32.145 69.7894 32.0304 69.9469 31.9716 70.1276C31.9127 70.3084 31.9126 70.5031 31.9713 70.684L32.9343 73.6468C33.2043 74.4757 32.2548 75.166 31.5483 74.653L29.0283 72.8224C28.8746 72.7108 28.6895 72.6507 28.4995 72.6507C28.3096 72.6507 28.1245 72.7108 27.9708 72.8224L25.4508 74.653C24.7452 75.166 23.7966 74.4757 24.0657 73.6468L25.0287 70.684C25.0874 70.5031 25.0872 70.3084 25.0284 70.1276C24.9695 69.9469 24.855 69.7894 24.7011 69.6778L22.182 67.8481C21.4773 67.3351 21.84 66.2191 22.7112 66.2191H25.8261C26.016 66.2191 26.2011 66.1591 26.3549 66.0475C26.5086 65.936 26.6231 65.7787 26.682 65.5981L27.645 62.6353L27.6441 62.6344Z" fill="#FACA15"/>
|
|
12
|
-
<path d="M46.6441 62.6344C46.9141 61.8055 48.0868 61.8055 48.3559 62.6344L49.3189 65.5972C49.3777 65.7776 49.4921 65.9348 49.6457 66.0464C49.7992 66.1579 49.9841 66.218 50.1739 66.2182H53.2897C54.1618 66.2182 54.5236 67.3342 53.8189 67.8472L51.2989 69.6778C51.145 69.7894 51.0304 69.9469 50.9716 70.1276C50.9127 70.3084 50.9126 70.5031 50.9713 70.684L51.9343 73.6468C52.2043 74.4757 51.2548 75.166 50.5483 74.653L48.0283 72.8224C47.8746 72.7108 47.6895 72.6507 47.4995 72.6507C47.3096 72.6507 47.1245 72.7108 46.9708 72.8224L44.4508 74.653C43.7452 75.166 42.7966 74.4757 43.0657 73.6468L44.0287 70.684C44.0874 70.5031 44.0872 70.3084 44.0284 70.1276C43.9695 69.9469 43.855 69.7894 43.7011 69.6778L41.182 67.8481C40.4773 67.3351 40.84 66.2191 41.7112 66.2191H44.8261C45.016 66.2191 45.2011 66.1591 45.3549 66.0475C45.5086 65.936 45.6231 65.7787 45.682 65.5981L46.645 62.6353L46.6441 62.6344Z" fill="#FACA15"/>
|
|
13
|
-
<path d="M65.6441 62.6344C65.9141 61.8055 67.0868 61.8055 67.3559 62.6344L68.3189 65.5972C68.3777 65.7776 68.4921 65.9348 68.6457 66.0464C68.7992 66.1579 68.9841 66.218 69.1739 66.2182H72.2897C73.1618 66.2182 73.5236 67.3342 72.8189 67.8472L70.2989 69.6778C70.145 69.7894 70.0304 69.9469 69.9716 70.1276C69.9127 70.3084 69.9126 70.5031 69.9713 70.684L70.9343 73.6468C71.2043 74.4757 70.2548 75.166 69.5483 74.653L67.0283 72.8224C66.8746 72.7108 66.6895 72.6507 66.4995 72.6507C66.3096 72.6507 66.1245 72.7108 65.9708 72.8224L63.4508 74.653C62.7452 75.166 61.7966 74.4757 62.0657 73.6468L63.0287 70.684C63.0874 70.5031 63.0872 70.3084 63.0284 70.1276C62.9695 69.9469 62.855 69.7894 62.7011 69.6778L60.182 67.8481C59.4773 67.3351 59.84 66.2191 60.7112 66.2191H63.8261C64.016 66.2191 64.2011 66.1591 64.3549 66.0475C64.5086 65.936 64.6231 65.7787 64.682 65.5981L65.645 62.6353L65.6441 62.6344Z" fill="#FACA15"/>
|
|
14
|
-
<path d="M84.6441 62.6344C84.9141 61.8055 86.0868 61.8055 86.3559 62.6344L87.3189 65.5972C87.3777 65.7776 87.4921 65.9348 87.6457 66.0464C87.7992 66.1579 87.9841 66.218 88.1739 66.2182H91.2897C92.1618 66.2182 92.5236 67.3342 91.8189 67.8472L89.2989 69.6778C89.145 69.7894 89.0304 69.9469 88.9716 70.1276C88.9127 70.3084 88.9126 70.5031 88.9713 70.684L89.9343 73.6468C90.2043 74.4757 89.2548 75.166 88.5483 74.653L86.0283 72.8224C85.8746 72.7108 85.6895 72.6507 85.4995 72.6507C85.3096 72.6507 85.1245 72.7108 84.9708 72.8224L82.4508 74.653C81.7452 75.166 80.7966 74.4757 81.0657 73.6468L82.0287 70.684C82.0874 70.5031 82.0872 70.3084 82.0284 70.1276C81.9695 69.9469 81.855 69.7894 81.7011 69.6778L79.182 67.8481C78.4773 67.3351 78.84 66.2191 79.7112 66.2191H82.8261C83.016 66.2191 83.2011 66.1591 83.3549 66.0475C83.5086 65.936 83.6231 65.7787 83.682 65.5981L84.645 62.6353L84.6441 62.6344Z" fill="#FACA15"/>
|
|
15
|
-
<rect x="97.5" y="67" width="17" height="4" rx="2" fill="#9CA3AF"/>
|
|
16
|
-
<rect x="120.5" y="67" width="36" height="4" rx="2" fill="#E5E7EB"/>
|
|
17
|
-
<rect x="0.5" y="86" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
18
|
-
<rect x="23.5" y="86" width="169" height="4" rx="2" fill="#9CA3AF"/>
|
|
19
|
-
<rect x="198.5" y="86" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
20
|
-
<rect x="0.5" y="98" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
21
|
-
<rect x="23.5" y="98" width="169" height="4" rx="2" fill="#9CA3AF"/>
|
|
22
|
-
<rect x="198.5" y="98" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
23
|
-
<rect x="0.5" y="110" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
24
|
-
<rect x="23.5" y="110" width="169" height="4" rx="2" fill="#9CA3AF"/>
|
|
25
|
-
<rect x="198.5" y="110" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
26
|
-
<rect x="0.5" y="122" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
27
|
-
<rect x="23.5" y="122" width="169" height="4" rx="2" fill="#9CA3AF"/>
|
|
28
|
-
<rect x="198.5" y="122" width="17" height="4" rx="2" fill="#E5E7EB"/>
|
|
29
|
-
</svg>
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
<svg width="318" height="106" viewBox="0 0 318 106" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g filter="url(#filter0_dd_2665_3680)">
|
|
3
|
-
<path d="M6 10C6 5.58172 9.58172 2 14 2H91.416V37H14C9.58172 37 6 33.4183 6 29V10Z" fill="#4B5563"/>
|
|
4
|
-
<rect x="20" y="16" width="40.416" height="7" rx="2" fill="#9CA3AF"/>
|
|
5
|
-
<path d="M74.4161 20.6759L74.0625 20.3223L71.4282 17.688C71.4282 17.688 71.4282 17.688 71.4281 17.6879C71.3719 17.6317 71.2956 17.6002 71.2161 17.6002C71.1366 17.6002 71.0603 17.6317 71.0041 17.6879C71.0041 17.6879 71.004 17.688 71.004 17.688M74.4161 20.6759L71.004 17.688M74.4161 20.6759L74.7696 20.3223L77.404 17.6879L77.4041 17.688L77.4101 17.6818C77.4378 17.6531 77.4709 17.6302 77.5075 17.6145C77.5441 17.5988 77.5835 17.5905 77.6233 17.5902C77.6631 17.5898 77.7027 17.5974 77.7395 17.6125C77.7764 17.6276 77.8099 17.6499 77.8381 17.678C77.8662 17.7062 77.8885 17.7397 77.9036 17.7766C77.9187 17.8134 77.9263 17.8529 77.9259 17.8928C77.9256 17.9326 77.9173 17.972 77.9016 18.0086C77.8858 18.0452 77.863 18.0783 77.8343 18.106L77.8343 18.1059L77.8281 18.112L74.6282 21.312C74.6282 21.312 74.6282 21.312 74.6281 21.312C74.5719 21.3682 74.4956 21.3998 74.4161 21.3998C74.3366 21.3998 74.2603 21.3682 74.204 21.312C74.204 21.312 74.204 21.312 74.204 21.312L71.0041 18.1121M74.4161 20.6759L71.0041 18.1121M71.004 17.688C70.9478 17.7442 70.9163 17.8205 70.9163 17.9C70.9163 17.9795 70.9478 18.0558 71.004 18.112M71.004 17.688L71.004 18.112M71.004 18.112L71.0041 18.1121M71.004 18.112L71.0041 18.1121" fill="white" stroke="#9CA3AF"/>
|
|
6
|
-
<path d="M14 2.5H90.916V36.5H14C9.85786 36.5 6.5 33.1421 6.5 29V10C6.5 5.85786 9.85786 2.5 14 2.5Z" stroke="#4B5563"/>
|
|
7
|
-
</g>
|
|
8
|
-
<g filter="url(#filter1_dd_2665_3680)">
|
|
9
|
-
<path d="M91.416 2H277.416V37H91.416V2Z" fill="#374151"/>
|
|
10
|
-
<rect x="109.416" y="16" width="150" height="7" rx="2" fill="#9CA3AF"/>
|
|
11
|
-
<path d="M91.916 2.5H276.916V36.5H91.916V2.5Z" stroke="#4B5563"/>
|
|
12
|
-
</g>
|
|
13
|
-
<g filter="url(#filter2_dd_2665_3680)">
|
|
14
|
-
<path d="M277.416 2H303.416C307.834 2 311.416 5.58172 311.416 10V29C311.416 33.4183 307.834 37 303.416 37H277.416V2Z" fill="#1C64F2"/>
|
|
15
|
-
<path d="M296.321 20.3911L296.076 20.7355L296.375 21.0343L300.224 24.8841C300.278 24.9405 300.307 25.0152 300.306 25.0928C300.306 25.1714 300.274 25.2467 300.218 25.3023C300.163 25.3579 300.088 25.3895 300.009 25.3902C299.931 25.3908 299.857 25.3614 299.8 25.3082L295.951 21.4592L295.652 21.1604L295.308 21.4053C294.665 21.8627 293.908 22.1343 293.12 22.1901C292.333 22.246 291.546 22.0841 290.844 21.7221C290.143 21.36 289.554 20.8119 289.144 20.1378C288.733 19.4636 288.516 18.6895 288.516 17.9001L288.016 17.9L288.516 17.8999C288.516 17.2232 288.676 16.556 288.982 15.9526C289.288 15.3491 289.733 14.8266 290.279 14.4273C290.826 14.0281 291.459 13.7635 292.127 13.655C292.795 13.5465 293.479 13.5972 294.124 13.803C294.768 14.0088 295.355 14.3638 295.837 14.8393C296.319 15.3147 296.681 15.8971 296.895 16.5391C297.109 17.1811 297.169 17.8645 297.069 18.5339C296.969 19.2032 296.713 19.8395 296.321 20.3911ZM292.816 14.2C291.835 14.2 290.894 14.5898 290.2 15.2837C289.506 15.9776 289.116 16.9187 289.116 17.9C289.116 18.8813 289.506 19.8224 290.2 20.5163C290.894 21.2102 291.835 21.6 292.816 21.6C293.797 21.6 294.739 21.2102 295.432 20.5163C296.126 19.8224 296.516 18.8813 296.516 17.9C296.516 16.9187 296.126 15.9776 295.432 15.2837C294.739 14.5898 293.797 14.2 292.816 14.2Z" fill="white" stroke="white"/>
|
|
16
|
-
<path d="M277.916 2.5H303.416C307.558 2.5 310.916 5.85786 310.916 10V29C310.916 33.1421 307.558 36.5 303.416 36.5H277.916V2.5Z" stroke="#1C64F2"/>
|
|
17
|
-
</g>
|
|
18
|
-
<g filter="url(#filter3_dd_2665_3680)">
|
|
19
|
-
<path d="M6 69C6 64.5817 9.58172 61 14 61H304C308.418 61 312 64.5817 312 69V88C312 92.4183 308.418 96 304 96H14C9.58172 96 6 92.4183 6 88V69Z" fill="#374151"/>
|
|
20
|
-
<path d="M38 84.5L34 80.5M35.3333 77.1667C35.3333 77.7795 35.2126 78.3863 34.9781 78.9525C34.7436 79.5187 34.3998 80.0332 33.9665 80.4665C33.5332 80.8998 33.0187 81.2436 32.4525 81.4781C31.8863 81.7126 31.2795 81.8333 30.6667 81.8333C30.0538 81.8333 29.447 81.7126 28.8808 81.4781C28.3146 81.2436 27.8002 80.8998 27.3668 80.4665C26.9335 80.0332 26.5898 79.5187 26.3552 78.9525C26.1207 78.3863 26 77.7795 26 77.1667C26 75.929 26.4917 74.742 27.3668 73.8668C28.242 72.9917 29.429 72.5 30.6667 72.5C31.9043 72.5 33.0913 72.9917 33.9665 73.8668C34.8417 74.742 35.3333 75.929 35.3333 77.1667Z" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
21
|
-
<rect x="58" y="75" width="150" height="7" rx="2" fill="#9CA3AF"/>
|
|
22
|
-
<path d="M14 61.5H304C308.142 61.5 311.5 64.8579 311.5 69V88C311.5 92.1421 308.142 95.5 304 95.5H14C9.85786 95.5 6.5 92.1421 6.5 88V69C6.5 64.8579 9.85786 61.5 14 61.5Z" stroke="#4B5563"/>
|
|
23
|
-
</g>
|
|
24
|
-
<defs>
|
|
25
|
-
<filter id="filter0_dd_2665_3680" x="0" y="0" width="97.416" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
26
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
27
|
-
<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"/>
|
|
28
|
-
<feOffset dy="4"/>
|
|
29
|
-
<feGaussianBlur stdDeviation="3"/>
|
|
30
|
-
<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"/>
|
|
31
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3680"/>
|
|
32
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
33
|
-
<feOffset dy="2"/>
|
|
34
|
-
<feGaussianBlur stdDeviation="2"/>
|
|
35
|
-
<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"/>
|
|
36
|
-
<feBlend mode="normal" in2="effect1_dropShadow_2665_3680" result="effect2_dropShadow_2665_3680"/>
|
|
37
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3680" result="shape"/>
|
|
38
|
-
</filter>
|
|
39
|
-
<filter id="filter1_dd_2665_3680" x="85.416" y="0" width="198" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
40
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
41
|
-
<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"/>
|
|
42
|
-
<feOffset dy="4"/>
|
|
43
|
-
<feGaussianBlur stdDeviation="3"/>
|
|
44
|
-
<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"/>
|
|
45
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3680"/>
|
|
46
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
47
|
-
<feOffset dy="2"/>
|
|
48
|
-
<feGaussianBlur stdDeviation="2"/>
|
|
49
|
-
<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"/>
|
|
50
|
-
<feBlend mode="normal" in2="effect1_dropShadow_2665_3680" result="effect2_dropShadow_2665_3680"/>
|
|
51
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3680" result="shape"/>
|
|
52
|
-
</filter>
|
|
53
|
-
<filter id="filter2_dd_2665_3680" x="271.416" y="0" width="46" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
54
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
55
|
-
<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"/>
|
|
56
|
-
<feOffset dy="4"/>
|
|
57
|
-
<feGaussianBlur stdDeviation="3"/>
|
|
58
|
-
<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"/>
|
|
59
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3680"/>
|
|
60
|
-
<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"/>
|
|
61
|
-
<feOffset dy="2"/>
|
|
62
|
-
<feGaussianBlur stdDeviation="2"/>
|
|
63
|
-
<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"/>
|
|
64
|
-
<feBlend mode="normal" in2="effect1_dropShadow_2665_3680" result="effect2_dropShadow_2665_3680"/>
|
|
65
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3680" result="shape"/>
|
|
66
|
-
</filter>
|
|
67
|
-
<filter id="filter3_dd_2665_3680" x="0" y="59" width="318" height="47" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
68
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
69
|
-
<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"/>
|
|
70
|
-
<feOffset dy="4"/>
|
|
71
|
-
<feGaussianBlur stdDeviation="3"/>
|
|
72
|
-
<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"/>
|
|
73
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2665_3680"/>
|
|
74
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
75
|
-
<feOffset dy="2"/>
|
|
76
|
-
<feGaussianBlur stdDeviation="2"/>
|
|
77
|
-
<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"/>
|
|
78
|
-
<feBlend mode="normal" in2="effect1_dropShadow_2665_3680" result="effect2_dropShadow_2665_3680"/>
|
|
79
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2665_3680" result="shape"/>
|
|
80
|
-
</filter>
|
|
81
|
-
</defs>
|
|
82
|
-
</svg>
|