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.
Files changed (918) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/README.md +2 -0
  3. package/accordions/Accordion.svelte +24 -0
  4. package/accordions/Accordion.svelte.d.ts +30 -0
  5. package/accordions/AccordionItem.svelte +59 -0
  6. package/accordions/AccordionItem.svelte.d.ts +28 -0
  7. package/alerts/Alert.svelte +47 -0
  8. package/alerts/Alert.svelte.d.ts +32 -0
  9. package/avatar/Avatar.svelte +39 -0
  10. package/avatar/Avatar.svelte.d.ts +27 -0
  11. package/avatar/Dot.svelte +34 -0
  12. package/avatar/Dot.svelte.d.ts +23 -0
  13. package/avatar/Placeholder.svelte +15 -0
  14. package/avatar/Placeholder.svelte.d.ts +16 -0
  15. package/badges/Badge.svelte +51 -0
  16. package/badges/Badge.svelte.d.ts +26 -0
  17. package/breadcrumbs/Breadcrumb.svelte +13 -0
  18. package/breadcrumbs/Breadcrumb.svelte.d.ts +22 -0
  19. package/breadcrumbs/BreadcrumbItem.svelte +44 -0
  20. package/breadcrumbs/BreadcrumbItem.svelte.d.ts +24 -0
  21. package/buttongroups/ButtonGroup.svelte +10 -0
  22. package/buttongroups/ButtonGroup.svelte.d.ts +21 -0
  23. package/buttons/Button.svelte +111 -0
  24. package/buttons/Button.svelte.d.ts +35 -0
  25. package/cards/Card.svelte +40 -0
  26. package/cards/Card.svelte.d.ts +25 -0
  27. package/carousels/Caption.svelte +7 -0
  28. package/carousels/Caption.svelte.d.ts +17 -0
  29. package/carousels/Carousel.svelte +138 -0
  30. package/carousels/Carousel.svelte.d.ts +30 -0
  31. package/carousels/CarouselTransition.svelte +157 -0
  32. package/carousels/CarouselTransition.svelte.d.ts +32 -0
  33. package/carousels/Indicator.svelte +11 -0
  34. package/carousels/Indicator.svelte.d.ts +20 -0
  35. package/carousels/Slide.svelte +9 -0
  36. package/carousels/Slide.svelte.d.ts +19 -0
  37. package/carousels/Thumbnail.svelte +23 -0
  38. package/carousels/Thumbnail.svelte.d.ts +23 -0
  39. package/darkmode/DarkMode.svelte +34 -0
  40. package/darkmode/DarkMode.svelte.d.ts +16 -0
  41. package/{src/lib/datepicker → datepicker}/Calender.svelte +0 -0
  42. package/datepicker/Calender.svelte.d.ts +19 -0
  43. package/datepicker/Datepicker.svelte +70 -0
  44. package/datepicker/Datepicker.svelte.d.ts +25 -0
  45. package/drawer/Drawer.svelte +74 -0
  46. package/drawer/Drawer.svelte.d.ts +37 -0
  47. package/dropdowns/Dropdown.svelte +32 -0
  48. package/dropdowns/Dropdown.svelte.d.ts +24 -0
  49. package/dropdowns/DropdownDivider.svelte +5 -0
  50. package/dropdowns/DropdownDivider.svelte.d.ts +17 -0
  51. package/dropdowns/DropdownHeader.svelte +13 -0
  52. package/dropdowns/DropdownHeader.svelte.d.ts +20 -0
  53. package/dropdowns/DropdownItem.svelte +29 -0
  54. package/dropdowns/DropdownItem.svelte.d.ts +29 -0
  55. package/footer/Footer.svelte +21 -0
  56. package/footer/Footer.svelte.d.ts +20 -0
  57. package/footer/FooterBrand.svelte +20 -0
  58. package/footer/FooterBrand.svelte.d.ts +26 -0
  59. package/footer/FooterCopyright.svelte +20 -0
  60. package/footer/FooterCopyright.svelte.d.ts +22 -0
  61. package/footer/FooterIcon.svelte +14 -0
  62. package/footer/FooterIcon.svelte.d.ts +22 -0
  63. package/footer/FooterLink.svelte +13 -0
  64. package/footer/FooterLink.svelte.d.ts +22 -0
  65. package/footer/FooterLinkGroup.svelte +7 -0
  66. package/footer/FooterLinkGroup.svelte.d.ts +19 -0
  67. package/forms/Checkbox.svelte +52 -0
  68. package/forms/Checkbox.svelte.d.ts +36 -0
  69. package/forms/Dropzone.svelte +26 -0
  70. package/forms/Dropzone.svelte.d.ts +30 -0
  71. package/forms/Fileupload.svelte +27 -0
  72. package/forms/Fileupload.svelte.d.ts +31 -0
  73. package/forms/FloatingLabelInput.svelte +106 -0
  74. package/forms/FloatingLabelInput.svelte.d.ts +36 -0
  75. package/forms/Helper.svelte +14 -0
  76. package/forms/Helper.svelte.d.ts +20 -0
  77. package/forms/Iconinput.svelte +81 -0
  78. package/forms/Iconinput.svelte.d.ts +39 -0
  79. package/forms/Input.svelte +82 -0
  80. package/forms/Input.svelte.d.ts +45 -0
  81. package/forms/InputAddon.svelte +29 -0
  82. package/forms/InputAddon.svelte.d.ts +19 -0
  83. package/forms/Label.svelte +25 -0
  84. package/forms/Label.svelte.d.ts +21 -0
  85. package/forms/NumberInput.svelte +7 -0
  86. package/forms/NumberInput.svelte.d.ts +17 -0
  87. package/forms/Radio.svelte +45 -0
  88. package/forms/Radio.svelte.d.ts +38 -0
  89. package/{src/lib/forms → forms}/RadioInline.svelte +0 -0
  90. package/forms/RadioInline.svelte.d.ts +23 -0
  91. package/forms/Range.svelte +22 -0
  92. package/forms/Range.svelte.d.ts +24 -0
  93. package/forms/Search.svelte +55 -0
  94. package/forms/Search.svelte.d.ts +34 -0
  95. package/forms/Select.svelte +25 -0
  96. package/forms/Select.svelte.d.ts +27 -0
  97. package/forms/SimpleSearch.svelte +20 -0
  98. package/forms/SimpleSearch.svelte.d.ts +18 -0
  99. package/forms/Textarea.svelte +48 -0
  100. package/forms/Textarea.svelte.d.ts +32 -0
  101. package/forms/Toggle.svelte +32 -0
  102. package/forms/Toggle.svelte.d.ts +25 -0
  103. package/forms/VoiceSearch.svelte +63 -0
  104. package/forms/VoiceSearch.svelte.d.ts +28 -0
  105. package/index.d.ts +129 -0
  106. package/index.js +165 -0
  107. package/kbd/ArrowKeyDown.svelte +15 -0
  108. package/kbd/ArrowKeyDown.svelte.d.ts +17 -0
  109. package/kbd/ArrowKeyLeft.svelte +15 -0
  110. package/kbd/ArrowKeyLeft.svelte.d.ts +17 -0
  111. package/kbd/ArrowKeyRight.svelte +15 -0
  112. package/kbd/ArrowKeyRight.svelte.d.ts +17 -0
  113. package/kbd/ArrowKeyUp.svelte +15 -0
  114. package/kbd/ArrowKeyUp.svelte.d.ts +17 -0
  115. package/kbd/Kbd.svelte +7 -0
  116. package/kbd/Kbd.svelte.d.ts +19 -0
  117. package/list-group/Listgroup.svelte +18 -0
  118. package/list-group/Listgroup.svelte.d.ts +23 -0
  119. package/list-group/ListgroupItem.svelte +62 -0
  120. package/list-group/ListgroupItem.svelte.d.ts +35 -0
  121. package/megamenu/MegaMenu.svelte +42 -0
  122. package/megamenu/MegaMenu.svelte.d.ts +27 -0
  123. package/modals/Modal.svelte +138 -0
  124. package/modals/Modal.svelte.d.ts +30 -0
  125. package/navbar/Menu.svelte +36 -0
  126. package/navbar/Menu.svelte.d.ts +22 -0
  127. package/navbar/NavBrand.svelte +7 -0
  128. package/navbar/NavBrand.svelte.d.ts +19 -0
  129. package/navbar/NavDropdown.svelte +59 -0
  130. package/navbar/NavDropdown.svelte.d.ts +35 -0
  131. package/navbar/NavHamburger.svelte +9 -0
  132. package/navbar/NavHamburger.svelte.d.ts +19 -0
  133. package/navbar/NavLi.svelte +28 -0
  134. package/navbar/NavLi.svelte.d.ts +33 -0
  135. package/navbar/NavUl.svelte +28 -0
  136. package/navbar/NavUl.svelte.d.ts +21 -0
  137. package/navbar/Navbar.svelte +17 -0
  138. package/navbar/Navbar.svelte.d.ts +25 -0
  139. package/package.json +258 -113
  140. package/paginations/Pagination.svelte +36 -0
  141. package/paginations/Pagination.svelte.d.ts +26 -0
  142. package/paginations/PaginationItem.svelte +24 -0
  143. package/paginations/PaginationItem.svelte.d.ts +29 -0
  144. package/popover/Popover.svelte +18 -0
  145. package/popover/Popover.svelte.d.ts +23 -0
  146. package/progressbars/Progressbar.svelte +34 -0
  147. package/progressbars/Progressbar.svelte.d.ts +23 -0
  148. package/ratings/AdvancedRating.svelte +24 -0
  149. package/ratings/AdvancedRating.svelte.d.ts +28 -0
  150. package/ratings/Rating.svelte +34 -0
  151. package/ratings/Rating.svelte.d.ts +27 -0
  152. package/ratings/RatingComment.svelte +64 -0
  153. package/ratings/RatingComment.svelte.d.ts +39 -0
  154. package/ratings/Review.svelte +64 -0
  155. package/ratings/Review.svelte.d.ts +29 -0
  156. package/ratings/ScoreRating.svelte +52 -0
  157. package/ratings/ScoreRating.svelte.d.ts +36 -0
  158. package/ratings/Star.svelte +36 -0
  159. package/ratings/Star.svelte.d.ts +22 -0
  160. package/sidebars/Sidebar.svelte +7 -0
  161. package/sidebars/Sidebar.svelte.d.ts +19 -0
  162. package/sidebars/SidebarBrand.svelte +11 -0
  163. package/sidebars/SidebarBrand.svelte.d.ts +21 -0
  164. package/sidebars/SidebarCta.svelte +21 -0
  165. package/sidebars/SidebarCta.svelte.d.ts +23 -0
  166. package/sidebars/SidebarDropdownItem.svelte +23 -0
  167. package/sidebars/SidebarDropdownItem.svelte.d.ts +31 -0
  168. package/sidebars/SidebarDropdownWrapper.svelte +45 -0
  169. package/sidebars/SidebarDropdownWrapper.svelte.d.ts +26 -0
  170. package/sidebars/SidebarGroup.svelte +12 -0
  171. package/sidebars/SidebarGroup.svelte.d.ts +21 -0
  172. package/sidebars/SidebarItem.svelte +30 -0
  173. package/sidebars/SidebarItem.svelte.d.ts +35 -0
  174. package/sidebars/SidebarWrapper.svelte +7 -0
  175. package/sidebars/SidebarWrapper.svelte.d.ts +19 -0
  176. package/skeleton/CardPlaceholder.svelte +44 -0
  177. package/skeleton/CardPlaceholder.svelte.d.ts +18 -0
  178. package/skeleton/ImagePlaceholder.svelte +32 -0
  179. package/skeleton/ImagePlaceholder.svelte.d.ts +18 -0
  180. package/skeleton/ListPlaceholder.svelte +42 -0
  181. package/skeleton/ListPlaceholder.svelte.d.ts +17 -0
  182. package/skeleton/Skeleton.svelte +13 -0
  183. package/skeleton/Skeleton.svelte.d.ts +17 -0
  184. package/skeleton/TestimonialPlaceholder.svelte +25 -0
  185. package/skeleton/TestimonialPlaceholder.svelte.d.ts +17 -0
  186. package/skeleton/TextPlaceholder.svelte +37 -0
  187. package/skeleton/TextPlaceholder.svelte.d.ts +17 -0
  188. package/skeleton/VideoPlaceholder.svelte +20 -0
  189. package/skeleton/VideoPlaceholder.svelte.d.ts +18 -0
  190. package/skeleton/WidgetPlaceholder.svelte +18 -0
  191. package/skeleton/WidgetPlaceholder.svelte.d.ts +17 -0
  192. package/spinners/Spinner.svelte +46 -0
  193. package/spinners/Spinner.svelte.d.ts +22 -0
  194. package/tables/Table.svelte +31 -0
  195. package/tables/Table.svelte.d.ts +24 -0
  196. package/{src/lib/tables → tables}/TableBody.svelte +0 -0
  197. package/tables/TableBody.svelte.d.ts +27 -0
  198. package/tables/TableBodyCell.svelte +14 -0
  199. package/tables/TableBodyCell.svelte.d.ts +19 -0
  200. package/tables/TableBodyRow.svelte +39 -0
  201. package/tables/TableBodyRow.svelte.d.ts +19 -0
  202. package/tables/TableHead.svelte +37 -0
  203. package/tables/TableHead.svelte.d.ts +19 -0
  204. package/tables/TableHeadCell.svelte +6 -0
  205. package/tables/TableHeadCell.svelte.d.ts +18 -0
  206. package/tables/TableSearch.svelte +55 -0
  207. package/tables/TableSearch.svelte.d.ts +24 -0
  208. package/tabs/TabHead.svelte +27 -0
  209. package/tabs/TabHead.svelte.d.ts +20 -0
  210. package/tabs/TabHeadItem.svelte +56 -0
  211. package/tabs/TabHeadItem.svelte.d.ts +34 -0
  212. package/tabs/TabItem.svelte +53 -0
  213. package/tabs/TabItem.svelte.d.ts +34 -0
  214. package/tabs/Tabs.svelte +50 -0
  215. package/tabs/Tabs.svelte.d.ts +33 -0
  216. package/timelines/Activity.svelte +6 -0
  217. package/timelines/Activity.svelte.d.ts +18 -0
  218. package/timelines/ActivityItem.svelte +29 -0
  219. package/timelines/ActivityItem.svelte.d.ts +17 -0
  220. package/timelines/Group.svelte +11 -0
  221. package/timelines/Group.svelte.d.ts +20 -0
  222. package/timelines/GroupItem.svelte +49 -0
  223. package/timelines/GroupItem.svelte.d.ts +17 -0
  224. package/timelines/Timeline.svelte +17 -0
  225. package/timelines/Timeline.svelte.d.ts +19 -0
  226. package/timelines/TimelineHorizontal.svelte +6 -0
  227. package/timelines/TimelineHorizontal.svelte.d.ts +18 -0
  228. package/timelines/TimelineItem.svelte +125 -0
  229. package/timelines/TimelineItem.svelte.d.ts +22 -0
  230. package/timelines/TimelineItemHorizontal.svelte +55 -0
  231. package/timelines/TimelineItemHorizontal.svelte.d.ts +21 -0
  232. package/timelines/TimelineItemVertical.svelte +33 -0
  233. package/timelines/TimelineItemVertical.svelte.d.ts +20 -0
  234. package/toasts/Toast.svelte +39 -0
  235. package/toasts/Toast.svelte.d.ts +25 -0
  236. package/toolbar/Toolbar.svelte +57 -0
  237. package/toolbar/Toolbar.svelte.d.ts +21 -0
  238. package/toolbar/ToolbarButton.svelte +44 -0
  239. package/toolbar/ToolbarButton.svelte.d.ts +24 -0
  240. package/toolbar/ToolbarGroup.svelte +9 -0
  241. package/toolbar/ToolbarGroup.svelte.d.ts +16 -0
  242. package/tooltips/Tooltip.svelte +23 -0
  243. package/tooltips/Tooltip.svelte.d.ts +22 -0
  244. package/types.d.ts +225 -0
  245. package/types.js +1 -0
  246. package/typography/A.svelte +9 -0
  247. package/typography/A.svelte.d.ts +21 -0
  248. package/typography/Blockquote.svelte +44 -0
  249. package/typography/Blockquote.svelte.d.ts +26 -0
  250. package/typography/DescriptionList.svelte +10 -0
  251. package/typography/DescriptionList.svelte.d.ts +21 -0
  252. package/typography/Heading.svelte +20 -0
  253. package/typography/Heading.svelte.d.ts +21 -0
  254. package/typography/Hr.svelte +24 -0
  255. package/typography/Hr.svelte.d.ts +26 -0
  256. package/typography/Img.svelte +30 -0
  257. package/typography/Img.svelte.d.ts +26 -0
  258. package/typography/Layout.svelte +10 -0
  259. package/typography/Layout.svelte.d.ts +21 -0
  260. package/typography/Li.svelte +9 -0
  261. package/typography/Li.svelte.d.ts +20 -0
  262. package/typography/List.svelte +23 -0
  263. package/typography/List.svelte.d.ts +25 -0
  264. package/typography/Mark.svelte +9 -0
  265. package/typography/Mark.svelte.d.ts +21 -0
  266. package/typography/P.svelte +75 -0
  267. package/typography/P.svelte.d.ts +30 -0
  268. package/typography/Secondary.svelte +8 -0
  269. package/typography/Secondary.svelte.d.ts +20 -0
  270. package/typography/Span.svelte +17 -0
  271. package/typography/Span.svelte.d.ts +27 -0
  272. package/typography/Ul.svelte +20 -0
  273. package/typography/Ul.svelte.d.ts +21 -0
  274. package/utils/Chevron.svelte +26 -0
  275. package/utils/Chevron.svelte.d.ts +20 -0
  276. package/utils/ChevronDown.svelte +36 -0
  277. package/utils/ChevronDown.svelte.d.ts +22 -0
  278. package/utils/ChevronLeft.svelte +36 -0
  279. package/utils/ChevronLeft.svelte.d.ts +22 -0
  280. package/utils/ChevronRight.svelte +36 -0
  281. package/utils/ChevronRight.svelte.d.ts +22 -0
  282. package/utils/ChevronUp.svelte +36 -0
  283. package/utils/ChevronUp.svelte.d.ts +22 -0
  284. package/utils/CloseButton.svelte +52 -0
  285. package/utils/CloseButton.svelte.d.ts +23 -0
  286. package/utils/Frame.svelte +108 -0
  287. package/utils/Frame.svelte.d.ts +35 -0
  288. package/utils/InformationCircle.svelte +37 -0
  289. package/utils/InformationCircle.svelte.d.ts +22 -0
  290. package/utils/Popper.svelte +139 -0
  291. package/utils/Popper.svelte.d.ts +28 -0
  292. package/utils/UserCircle.svelte +37 -0
  293. package/utils/UserCircle.svelte.d.ts +22 -0
  294. package/utils/Wrapper.svelte +10 -0
  295. package/utils/Wrapper.svelte.d.ts +22 -0
  296. package/utils/backdrop.d.ts +6 -0
  297. package/utils/backdrop.js +90 -0
  298. package/utils/clickOutside.d.ts +3 -0
  299. package/utils/clickOutside.js +15 -0
  300. package/utils/createEventDispatcher.d.ts +1 -0
  301. package/{src/lib/utils → utils}/createEventDispatcher.js +0 -0
  302. package/utils/focusTrap.d.ts +3 -0
  303. package/{src/lib/utils → utils}/focusTrap.js +0 -0
  304. package/utils/generateId.d.ts +1 -0
  305. package/{src/lib/utils → utils}/generateId.js +0 -0
  306. package/video/Video.svelte +22 -0
  307. package/video/Video.svelte.d.ts +23 -0
  308. package/.eslintrc.cjs +0 -20
  309. package/.github/FUNDING.yml +0 -13
  310. package/.github/ISSUE_TEMPLATE/bug_report.yml +0 -33
  311. package/.github/ISSUE_TEMPLATE/config.yml +0 -5
  312. package/.github/ISSUE_TEMPLATE/feature_request.md +0 -17
  313. package/.github/pull_request_template.md +0 -67
  314. package/.prettierrc +0 -8
  315. package/CONTRIBUTING.md +0 -67
  316. package/mdsvex.config.js +0 -22
  317. package/playwright.config.ts +0 -10
  318. package/postcss.config.cjs +0 -13
  319. package/src/app.css +0 -41
  320. package/src/app.d.ts +0 -9
  321. package/src/app.html +0 -32
  322. package/src/app.postcss +0 -4
  323. package/src/hooks.server.js +0 -76
  324. package/src/lib/accordions/Accordion.svelte +0 -45
  325. package/src/lib/accordions/AccordionItem.svelte +0 -79
  326. package/src/lib/alerts/Alert.svelte +0 -59
  327. package/src/lib/avatar/Avatar.svelte +0 -54
  328. package/src/lib/avatar/Dot.svelte +0 -48
  329. package/src/lib/avatar/Placeholder.svelte +0 -16
  330. package/src/lib/badges/Badge.svelte +0 -67
  331. package/src/lib/breadcrumbs/Breadcrumb.svelte +0 -16
  332. package/src/lib/breadcrumbs/BreadcrumbItem.svelte +0 -47
  333. package/src/lib/buttongroups/ButtonGroup.svelte +0 -14
  334. package/src/lib/buttons/Button.svelte +0 -182
  335. package/src/lib/cards/Card.svelte +0 -60
  336. package/src/lib/carousels/Caption.svelte +0 -8
  337. package/src/lib/carousels/Carousel.svelte +0 -147
  338. package/src/lib/carousels/CarouselTransition.svelte +0 -167
  339. package/src/lib/carousels/Indicator.svelte +0 -13
  340. package/src/lib/carousels/Slide.svelte +0 -10
  341. package/src/lib/carousels/Thumbnail.svelte +0 -25
  342. package/src/lib/darkmode/DarkMode.svelte +0 -36
  343. package/src/lib/datepicker/Datepicker.svelte +0 -74
  344. package/src/lib/drawer/Drawer.svelte +0 -85
  345. package/src/lib/dropdowns/Dropdown.svelte +0 -36
  346. package/src/lib/dropdowns/DropdownDivider.svelte +0 -6
  347. package/src/lib/dropdowns/DropdownHeader.svelte +0 -14
  348. package/src/lib/dropdowns/DropdownItem.svelte +0 -34
  349. package/src/lib/footer/Footer.svelte +0 -22
  350. package/src/lib/footer/FooterBrand.svelte +0 -21
  351. package/src/lib/footer/FooterCopyright.svelte +0 -21
  352. package/src/lib/footer/FooterIcon.svelte +0 -15
  353. package/src/lib/footer/FooterLink.svelte +0 -14
  354. package/src/lib/footer/FooterLinkGroup.svelte +0 -8
  355. package/src/lib/forms/Checkbox.svelte +0 -58
  356. package/src/lib/forms/Dropzone.svelte +0 -28
  357. package/src/lib/forms/Fileupload.svelte +0 -29
  358. package/src/lib/forms/FloatingLabelInput.svelte +0 -124
  359. package/src/lib/forms/Helper.svelte +0 -15
  360. package/src/lib/forms/Iconinput.svelte +0 -86
  361. package/src/lib/forms/Input.svelte +0 -110
  362. package/src/lib/forms/InputAddon.svelte +0 -50
  363. package/src/lib/forms/Label.svelte +0 -31
  364. package/src/lib/forms/NumberInput.svelte +0 -9
  365. package/src/lib/forms/Radio.svelte +0 -69
  366. package/src/lib/forms/Range.svelte +0 -29
  367. package/src/lib/forms/Search.svelte +0 -58
  368. package/src/lib/forms/Select.svelte +0 -40
  369. package/src/lib/forms/SimpleSearch.svelte +0 -21
  370. package/src/lib/forms/Textarea.svelte +0 -77
  371. package/src/lib/forms/Toggle.svelte +0 -46
  372. package/src/lib/forms/VoiceSearch.svelte +0 -71
  373. package/src/lib/index.ts +0 -200
  374. package/src/lib/kbd/ArrowKeyDown.svelte +0 -16
  375. package/src/lib/kbd/ArrowKeyLeft.svelte +0 -16
  376. package/src/lib/kbd/ArrowKeyRight.svelte +0 -16
  377. package/src/lib/kbd/ArrowKeyUp.svelte +0 -16
  378. package/src/lib/kbd/Kbd.svelte +0 -9
  379. package/src/lib/list-group/Listgroup.svelte +0 -23
  380. package/src/lib/list-group/ListgroupItem.svelte +0 -77
  381. package/src/lib/megamenu/MegaMenu.svelte +0 -57
  382. package/src/lib/modals/Modal.svelte +0 -165
  383. package/src/lib/navbar/Menu.svelte +0 -37
  384. package/src/lib/navbar/NavBrand.svelte +0 -8
  385. package/src/lib/navbar/NavDropdown.svelte +0 -66
  386. package/src/lib/navbar/NavHamburger.svelte +0 -11
  387. package/src/lib/navbar/NavLi.svelte +0 -37
  388. package/src/lib/navbar/NavUl.svelte +0 -35
  389. package/src/lib/navbar/Navbar.svelte +0 -36
  390. package/src/lib/paginations/Pagination.svelte +0 -42
  391. package/src/lib/paginations/PaginationItem.svelte +0 -36
  392. package/src/lib/popover/Popover.svelte +0 -20
  393. package/src/lib/progressbars/Progressbar.svelte +0 -39
  394. package/src/lib/ratings/AdvancedRating.svelte +0 -25
  395. package/src/lib/ratings/Rating.svelte +0 -37
  396. package/src/lib/ratings/RatingComment.svelte +0 -81
  397. package/src/lib/ratings/Review.svelte +0 -66
  398. package/src/lib/ratings/ScoreRating.svelte +0 -53
  399. package/src/lib/ratings/Star.svelte +0 -37
  400. package/src/lib/sidebars/Sidebar.svelte +0 -8
  401. package/src/lib/sidebars/SidebarBrand.svelte +0 -15
  402. package/src/lib/sidebars/SidebarCta.svelte +0 -24
  403. package/src/lib/sidebars/SidebarDropdownItem.svelte +0 -27
  404. package/src/lib/sidebars/SidebarDropdownWrapper.svelte +0 -49
  405. package/src/lib/sidebars/SidebarGroup.svelte +0 -15
  406. package/src/lib/sidebars/SidebarItem.svelte +0 -34
  407. package/src/lib/sidebars/SidebarWrapper.svelte +0 -9
  408. package/src/lib/skeleton/CardPlaceholder.svelte +0 -46
  409. package/src/lib/skeleton/ImagePlaceholder.svelte +0 -34
  410. package/src/lib/skeleton/ListPlaceholder.svelte +0 -44
  411. package/src/lib/skeleton/Skeleton.svelte +0 -14
  412. package/src/lib/skeleton/TestimonialPlaceholder.svelte +0 -26
  413. package/src/lib/skeleton/TextPlaceholder.svelte +0 -38
  414. package/src/lib/skeleton/VideoPlaceholder.svelte +0 -22
  415. package/src/lib/skeleton/WidgetPlaceholder.svelte +0 -20
  416. package/src/lib/spinners/Spinner.svelte +0 -54
  417. package/src/lib/tables/Table.svelte +0 -36
  418. package/src/lib/tables/TableBodyCell.svelte +0 -21
  419. package/src/lib/tables/TableBodyRow.svelte +0 -49
  420. package/src/lib/tables/TableHead.svelte +0 -49
  421. package/src/lib/tables/TableHeadCell.svelte +0 -7
  422. package/src/lib/tables/TableSearch.svelte +0 -60
  423. package/src/lib/tabs/TabHead.svelte +0 -31
  424. package/src/lib/tabs/TabHeadItem.svelte +0 -70
  425. package/src/lib/tabs/TabItem.svelte +0 -65
  426. package/src/lib/tabs/Tabs.svelte +0 -68
  427. package/src/lib/timelines/Activity.svelte +0 -7
  428. package/src/lib/timelines/ActivityItem.svelte +0 -31
  429. package/src/lib/timelines/Group.svelte +0 -12
  430. package/src/lib/timelines/GroupItem.svelte +0 -51
  431. package/src/lib/timelines/Timeline.svelte +0 -21
  432. package/src/lib/timelines/TimelineHorizontal.svelte +0 -7
  433. package/src/lib/timelines/TimelineItem.svelte +0 -135
  434. package/src/lib/timelines/TimelineItemHorizontal.svelte +0 -56
  435. package/src/lib/timelines/TimelineItemVertical.svelte +0 -34
  436. package/src/lib/toasts/Toast.svelte +0 -60
  437. package/src/lib/toolbar/Toolbar.svelte +0 -73
  438. package/src/lib/toolbar/ToolbarButton.svelte +0 -58
  439. package/src/lib/toolbar/ToolbarGroup.svelte +0 -11
  440. package/src/lib/tooltips/Tooltip.svelte +0 -25
  441. package/src/lib/types.ts +0 -285
  442. package/src/lib/typography/A.svelte +0 -11
  443. package/src/lib/typography/Blockquote.svelte +0 -59
  444. package/src/lib/typography/DescriptionList.svelte +0 -13
  445. package/src/lib/typography/Heading.svelte +0 -22
  446. package/src/lib/typography/Hr.svelte +0 -28
  447. package/src/lib/typography/Img.svelte +0 -32
  448. package/src/lib/typography/Layout.svelte +0 -12
  449. package/src/lib/typography/Li.svelte +0 -11
  450. package/src/lib/typography/List.svelte +0 -33
  451. package/src/lib/typography/Mark.svelte +0 -11
  452. package/src/lib/typography/P.svelte +0 -118
  453. package/src/lib/typography/Secondary.svelte +0 -10
  454. package/src/lib/typography/Span.svelte +0 -29
  455. package/src/lib/typography/Ul.svelte +0 -22
  456. package/src/lib/utils/Chevron.svelte +0 -32
  457. package/src/lib/utils/ChevronDown.svelte +0 -37
  458. package/src/lib/utils/ChevronLeft.svelte +0 -37
  459. package/src/lib/utils/ChevronRight.svelte +0 -37
  460. package/src/lib/utils/ChevronUp.svelte +0 -37
  461. package/src/lib/utils/CloseButton.svelte +0 -64
  462. package/src/lib/utils/Frame.svelte +0 -146
  463. package/src/lib/utils/InformationCircle.svelte +0 -38
  464. package/src/lib/utils/Popper.svelte +0 -148
  465. package/src/lib/utils/UserCircle.svelte +0 -38
  466. package/src/lib/utils/Wrapper.svelte +0 -13
  467. package/src/lib/utils/backdrop.ts +0 -109
  468. package/src/lib/utils/clickOutside.ts +0 -16
  469. package/src/lib/video/Video.svelte +0 -24
  470. package/src/routes/+error.svelte +0 -16
  471. package/src/routes/+layout.js +0 -9
  472. package/src/routes/+layout.svelte +0 -259
  473. package/src/routes/+page.svelte +0 -126
  474. package/src/routes/Toc/+page.svelte +0 -41
  475. package/src/routes/api/posts/+server.js +0 -7
  476. package/src/routes/blocks/+server.ts +0 -51
  477. package/src/routes/blocks/AccordionBlock/+page.svelte +0 -47
  478. package/src/routes/blocks/AlertBlock/+page.svelte +0 -47
  479. package/src/routes/blocks/AvatarBlock/+page.svelte +0 -47
  480. package/src/routes/blocks/BadgeBlock/+page.svelte +0 -47
  481. package/src/routes/blocks/BlockquoteBlock/+page.svelte +0 -46
  482. package/src/routes/blocks/BreadcrumbBlock/+page.svelte +0 -47
  483. package/src/routes/blocks/ButtonBlock/+page.svelte +0 -47
  484. package/src/routes/blocks/ButtongroupBlock/+page.svelte +0 -47
  485. package/src/routes/blocks/CardBlock/+page.svelte +0 -47
  486. package/src/routes/blocks/CarouselBlock/+page.svelte +0 -47
  487. package/src/routes/blocks/CheckboxBlock/+page.svelte +0 -55
  488. package/src/routes/blocks/DatepickerBlock/+page.svelte +0 -48
  489. package/src/routes/blocks/DrawerBlock/+page.svelte +0 -46
  490. package/src/routes/blocks/DropdownBlock/+page.svelte +0 -47
  491. package/src/routes/blocks/FileinputBlock/+page.svelte +0 -47
  492. package/src/routes/blocks/FloatingLabelBlock/+page.svelte +0 -47
  493. package/src/routes/blocks/FooterBlock/+page.svelte +0 -47
  494. package/src/routes/blocks/FormBlock/+page.svelte +0 -47
  495. package/src/routes/blocks/HeadingBlock/+page.svelte +0 -46
  496. package/src/routes/blocks/HrBlock/+page.svelte +0 -46
  497. package/src/routes/blocks/ImageBlock/+page.svelte +0 -46
  498. package/src/routes/blocks/InputfieldBlock/+page.svelte +0 -47
  499. package/src/routes/blocks/KbdBlock/+page.svelte +0 -47
  500. package/src/routes/blocks/LinkBlock/+page.svelte +0 -46
  501. package/src/routes/blocks/ListBlock/+page.svelte +0 -46
  502. package/src/routes/blocks/ListgroupBlock/+page.svelte +0 -47
  503. package/src/routes/blocks/MegamenuBlock/+page.svelte +0 -47
  504. package/src/routes/blocks/ModalBlock/+page.svelte +0 -47
  505. package/src/routes/blocks/NavbarBlock/+page.svelte +0 -47
  506. package/src/routes/blocks/PaginationBlock/+page.svelte +0 -47
  507. package/src/routes/blocks/ParagraphBlock/+page.svelte +0 -46
  508. package/src/routes/blocks/PopoverBlock/+page.svelte +0 -46
  509. package/src/routes/blocks/ProgressbarBlock/+page.svelte +0 -47
  510. package/src/routes/blocks/RadioBlock/+page.svelte +0 -47
  511. package/src/routes/blocks/RangeBlock/+page.svelte +0 -47
  512. package/src/routes/blocks/RatingBlock/+page.svelte +0 -47
  513. package/src/routes/blocks/SearchinputBlock/+page.svelte +0 -47
  514. package/src/routes/blocks/SelectBlock/+page.svelte +0 -47
  515. package/src/routes/blocks/SidebarBlock/+page.svelte +0 -47
  516. package/src/routes/blocks/SkeletonBlock/+page.svelte +0 -47
  517. package/src/routes/blocks/SpinnerBlock/+page.svelte +0 -47
  518. package/src/routes/blocks/TabBlock/+page.svelte +0 -47
  519. package/src/routes/blocks/TableBlock/+page.svelte +0 -47
  520. package/src/routes/blocks/TextBlock/+page.svelte +0 -46
  521. package/src/routes/blocks/TextareaBlock/+page.svelte +0 -47
  522. package/src/routes/blocks/TimelineBlock/+page.svelte +0 -47
  523. package/src/routes/blocks/ToastBlock/+page.svelte +0 -47
  524. package/src/routes/blocks/ToggleBlock/+page.svelte +0 -47
  525. package/src/routes/blocks/TooltipBlock/+page.svelte +0 -47
  526. package/src/routes/blocks/TypographyBlock/+page.svelte +0 -47
  527. package/src/routes/blocks/VideoBlock/+page.svelte +0 -46
  528. package/src/routes/components/[slug]/+page.js +0 -12
  529. package/src/routes/components/[slug]/+page.svelte +0 -6
  530. package/src/routes/components/accordion.md +0 -300
  531. package/src/routes/components/alert.md +0 -324
  532. package/src/routes/components/avatar.md +0 -228
  533. package/src/routes/components/badge.md +0 -190
  534. package/src/routes/components/breadcrumb.md +0 -134
  535. package/src/routes/components/button-group.md +0 -225
  536. package/src/routes/components/button.md +0 -335
  537. package/src/routes/components/card.md +0 -454
  538. package/src/routes/components/carousel.md +0 -294
  539. package/src/routes/components/darkmode.md +0 -121
  540. package/src/routes/components/drawer.md +0 -727
  541. package/src/routes/components/dropdown.md +0 -710
  542. package/src/routes/components/footer.md +0 -306
  543. package/src/routes/components/forms.md +0 -298
  544. package/src/routes/components/imageData/+server.js +0 -50
  545. package/src/routes/components/kbd.md +0 -284
  546. package/src/routes/components/list-group.md +0 -192
  547. package/src/routes/components/mega-menu.md +0 -286
  548. package/src/routes/components/modal.md +0 -360
  549. package/src/routes/components/navbar.md +0 -349
  550. package/src/routes/components/pagination.md +0 -263
  551. package/src/routes/components/popover.md +0 -398
  552. package/src/routes/components/progress.md +0 -213
  553. package/src/routes/components/rating.md +0 -408
  554. package/src/routes/components/sidebar.md +0 -584
  555. package/src/routes/components/skeleton.md +0 -176
  556. package/src/routes/components/spinner.md +0 -137
  557. package/src/routes/components/tab.md +0 -305
  558. package/src/routes/components/table.md +0 -849
  559. package/src/routes/components/timeline.md +0 -362
  560. package/src/routes/components/toast.md +0 -381
  561. package/src/routes/components/tooltip.md +0 -174
  562. package/src/routes/components/typography.md +0 -132
  563. package/src/routes/components/video.md +0 -143
  564. package/src/routes/datepicker/+page.svelte +0 -179
  565. package/src/routes/extend/CheckCircle.svelte +0 -9
  566. package/src/routes/extend/[slug]/+page.js +0 -12
  567. package/src/routes/extend/[slug]/+page.svelte +0 -6
  568. package/src/routes/extend/flowbite-svelte-starter.md +0 -76
  569. package/src/routes/extend/icons.md +0 -270
  570. package/src/routes/forms/[slug]/+page.js +0 -12
  571. package/src/routes/forms/[slug]/+page.svelte +0 -6
  572. package/src/routes/forms/checkbox.md +0 -338
  573. package/src/routes/forms/file-input.md +0 -158
  574. package/src/routes/forms/floating-label.md +0 -184
  575. package/src/routes/forms/input-field.md +0 -410
  576. package/src/routes/forms/radio.md +0 -330
  577. package/src/routes/forms/range.md +0 -134
  578. package/src/routes/forms/search-input.md +0 -131
  579. package/src/routes/forms/select.md +0 -194
  580. package/src/routes/forms/textarea.md +0 -162
  581. package/src/routes/forms/toggle.md +0 -103
  582. package/src/routes/layouts/component/+page.svelte +0 -9
  583. package/src/routes/layouts/formLayout/+page.svelte +0 -60
  584. package/src/routes/layouts/pageLayout/+page.svelte +0 -57
  585. package/src/routes/layouts/testLayout/+page.svelte +0 -6
  586. package/src/routes/layouts/typographyLayout/+page.svelte +0 -100
  587. package/src/routes/layouts/utilitiesLayout/+page.svelte +0 -33
  588. package/src/routes/moduleItems/+server.js +0 -13
  589. package/src/routes/pages/[slug]/+page.js +0 -12
  590. package/src/routes/pages/[slug]/+page.svelte +0 -6
  591. package/src/routes/pages/about.md +0 -36
  592. package/src/routes/pages/getting-started.md +0 -119
  593. package/src/routes/pages/how-to-contribute.md +0 -148
  594. package/src/routes/pages/license.md +0 -48
  595. package/src/routes/pages/types.md +0 -28
  596. package/src/routes/props/A.json +0 -1
  597. package/src/routes/props/Accordion.json +0 -1
  598. package/src/routes/props/AccordionItem.json +0 -1
  599. package/src/routes/props/Activity.json +0 -1
  600. package/src/routes/props/ActivityItem.json +0 -1
  601. package/src/routes/props/AdvancedRating.json +0 -1
  602. package/src/routes/props/Alert.json +0 -1
  603. package/src/routes/props/ArrowKeyDown.json +0 -1
  604. package/src/routes/props/ArrowKeyLeft.json +0 -1
  605. package/src/routes/props/ArrowKeyRight.json +0 -1
  606. package/src/routes/props/ArrowKeyUp.json +0 -1
  607. package/src/routes/props/Avatar.json +0 -1
  608. package/src/routes/props/Badge.json +0 -1
  609. package/src/routes/props/Blockquote.json +0 -1
  610. package/src/routes/props/Breadcrumb.json +0 -1
  611. package/src/routes/props/BreadcrumbItem.json +0 -1
  612. package/src/routes/props/Button.json +0 -1
  613. package/src/routes/props/ButtonGroup.json +0 -1
  614. package/src/routes/props/Caption.json +0 -1
  615. package/src/routes/props/Card.json +0 -1
  616. package/src/routes/props/CardPlaceholder.json +0 -1
  617. package/src/routes/props/Carousel.json +0 -1
  618. package/src/routes/props/CarouselTransition.json +0 -1
  619. package/src/routes/props/Checkbox.json +0 -1
  620. package/src/routes/props/Chevron.json +0 -1
  621. package/src/routes/props/ChevronDown.json +0 -1
  622. package/src/routes/props/ChevronLeft.json +0 -1
  623. package/src/routes/props/ChevronRight.json +0 -1
  624. package/src/routes/props/ChevronUp.json +0 -1
  625. package/src/routes/props/CloseButton.json +0 -1
  626. package/src/routes/props/DarkMode.json +0 -1
  627. package/src/routes/props/Datepicker.json +0 -1
  628. package/src/routes/props/DescriptionList.json +0 -1
  629. package/src/routes/props/Dot.json +0 -1
  630. package/src/routes/props/Drawer.json +0 -1
  631. package/src/routes/props/Dropdown.json +0 -1
  632. package/src/routes/props/DropdownDivider.json +0 -1
  633. package/src/routes/props/DropdownHeader.json +0 -1
  634. package/src/routes/props/DropdownItem.json +0 -1
  635. package/src/routes/props/Dropzone.json +0 -1
  636. package/src/routes/props/Fileupload.json +0 -1
  637. package/src/routes/props/FloatingLabelInput.json +0 -1
  638. package/src/routes/props/Footer.json +0 -1
  639. package/src/routes/props/FooterBrand.json +0 -1
  640. package/src/routes/props/FooterCopyright.json +0 -1
  641. package/src/routes/props/FooterIcon.json +0 -1
  642. package/src/routes/props/FooterLink.json +0 -1
  643. package/src/routes/props/FooterLinkGroup.json +0 -1
  644. package/src/routes/props/Frame.json +0 -1
  645. package/src/routes/props/Group.json +0 -1
  646. package/src/routes/props/GroupItem.json +0 -1
  647. package/src/routes/props/Heading.json +0 -1
  648. package/src/routes/props/Helper.json +0 -1
  649. package/src/routes/props/Hr.json +0 -1
  650. package/src/routes/props/Iconinput.json +0 -1
  651. package/src/routes/props/ImagePlaceholder.json +0 -1
  652. package/src/routes/props/Img.json +0 -1
  653. package/src/routes/props/Indicator.json +0 -1
  654. package/src/routes/props/InformationCircle.json +0 -1
  655. package/src/routes/props/Input.json +0 -1
  656. package/src/routes/props/InputAddon.json +0 -1
  657. package/src/routes/props/Kbd.json +0 -1
  658. package/src/routes/props/Label.json +0 -1
  659. package/src/routes/props/Layout.json +0 -1
  660. package/src/routes/props/Li.json +0 -1
  661. package/src/routes/props/List.json +0 -1
  662. package/src/routes/props/ListPlaceholder.json +0 -1
  663. package/src/routes/props/Listgroup.json +0 -1
  664. package/src/routes/props/ListgroupItem.json +0 -1
  665. package/src/routes/props/Mark.json +0 -1
  666. package/src/routes/props/MegaMenu.json +0 -1
  667. package/src/routes/props/Menu.json +0 -1
  668. package/src/routes/props/Modal.json +0 -1
  669. package/src/routes/props/NavBrand.json +0 -1
  670. package/src/routes/props/NavDropdown.json +0 -1
  671. package/src/routes/props/NavHamburger.json +0 -1
  672. package/src/routes/props/NavLi.json +0 -1
  673. package/src/routes/props/NavUl.json +0 -1
  674. package/src/routes/props/Navbar.json +0 -1
  675. package/src/routes/props/NumberInput.json +0 -1
  676. package/src/routes/props/P.json +0 -1
  677. package/src/routes/props/Pagination.json +0 -1
  678. package/src/routes/props/PaginationItem.json +0 -1
  679. package/src/routes/props/Placeholder.json +0 -1
  680. package/src/routes/props/Popover.json +0 -1
  681. package/src/routes/props/Popper.json +0 -1
  682. package/src/routes/props/Progressbar.json +0 -1
  683. package/src/routes/props/Radio.json +0 -1
  684. package/src/routes/props/Range.json +0 -1
  685. package/src/routes/props/Rating.json +0 -1
  686. package/src/routes/props/RatingComment.json +0 -1
  687. package/src/routes/props/Review.json +0 -1
  688. package/src/routes/props/ScoreRating.json +0 -1
  689. package/src/routes/props/Search.json +0 -1
  690. package/src/routes/props/Secondary.json +0 -1
  691. package/src/routes/props/Select.json +0 -1
  692. package/src/routes/props/Sidebar.json +0 -1
  693. package/src/routes/props/SidebarBrand.json +0 -1
  694. package/src/routes/props/SidebarCta.json +0 -1
  695. package/src/routes/props/SidebarDropdownItem.json +0 -1
  696. package/src/routes/props/SidebarDropdownWrapper.json +0 -1
  697. package/src/routes/props/SidebarGroup.json +0 -1
  698. package/src/routes/props/SidebarItem.json +0 -1
  699. package/src/routes/props/SidebarWrapper.json +0 -1
  700. package/src/routes/props/Skeleton.json +0 -1
  701. package/src/routes/props/Slide.json +0 -1
  702. package/src/routes/props/Span.json +0 -1
  703. package/src/routes/props/Spinner.json +0 -1
  704. package/src/routes/props/Star.json +0 -1
  705. package/src/routes/props/TabHead.json +0 -1
  706. package/src/routes/props/TabHeadItem.json +0 -1
  707. package/src/routes/props/TabItem.json +0 -1
  708. package/src/routes/props/Table.json +0 -1
  709. package/src/routes/props/TableBodyCell.json +0 -1
  710. package/src/routes/props/TableBodyRow.json +0 -1
  711. package/src/routes/props/TableHead.json +0 -1
  712. package/src/routes/props/TableSearch.json +0 -1
  713. package/src/routes/props/Tabs.json +0 -1
  714. package/src/routes/props/TestimonialPlaceholder.json +0 -1
  715. package/src/routes/props/TextPlaceholder.json +0 -1
  716. package/src/routes/props/Textarea.json +0 -1
  717. package/src/routes/props/Thumbnail.json +0 -1
  718. package/src/routes/props/Timeline.json +0 -1
  719. package/src/routes/props/TimelineHorizontal.json +0 -1
  720. package/src/routes/props/TimelineItem.json +0 -1
  721. package/src/routes/props/TimelineItemHorizontal.json +0 -1
  722. package/src/routes/props/TimelineItemVertical.json +0 -1
  723. package/src/routes/props/Toast.json +0 -1
  724. package/src/routes/props/Toggle.json +0 -1
  725. package/src/routes/props/Toolbar.json +0 -1
  726. package/src/routes/props/ToolbarButton.json +0 -1
  727. package/src/routes/props/Tooltip.json +0 -1
  728. package/src/routes/props/Ul.json +0 -1
  729. package/src/routes/props/UserCircle.json +0 -1
  730. package/src/routes/props/Video.json +0 -1
  731. package/src/routes/props/VideoPlaceholder.json +0 -1
  732. package/src/routes/props/VoiceSearch.json +0 -1
  733. package/src/routes/props/WidgetPlaceholder.json +0 -1
  734. package/src/routes/props/Wrapper.json +0 -1
  735. package/src/routes/props/backdrop.json +0 -1
  736. package/src/routes/typography/[slug]/+page.js +0 -12
  737. package/src/routes/typography/[slug]/+page.svelte +0 -6
  738. package/src/routes/typography/blockquote.md +0 -249
  739. package/src/routes/typography/heading.md +0 -299
  740. package/src/routes/typography/hr.md +0 -151
  741. package/src/routes/typography/image.md +0 -259
  742. package/src/routes/typography/link.md +0 -159
  743. package/src/routes/typography/list.md +0 -487
  744. package/src/routes/typography/paragraph.md +0 -433
  745. package/src/routes/typography/text.md +0 -367
  746. package/src/routes/utilities/[slug]/+page.js +0 -12
  747. package/src/routes/utilities/[slug]/+page.svelte +0 -6
  748. package/src/routes/utilities/close-button.md +0 -76
  749. package/src/routes/utilities/colors.md +0 -90
  750. package/src/routes/utilities/label.md +0 -65
  751. package/src/routes/utilities/toolbar.md +0 -186
  752. package/src/routes/utils/CompoDescription.svelte +0 -7
  753. package/src/routes/utils/ExampleDiv.svelte +0 -10
  754. package/src/routes/utils/ExampleWrapper.svelte +0 -22
  755. package/src/routes/utils/GitHubSource.svelte +0 -18
  756. package/src/routes/utils/Htwo.svelte +0 -29
  757. package/src/routes/utils/MetaTag.svelte +0 -40
  758. package/src/routes/utils/TableDefaultRow.svelte +0 -73
  759. package/src/routes/utils/TableProp.svelte +0 -25
  760. package/src/routes/utils/index.ts +0 -91
  761. package/static/images/carousel/cosmic-timetraveler-pYyOZ8q7AII-unsplash.webp +0 -0
  762. package/static/images/carousel/cristina-gottardi-CSpjU6hYo_0-unsplash.webp +0 -0
  763. package/static/images/carousel/johannes-plenio-RwHv7LgeC7s-unsplash.webp +0 -0
  764. package/static/images/carousel/jonatan-pie-3l3RwQdHRHg-unsplash.webp +0 -0
  765. package/static/images/carousel/mark-harpur-K2s_YE031CA-unsplash.webp +0 -0
  766. package/static/images/carousel/pietro-de-grandi-T7K4aEPoGGk-unsplash.webp +0 -0
  767. package/static/images/carousel/sergey-pesterev-tMvuB9se2uQ-unsplash.webp +0 -0
  768. package/static/images/carousel/solotravelgoals-7kLufxYoqWk-unsplash.webp +0 -0
  769. package/static/images/carousel-1.svg +0 -4
  770. package/static/images/carousel-2.svg +0 -4
  771. package/static/images/carousel-3.svg +0 -4
  772. package/static/images/carousel-4.svg +0 -4
  773. package/static/images/carousel-5.svg +0 -4
  774. package/static/images/colors.webp +0 -0
  775. package/static/images/components/accordion-dark.svg +0 -40
  776. package/static/images/components/accordion.svg +0 -40
  777. package/static/images/components/alerts-dark.svg +0 -11
  778. package/static/images/components/alerts.svg +0 -11
  779. package/static/images/components/avatar-dark.svg +0 -117
  780. package/static/images/components/avatar.svg +0 -117
  781. package/static/images/components/badges-dark.svg +0 -5
  782. package/static/images/components/badges.svg +0 -5
  783. package/static/images/components/blockquote-dark.svg +0 -8
  784. package/static/images/components/blockquote.svg +0 -8
  785. package/static/images/components/breadcrumbs-dark.svg +0 -7
  786. package/static/images/components/breadcrumbs.svg +0 -7
  787. package/static/images/components/button-group-dark.svg +0 -10
  788. package/static/images/components/button-group.svg +0 -10
  789. package/static/images/components/buttons-dark.svg +0 -10
  790. package/static/images/components/buttons.svg +0 -10
  791. package/static/images/components/cards-dark.svg +0 -31
  792. package/static/images/components/cards.svg +0 -32
  793. package/static/images/components/carousel-dark.svg +0 -13
  794. package/static/images/components/carousel.svg +0 -13
  795. package/static/images/components/checkbox.svg +0 -14
  796. package/static/images/components/datepicker-dark.svg +0 -67
  797. package/static/images/components/datepicker.svg +0 -67
  798. package/static/images/components/drawer-dark.svg +0 -33
  799. package/static/images/components/drawer.svg +0 -33
  800. package/static/images/components/dropdown-dark.svg +0 -35
  801. package/static/images/components/dropdown.svg +0 -35
  802. package/static/images/components/file-input-dark.svg +0 -59
  803. package/static/images/components/file-input.svg +0 -46
  804. package/static/images/components/floating-label-dark.svg +0 -11
  805. package/static/images/components/floating-label.svg +0 -11
  806. package/static/images/components/footer-dark.svg +0 -52
  807. package/static/images/components/footer.svg +0 -50
  808. package/static/images/components/forms-dark.svg +0 -64
  809. package/static/images/components/forms.svg +0 -64
  810. package/static/images/components/heading-dark.svg +0 -5
  811. package/static/images/components/heading.svg +0 -5
  812. package/static/images/components/hr-dark.svg +0 -7
  813. package/static/images/components/hr.svg +0 -7
  814. package/static/images/components/image-dark.svg +0 -6
  815. package/static/images/components/image.svg +0 -6
  816. package/static/images/components/input-field-dark.svg +0 -65
  817. package/static/images/components/input-field.svg +0 -66
  818. package/static/images/components/keyboard-dark.svg +0 -460
  819. package/static/images/components/keyboard.svg +0 -462
  820. package/static/images/components/link-dark.svg +0 -4
  821. package/static/images/components/link.svg +0 -4
  822. package/static/images/components/list-dark.svg +0 -26
  823. package/static/images/components/list-group-dark.svg +0 -33
  824. package/static/images/components/list-group.svg +0 -53
  825. package/static/images/components/list.svg +0 -26
  826. package/static/images/components/mega-menu-dark.svg +0 -72
  827. package/static/images/components/mega-menu.svg +0 -72
  828. package/static/images/components/modal-dark.svg +0 -32
  829. package/static/images/components/modal.svg +0 -33
  830. package/static/images/components/navbar-dark.svg +0 -78
  831. package/static/images/components/navbar.svg +0 -78
  832. package/static/images/components/pagination-dark.svg +0 -50
  833. package/static/images/components/pagination.svg +0 -50
  834. package/static/images/components/paragraph-dark.svg +0 -13
  835. package/static/images/components/paragraph.svg +0 -13
  836. package/static/images/components/popover-dark.svg +0 -18
  837. package/static/images/components/popover.svg +0 -17
  838. package/static/images/components/progress-dark.svg +0 -10
  839. package/static/images/components/progress.svg +0 -10
  840. package/static/images/components/radio-dark.svg +0 -14
  841. package/static/images/components/radio.svg +0 -12
  842. package/static/images/components/range-slider-dark.svg +0 -38
  843. package/static/images/components/range-slider.svg +0 -38
  844. package/static/images/components/rating-dark.svg +0 -29
  845. package/static/images/components/rating.svg +0 -29
  846. package/static/images/components/search-input-dark.svg +0 -82
  847. package/static/images/components/search-input.svg +0 -82
  848. package/static/images/components/select-dark.svg +0 -64
  849. package/static/images/components/select.svg +0 -64
  850. package/static/images/components/sidebar-dark.svg +0 -17
  851. package/static/images/components/sidebar.svg +0 -18
  852. package/static/images/components/skeleton-dark.svg +0 -11
  853. package/static/images/components/skeleton.svg +0 -11
  854. package/static/images/components/spinner-dark.svg +0 -6
  855. package/static/images/components/spinner.svg +0 -6
  856. package/static/images/components/table-dark.svg +0 -42
  857. package/static/images/components/table.svg +0 -42
  858. package/static/images/components/tabs-dark.svg +0 -10
  859. package/static/images/components/tabs.svg +0 -10
  860. package/static/images/components/text-dark.svg +0 -11
  861. package/static/images/components/text.svg +0 -11
  862. package/static/images/components/textarea-dark.svg +0 -16
  863. package/static/images/components/textarea.svg +0 -16
  864. package/static/images/components/timeline-dark.svg +0 -20
  865. package/static/images/components/timeline.svg +0 -20
  866. package/static/images/components/toast-dark.svg +0 -49
  867. package/static/images/components/toast.svg +0 -49
  868. package/static/images/components/toggle-dark.svg +0 -12
  869. package/static/images/components/toggle.svg +0 -12
  870. package/static/images/components/tooltips-dark.svg +0 -7
  871. package/static/images/components/tooltips.svg +0 -7
  872. package/static/images/components/typography-dark.svg +0 -13
  873. package/static/images/components/typography.svg +0 -13
  874. package/static/images/components/video-dark.svg +0 -4
  875. package/static/images/components/video.svg +0 -4
  876. package/static/images/examples/content-gallery-3.png +0 -0
  877. package/static/images/examples/image-1.jpg +0 -0
  878. package/static/images/examples/image-1@2x.jpg +0 -0
  879. package/static/images/examples/image-2@2x.jpg +0 -0
  880. package/static/images/examples/image-3@2x.jpg +0 -0
  881. package/static/images/examples/image-4@2x.jpg +0 -0
  882. package/static/images/favicon.png +0 -0
  883. package/static/images/favicon.svg +0 -49
  884. package/static/images/flowbite-svelte-icon-logo.svg +0 -49
  885. package/static/images/flowbite-svelte-icon.svg +0 -49
  886. package/static/images/flowbite-svelte-og-image.png +0 -0
  887. package/static/images/flowbite-svelte.png +0 -0
  888. package/static/images/image-1.jpeg +0 -0
  889. package/static/images/image-1.png +0 -0
  890. package/static/images/image-1.webp +0 -0
  891. package/static/images/image-2.jpeg +0 -0
  892. package/static/images/image-2.png +0 -0
  893. package/static/images/image-2.webp +0 -0
  894. package/static/images/image-4.jpeg +0 -0
  895. package/static/images/image-4.png +0 -0
  896. package/static/images/image-4.webp +0 -0
  897. package/static/images/italy.png +0 -0
  898. package/static/images/nature-1.jpeg +0 -0
  899. package/static/images/office1.webp +0 -0
  900. package/static/images/product-1.webp +0 -0
  901. package/static/images/profile-picture-1.webp +0 -0
  902. package/static/images/profile-picture-2.webp +0 -0
  903. package/static/images/profile-picture-3.webp +0 -0
  904. package/static/images/profile-picture-4.webp +0 -0
  905. package/static/images/profile-picture-5.webp +0 -0
  906. package/static/site.webmanifest +0 -9
  907. package/static/videos/flowbite.mp4 +0 -0
  908. package/svelte.config.js +0 -24
  909. package/tailwind.config.cjs +0 -88
  910. package/tests/components.spec.ts +0 -176
  911. package/tests/extend.spec.ts +0 -13
  912. package/tests/forms.spec.ts +0 -62
  913. package/tests/page.spec.ts +0 -31
  914. package/tests/redirect.spec.ts +0 -176
  915. package/tests/typography.spec.ts +0 -52
  916. package/tests/utilities.spec.ts +0 -22
  917. package/tsconfig.json +0 -17
  918. package/vite.config.ts +0 -19
@@ -1,26 +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="35" y="64" width="8" height="8" rx="1" fill="#4B5563"/>
3
- <rect x="59" y="64" width="91" height="8" rx="1" fill="#6B7280"/>
4
- <rect x="35" y="83" width="8" height="8" rx="1" fill="#4B5563"/>
5
- <rect x="59" y="83" width="91" height="8" rx="1" fill="#6B7280"/>
6
- <rect x="35" y="102" width="8" height="8" rx="1" fill="#4B5563"/>
7
- <rect x="59" y="102" width="91" height="8" rx="1" fill="#6B7280"/>
8
- <rect x="35" y="121" width="8" height="8" rx="1" fill="#4B5563"/>
9
- <rect x="59" y="121" width="91" height="8" rx="1" fill="#6B7280"/>
10
- <rect x="35" y="140" width="8" height="8" rx="1" fill="#4B5563"/>
11
- <rect x="59" y="140" width="91" height="8" rx="1" fill="#6B7280"/>
12
- <rect x="35" y="159" width="8" height="8" rx="1" fill="#4B5563"/>
13
- <rect x="59" y="159" width="91" height="8" rx="1" fill="#6B7280"/>
14
- <rect x="200" y="64" width="64" height="8" rx="1" fill="#6B7280"/>
15
- <rect x="292" y="64" width="23" height="8" rx="1" fill="#4B5563"/>
16
- <rect x="200" y="83" width="64" height="8" rx="1" fill="#6B7280"/>
17
- <rect x="292" y="83" width="23" height="8" rx="1" fill="#4B5563"/>
18
- <rect x="200" y="102" width="64" height="8" rx="1" fill="#6B7280"/>
19
- <rect x="292" y="102" width="23" height="8" rx="1" fill="#4B5563"/>
20
- <rect x="200" y="121" width="64" height="8" rx="1" fill="#6B7280"/>
21
- <rect x="292" y="121" width="23" height="8" rx="1" fill="#4B5563"/>
22
- <rect x="200" y="140" width="64" height="8" rx="1" fill="#6B7280"/>
23
- <rect x="292" y="140" width="23" height="8" rx="1" fill="#4B5563"/>
24
- <rect x="200" y="159" width="64" height="8" rx="1" fill="#6B7280"/>
25
- <rect x="292" y="159" width="23" height="8" rx="1" fill="#4B5563"/>
26
- </svg>
@@ -1,33 +0,0 @@
1
- <svg width="280" height="220" viewBox="0 0 280 220" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_dd_2159_3076)">
3
- <rect x="10" y="12" width="260" height="196" rx="8" fill="#374151"/>
4
- <circle cx="39.5719" cy="36.4281" r="6.50942" fill="#374151" stroke="#6B7280" stroke-width="3"/>
5
- <rect x="64" y="31.5" width="182" height="10" rx="4" fill="#9CA3AF"/>
6
- <line x1="10" y1="60.5" x2="270" y2="60.5" stroke="#4B5563"/>
7
- <circle cx="39.5719" cy="85.4281" r="6.50942" fill="#374151" stroke="#6B7280" stroke-width="3"/>
8
- <rect x="64" y="80.5" width="182" height="10" rx="4" fill="#9CA3AF"/>
9
- <line x1="10" y1="109.5" x2="270" y2="109.5" stroke="#4B5563"/>
10
- <circle cx="39.5719" cy="134.428" r="6.50942" fill="#374151" stroke="#6B7280" stroke-width="3"/>
11
- <rect x="64" y="129.5" width="182" height="10" rx="4" fill="#9CA3AF"/>
12
- <line x1="10" y1="158.5" x2="270" y2="158.5" stroke="#4B5563"/>
13
- <circle cx="39.5719" cy="183.428" r="6.50942" fill="#374151" stroke="#6B7280" stroke-width="3"/>
14
- <rect x="64" y="178.5" width="182" height="10" rx="4" fill="#9CA3AF"/>
15
- <rect x="10.5" y="12.5" width="259" height="195" rx="7.5" stroke="#4B5563"/>
16
- </g>
17
- <defs>
18
- <filter id="filter0_dd_2159_3076" x="4" y="10" width="272" height="208" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
19
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
20
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
21
- <feOffset dy="4"/>
22
- <feGaussianBlur stdDeviation="3"/>
23
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
24
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2159_3076"/>
25
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
26
- <feOffset dy="2"/>
27
- <feGaussianBlur stdDeviation="2"/>
28
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
29
- <feBlend mode="normal" in2="effect1_dropShadow_2159_3076" result="effect2_dropShadow_2159_3076"/>
30
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2159_3076" result="shape"/>
31
- </filter>
32
- </defs>
33
- </svg>
@@ -1,53 +0,0 @@
1
- <svg width="280" height="220" viewBox="0 0 280 220" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_dd_1864_2041)">
3
- <rect x="10" y="12" width="260" height="196" rx="8" fill="white"/>
4
- <g clip-path="url(#clip0_1864_2041)">
5
- <circle cx="39.5" cy="36.5" r="7.4375" fill="white" stroke="#E5E7EB" stroke-width="3"/>
6
- </g>
7
- <rect x="64" y="31.5" width="182" height="10" rx="4" fill="#D1D5DB"/>
8
- <line x1="10" y1="60.5" x2="270" y2="60.5" stroke="#E4E4E7"/>
9
- <g clip-path="url(#clip1_1864_2041)">
10
- <circle cx="39.5" cy="85.5" r="7.4375" fill="white" stroke="#E5E7EB" stroke-width="3"/>
11
- </g>
12
- <rect x="64" y="80.5" width="182" height="10" rx="4" fill="#D1D5DB"/>
13
- <line x1="10" y1="109.5" x2="270" y2="109.5" stroke="#E4E4E7"/>
14
- <g clip-path="url(#clip2_1864_2041)">
15
- <circle cx="39.5" cy="134.5" r="7.4375" fill="white" stroke="#E5E7EB" stroke-width="3"/>
16
- </g>
17
- <rect x="64" y="129.5" width="182" height="10" rx="4" fill="#D1D5DB"/>
18
- <line x1="10" y1="158.5" x2="270" y2="158.5" stroke="#E4E4E7"/>
19
- <g clip-path="url(#clip3_1864_2041)">
20
- <circle cx="39.5" cy="183.5" r="7.4375" fill="white" stroke="#E5E7EB" stroke-width="3"/>
21
- </g>
22
- <rect x="64" y="178.5" width="182" height="10" rx="4" fill="#D1D5DB"/>
23
- <rect x="10.5" y="12.5" width="259" height="195" rx="7.5" stroke="#D4D4D8"/>
24
- </g>
25
- <defs>
26
- <filter id="filter0_dd_1864_2041" x="4" y="10" width="272" height="208" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
27
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
28
- <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"/>
29
- <feOffset dy="4"/>
30
- <feGaussianBlur stdDeviation="3"/>
31
- <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"/>
32
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1864_2041"/>
33
- <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"/>
34
- <feOffset dy="2"/>
35
- <feGaussianBlur stdDeviation="2"/>
36
- <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"/>
37
- <feBlend mode="normal" in2="effect1_dropShadow_1864_2041" result="effect2_dropShadow_1864_2041"/>
38
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1864_2041" result="shape"/>
39
- </filter>
40
- <clipPath id="clip0_1864_2041">
41
- <rect width="17" height="17" fill="white" transform="translate(31 28)"/>
42
- </clipPath>
43
- <clipPath id="clip1_1864_2041">
44
- <rect width="17" height="17" fill="white" transform="translate(31 77)"/>
45
- </clipPath>
46
- <clipPath id="clip2_1864_2041">
47
- <rect width="17" height="17" fill="white" transform="translate(31 126)"/>
48
- </clipPath>
49
- <clipPath id="clip3_1864_2041">
50
- <rect width="17" height="17" fill="white" transform="translate(31 175)"/>
51
- </clipPath>
52
- </defs>
53
- </svg>
@@ -1,26 +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="35" y="64" width="8" height="8" rx="1" fill="#D1D5DB"/>
3
- <rect x="59" y="64" width="91" height="8" rx="1" fill="#9CA3AF"/>
4
- <rect x="35" y="83" width="8" height="8" rx="1" fill="#D1D5DB"/>
5
- <rect x="59" y="83" width="91" height="8" rx="1" fill="#9CA3AF"/>
6
- <rect x="35" y="102" width="8" height="8" rx="1" fill="#D1D5DB"/>
7
- <rect x="59" y="102" width="91" height="8" rx="1" fill="#9CA3AF"/>
8
- <rect x="35" y="121" width="8" height="8" rx="1" fill="#D1D5DB"/>
9
- <rect x="59" y="121" width="91" height="8" rx="1" fill="#9CA3AF"/>
10
- <rect x="35" y="140" width="8" height="8" rx="1" fill="#D1D5DB"/>
11
- <rect x="59" y="140" width="91" height="8" rx="1" fill="#9CA3AF"/>
12
- <rect x="35" y="159" width="8" height="8" rx="1" fill="#D1D5DB"/>
13
- <rect x="59" y="159" width="91" height="8" rx="1" fill="#9CA3AF"/>
14
- <rect x="200" y="64" width="64" height="8" rx="1" fill="#9CA3AF"/>
15
- <rect x="292" y="64" width="23" height="8" rx="1" fill="#D1D5DB"/>
16
- <rect x="200" y="83" width="64" height="8" rx="1" fill="#9CA3AF"/>
17
- <rect x="292" y="83" width="23" height="8" rx="1" fill="#D1D5DB"/>
18
- <rect x="200" y="102" width="64" height="8" rx="1" fill="#9CA3AF"/>
19
- <rect x="292" y="102" width="23" height="8" rx="1" fill="#D1D5DB"/>
20
- <rect x="200" y="121" width="64" height="8" rx="1" fill="#9CA3AF"/>
21
- <rect x="292" y="121" width="23" height="8" rx="1" fill="#D1D5DB"/>
22
- <rect x="200" y="140" width="64" height="8" rx="1" fill="#9CA3AF"/>
23
- <rect x="292" y="140" width="23" height="8" rx="1" fill="#D1D5DB"/>
24
- <rect x="200" y="159" width="64" height="8" rx="1" fill="#9CA3AF"/>
25
- <rect x="292" y="159" width="23" height="8" rx="1" fill="#D1D5DB"/>
26
- </svg>
@@ -1,72 +0,0 @@
1
- <svg width="333" height="159" viewBox="0 0 333 159" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_dd_2987_4945)">
3
- <rect x="3" y="2" width="327" height="73" rx="4" fill="#374151"/>
4
- <rect x="13" y="12" width="23.3333" height="5" rx="2" fill="#D1D5DB"/>
5
- <rect x="13" y="27" width="40" height="5" rx="2" fill="#9CA3AF"/>
6
- <rect x="13" y="38" width="35" height="5" rx="2" fill="#9CA3AF"/>
7
- <rect x="13" y="49" width="31" height="5" rx="2" fill="#9CA3AF"/>
8
- <rect x="13" y="60" width="37" height="5" rx="2" fill="#9CA3AF"/>
9
- <rect x="92.25" y="12" width="23.3333" height="5" rx="2" fill="#D1D5DB"/>
10
- <rect x="92.25" y="27" width="40" height="5" rx="2" fill="#9CA3AF"/>
11
- <rect x="92.25" y="38" width="35" height="5" rx="2" fill="#9CA3AF"/>
12
- <rect x="92.25" y="49" width="31" height="5" rx="2" fill="#9CA3AF"/>
13
- <rect x="92.25" y="60" width="37" height="5" rx="2" fill="#9CA3AF"/>
14
- <rect x="171.5" y="12" width="23.3333" height="5" rx="2" fill="#D1D5DB"/>
15
- <rect x="171.5" y="27" width="40" height="5" rx="2" fill="#9CA3AF"/>
16
- <rect x="171.5" y="38" width="35" height="5" rx="2" fill="#9CA3AF"/>
17
- <rect x="171.5" y="49" width="31" height="5" rx="2" fill="#9CA3AF"/>
18
- <rect x="171.5" y="60" width="37" height="5" rx="2" fill="#9CA3AF"/>
19
- <rect x="250.75" y="12" width="23.3333" height="5" rx="2" fill="#D1D5DB"/>
20
- <rect x="250.75" y="27" width="40" height="5" rx="2" fill="#9CA3AF"/>
21
- <rect x="250.75" y="38" width="35" height="5" rx="2" fill="#9CA3AF"/>
22
- <rect x="250.75" y="49" width="31" height="5" rx="2" fill="#9CA3AF"/>
23
- <rect x="250.75" y="60" width="37" height="5" rx="2" fill="#9CA3AF"/>
24
- </g>
25
- <g filter="url(#filter1_dd_2987_4945)">
26
- <rect x="3" y="96" width="327" height="59" rx="4" fill="#374151"/>
27
- <rect x="13" y="106" width="57" height="5" rx="2" fill="#9CA3AF"/>
28
- <rect x="13" y="117" width="48" height="5" rx="2" fill="#9CA3AF"/>
29
- <rect x="13" y="128" width="45" height="5" rx="2" fill="#9CA3AF"/>
30
- <rect x="13" y="139" width="53" height="5" rx="2" fill="#9CA3AF"/>
31
- <rect x="99.1445" y="106" width="45" height="5" rx="2" fill="#9CA3AF"/>
32
- <rect x="99.1445" y="117" width="49" height="5" rx="2" fill="#9CA3AF"/>
33
- <rect x="99.1445" y="128" width="39" height="5" rx="2" fill="#9CA3AF"/>
34
- <rect x="99.1445" y="139" width="46" height="5" rx="2" fill="#9CA3AF"/>
35
- <rect x="185.289" y="106" width="55" height="5" rx="2" fill="#9CA3AF"/>
36
- <rect x="185.289" y="117" width="49" height="5" rx="2" fill="#9CA3AF"/>
37
- <rect x="185.289" y="128" width="58" height="5" rx="2" fill="#9CA3AF"/>
38
- <rect x="271.434" y="106" width="48.5663" height="39" rx="3" fill="#6B7280"/>
39
- <path fill-rule="evenodd" clip-rule="evenodd" d="M301.873 121.08C303.014 121.08 303.939 120.111 303.939 118.916C303.939 117.722 303.014 116.753 301.873 116.753C300.732 116.753 299.807 117.722 299.807 118.916C299.807 120.111 300.732 121.08 301.873 121.08ZM296.17 134.182H284.435C283.658 134.182 283.178 133.334 283.578 132.667L291.339 119.728C291.722 119.091 292.64 119.077 293.039 119.705C294.314 121.713 296.776 125.597 298.901 128.994L301.125 125.265C301.493 124.648 302.356 124.628 302.765 125.226L307.815 132.601C308.274 133.271 307.828 134.189 307.038 134.197L302.125 134.247L296.17 134.182Z" fill="#9CA3AF"/>
40
- </g>
41
- <defs>
42
- <filter id="filter0_dd_2987_4945" x="0" y="0" width="333" height="79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
43
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
44
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
45
- <feOffset dy="1"/>
46
- <feGaussianBlur stdDeviation="1.5"/>
47
- <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"/>
48
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2987_4945"/>
49
- <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"/>
50
- <feOffset dy="1"/>
51
- <feGaussianBlur stdDeviation="1"/>
52
- <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"/>
53
- <feBlend mode="normal" in2="effect1_dropShadow_2987_4945" result="effect2_dropShadow_2987_4945"/>
54
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2987_4945" result="shape"/>
55
- </filter>
56
- <filter id="filter1_dd_2987_4945" x="0" y="94" width="333" height="65" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
57
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
58
- <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"/>
59
- <feOffset dy="1"/>
60
- <feGaussianBlur stdDeviation="1.5"/>
61
- <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"/>
62
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2987_4945"/>
63
- <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"/>
64
- <feOffset dy="1"/>
65
- <feGaussianBlur stdDeviation="1"/>
66
- <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"/>
67
- <feBlend mode="normal" in2="effect1_dropShadow_2987_4945" result="effect2_dropShadow_2987_4945"/>
68
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2987_4945" result="shape"/>
69
- </filter>
70
- </defs>
71
- </svg>
72
-
@@ -1,72 +0,0 @@
1
- <svg width="333" height="159" viewBox="0 0 333 159" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_dd_2987_4885)">
3
- <rect x="3" y="2" width="327" height="73" rx="4" fill="white"/>
4
- <rect x="13" y="12" width="23.3333" height="5" rx="2" fill="#9CA3AF"/>
5
- <rect x="13" y="27" width="40" height="5" rx="2" fill="#D1D5DB"/>
6
- <rect x="13" y="38" width="35" height="5" rx="2" fill="#D1D5DB"/>
7
- <rect x="13" y="49" width="31" height="5" rx="2" fill="#D1D5DB"/>
8
- <rect x="13" y="60" width="37" height="5" rx="2" fill="#D1D5DB"/>
9
- <rect x="92.25" y="12" width="23.3333" height="5" rx="2" fill="#9CA3AF"/>
10
- <rect x="92.25" y="27" width="40" height="5" rx="2" fill="#D1D5DB"/>
11
- <rect x="92.25" y="38" width="35" height="5" rx="2" fill="#D1D5DB"/>
12
- <rect x="92.25" y="49" width="31" height="5" rx="2" fill="#D1D5DB"/>
13
- <rect x="92.25" y="60" width="37" height="5" rx="2" fill="#D1D5DB"/>
14
- <rect x="171.5" y="12" width="23.3333" height="5" rx="2" fill="#9CA3AF"/>
15
- <rect x="171.5" y="27" width="40" height="5" rx="2" fill="#D1D5DB"/>
16
- <rect x="171.5" y="38" width="35" height="5" rx="2" fill="#D1D5DB"/>
17
- <rect x="171.5" y="49" width="31" height="5" rx="2" fill="#D1D5DB"/>
18
- <rect x="171.5" y="60" width="37" height="5" rx="2" fill="#D1D5DB"/>
19
- <rect x="250.75" y="12" width="23.3333" height="5" rx="2" fill="#9CA3AF"/>
20
- <rect x="250.75" y="27" width="40" height="5" rx="2" fill="#D1D5DB"/>
21
- <rect x="250.75" y="38" width="35" height="5" rx="2" fill="#D1D5DB"/>
22
- <rect x="250.75" y="49" width="31" height="5" rx="2" fill="#D1D5DB"/>
23
- <rect x="250.75" y="60" width="37" height="5" rx="2" fill="#D1D5DB"/>
24
- </g>
25
- <g filter="url(#filter1_dd_2987_4885)">
26
- <rect x="3" y="96" width="327" height="59" rx="4" fill="white"/>
27
- <rect x="13" y="106" width="57" height="5" rx="2" fill="#D1D5DB"/>
28
- <rect x="13" y="117" width="48" height="5" rx="2" fill="#D1D5DB"/>
29
- <rect x="13" y="128" width="45" height="5" rx="2" fill="#D1D5DB"/>
30
- <rect x="13" y="139" width="53" height="5" rx="2" fill="#D1D5DB"/>
31
- <rect x="99.1445" y="106" width="45" height="5" rx="2" fill="#D1D5DB"/>
32
- <rect x="99.1445" y="117" width="49" height="5" rx="2" fill="#D1D5DB"/>
33
- <rect x="99.1445" y="128" width="39" height="5" rx="2" fill="#D1D5DB"/>
34
- <rect x="99.1445" y="139" width="46" height="5" rx="2" fill="#D1D5DB"/>
35
- <rect x="185.289" y="106" width="55" height="5" rx="2" fill="#D1D5DB"/>
36
- <rect x="185.289" y="117" width="49" height="5" rx="2" fill="#D1D5DB"/>
37
- <rect x="185.289" y="128" width="58" height="5" rx="2" fill="#D1D5DB"/>
38
- <rect x="271.434" y="106" width="48.5663" height="39" rx="3" fill="#D1D5DB"/>
39
- <path fill-rule="evenodd" clip-rule="evenodd" d="M301.873 121.08C303.014 121.08 303.939 120.111 303.939 118.916C303.939 117.722 303.014 116.753 301.873 116.753C300.732 116.753 299.807 117.722 299.807 118.916C299.807 120.111 300.732 121.08 301.873 121.08ZM296.17 134.182H284.435C283.658 134.182 283.178 133.334 283.578 132.667L291.339 119.728C291.722 119.091 292.64 119.077 293.039 119.705C294.314 121.713 296.776 125.597 298.901 128.994L301.125 125.265C301.493 124.648 302.356 124.628 302.765 125.226L307.815 132.601C308.274 133.271 307.828 134.189 307.038 134.197L302.125 134.247L296.17 134.182Z" fill="#9CA3AF"/>
40
- </g>
41
- <defs>
42
- <filter id="filter0_dd_2987_4885" x="0" y="0" width="333" height="79" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
43
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
44
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
45
- <feOffset dy="1"/>
46
- <feGaussianBlur stdDeviation="1.5"/>
47
- <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"/>
48
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2987_4885"/>
49
- <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"/>
50
- <feOffset dy="1"/>
51
- <feGaussianBlur stdDeviation="1"/>
52
- <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"/>
53
- <feBlend mode="normal" in2="effect1_dropShadow_2987_4885" result="effect2_dropShadow_2987_4885"/>
54
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2987_4885" result="shape"/>
55
- </filter>
56
- <filter id="filter1_dd_2987_4885" x="0" y="94" width="333" height="65" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
57
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
58
- <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"/>
59
- <feOffset dy="1"/>
60
- <feGaussianBlur stdDeviation="1.5"/>
61
- <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"/>
62
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2987_4885"/>
63
- <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"/>
64
- <feOffset dy="1"/>
65
- <feGaussianBlur stdDeviation="1"/>
66
- <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"/>
67
- <feBlend mode="normal" in2="effect1_dropShadow_2987_4885" result="effect2_dropShadow_2987_4885"/>
68
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2987_4885" result="shape"/>
69
- </filter>
70
- </defs>
71
- </svg>
72
-
@@ -1,32 +0,0 @@
1
- <svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_dd_2159_3136)">
3
- <rect x="11" y="11" width="327" height="208" rx="8" fill="#374151"/>
4
- <rect x="23" y="25.5" width="76" height="10" rx="3" fill="#9CA3AF"/>
5
- <path d="M322.069 34.4229C322.116 34.4671 322.178 34.4915 322.243 34.4909C322.308 34.4903 322.371 34.464 322.418 34.4177C322.464 34.3713 322.49 34.3086 322.491 34.2431C322.491 34.1786 322.467 34.1164 322.423 34.0695L319.207 30.8537L318.853 30.5001L319.207 30.1466L322.427 26.9268L322.433 26.9207L322.433 26.9207C322.457 26.8977 322.476 26.8701 322.489 26.8396C322.502 26.8091 322.509 26.7763 322.509 26.7431C322.509 26.7099 322.503 26.677 322.491 26.6462C322.478 26.6155 322.459 26.5876 322.436 26.5641C322.412 26.5407 322.385 26.5221 322.354 26.5095C322.323 26.497 322.29 26.4906 322.257 26.4909C322.224 26.4912 322.191 26.4981 322.161 26.5112C322.13 26.5243 322.102 26.5434 322.079 26.5672L322.073 26.5735L322.073 26.5734L318.854 29.7932L318.5 30.1467L318.146 29.7932L314.927 26.5735C314.927 26.5735 314.927 26.5734 314.927 26.5734C314.88 26.5266 314.816 26.5003 314.75 26.5003C314.684 26.5003 314.62 26.5266 314.573 26.5734C314.573 26.5734 314.573 26.5734 314.573 26.5735M322.069 34.4229L314.573 26.5735M322.069 34.4229L318.854 31.2071L318.5 30.8535L318.146 31.2071L314.931 34.4229C314.884 34.4671 314.821 34.4915 314.757 34.4909C314.691 34.4903 314.629 34.464 314.582 34.4177C314.536 34.3713 314.51 34.3086 314.509 34.2431C314.509 34.1786 314.533 34.1164 314.577 34.0695L317.793 30.8537L318.147 30.5001L317.793 30.1466L314.573 26.9269M322.069 34.4229L314.573 26.9269M314.573 26.5735C314.526 26.6204 314.5 26.6839 314.5 26.7501C314.5 26.8164 314.526 26.8799 314.573 26.9268M314.573 26.5735L314.573 26.9268M314.573 26.9268C314.573 26.9268 314.573 26.9269 314.573 26.9269M314.573 26.9268L314.573 26.9269" fill="#9CA3AF" stroke="#9CA3AF"/>
6
- <line x1="11" y1="49.5" x2="338" y2="49.5" stroke="#4B5563"/>
7
- <rect x="23" y="74" width="303" height="10" rx="3" fill="#6B7280"/>
8
- <rect x="23" y="96" width="303" height="10" rx="3" fill="#6B7280"/>
9
- <rect x="23" y="118" width="269" height="10" rx="3" fill="#6B7280"/>
10
- <rect x="23" y="142" width="157" height="10" rx="3" fill="#6B7280"/>
11
- <line x1="11" y1="175.5" x2="338" y2="175.5" stroke="#4B5563"/>
12
- <rect x="232" y="188" width="41" height="19" rx="2" fill="#1A56DB"/>
13
- <rect x="285" y="188" width="41" height="19" rx="2" fill="#9CA3AF"/>
14
- <rect x="10.5" y="10.5" width="328" height="209" rx="8.5" stroke="#374151"/>
15
- </g>
16
- <defs>
17
- <filter id="filter0_dd_2159_3136" x="4" y="8" width="341" height="222" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
18
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
19
- <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"/>
20
- <feOffset dy="4"/>
21
- <feGaussianBlur stdDeviation="3"/>
22
- <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"/>
23
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2159_3136"/>
24
- <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"/>
25
- <feOffset dy="2"/>
26
- <feGaussianBlur stdDeviation="2"/>
27
- <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"/>
28
- <feBlend mode="normal" in2="effect1_dropShadow_2159_3136" result="effect2_dropShadow_2159_3136"/>
29
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2159_3136" result="shape"/>
30
- </filter>
31
- </defs>
32
- </svg>
@@ -1,33 +0,0 @@
1
- <svg width="350" height="230" viewBox="0 0 350 230" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_dd_1864_2045)">
3
- <rect x="11" y="11" width="327" height="208" rx="8" fill="white"/>
4
- <rect x="23" y="25.5" width="76" height="10" rx="3" fill="#E5E7EB"/>
5
- <path d="M322.069 34.4229C322.116 34.4671 322.178 34.4915 322.243 34.4909C322.308 34.4903 322.371 34.464 322.418 34.4177C322.464 34.3713 322.49 34.3086 322.491 34.2431C322.491 34.1786 322.467 34.1164 322.423 34.0695L319.207 30.8537L318.853 30.5001L319.207 30.1466L322.427 26.9268L322.433 26.9207L322.433 26.9207C322.457 26.8977 322.476 26.8701 322.489 26.8396C322.502 26.8091 322.509 26.7763 322.509 26.7431C322.509 26.7099 322.503 26.677 322.491 26.6462C322.478 26.6155 322.459 26.5876 322.436 26.5641C322.412 26.5407 322.385 26.5221 322.354 26.5095C322.323 26.497 322.29 26.4906 322.257 26.4909C322.224 26.4912 322.191 26.4981 322.161 26.5112C322.13 26.5243 322.102 26.5434 322.079 26.5672L322.073 26.5735L322.073 26.5734L318.854 29.7932L318.5 30.1467L318.146 29.7932L314.927 26.5735C314.927 26.5735 314.927 26.5734 314.927 26.5734C314.88 26.5266 314.816 26.5003 314.75 26.5003C314.684 26.5003 314.62 26.5266 314.573 26.5734C314.573 26.5734 314.573 26.5734 314.573 26.5735M322.069 34.4229L314.573 26.5735M322.069 34.4229L318.854 31.2071L318.5 30.8535L318.146 31.2071L314.931 34.4229C314.884 34.4671 314.821 34.4915 314.757 34.4909C314.691 34.4903 314.629 34.464 314.582 34.4177C314.536 34.3713 314.51 34.3086 314.509 34.2431C314.509 34.1786 314.533 34.1164 314.577 34.0695L317.793 30.8537L318.147 30.5001L317.793 30.1466L314.573 26.9269M322.069 34.4229L314.573 26.9269M314.573 26.5735C314.526 26.6204 314.5 26.6839 314.5 26.7501C314.5 26.8164 314.526 26.8799 314.573 26.9268M314.573 26.5735L314.573 26.9268M314.573 26.9268C314.573 26.9268 314.573 26.9269 314.573 26.9269M314.573 26.9268L314.573 26.9269" fill="#A1A1AA" stroke="#9CA3AF"/>
6
- <line x1="11" y1="49.5" x2="338" y2="49.5" stroke="#E4E4E7"/>
7
- <rect x="11" y="50" width="327" height="126" rx="8" fill="white"/>
8
- <rect x="23" y="74" width="303" height="10" rx="3" fill="#E5E7EB"/>
9
- <rect x="23" y="96" width="303" height="10" rx="3" fill="#E5E7EB"/>
10
- <rect x="23" y="118" width="269" height="10" rx="3" fill="#E5E7EB"/>
11
- <rect x="23" y="142" width="157" height="10" rx="3" fill="#E5E7EB"/>
12
- <line x1="11" y1="175.5" x2="338" y2="175.5" stroke="#E4E4E7"/>
13
- <rect x="232" y="188" width="41" height="19" rx="2" fill="#1A56DB"/>
14
- <rect x="285" y="188" width="41" height="19" rx="2" fill="#D1D5DB"/>
15
- <rect x="10.5" y="10.5" width="328" height="209" rx="8.5" stroke="#D1D5DB"/>
16
- </g>
17
- <defs>
18
- <filter id="filter0_dd_1864_2045" x="4" y="8" width="341" height="222" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
19
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
20
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
21
- <feOffset dy="4"/>
22
- <feGaussianBlur stdDeviation="3"/>
23
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
24
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1864_2045"/>
25
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
26
- <feOffset dy="2"/>
27
- <feGaussianBlur stdDeviation="2"/>
28
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0"/>
29
- <feBlend mode="normal" in2="effect1_dropShadow_1864_2045" result="effect2_dropShadow_1864_2045"/>
30
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1864_2045" result="shape"/>
31
- </filter>
32
- </defs>
33
- </svg>
@@ -1,78 +0,0 @@
1
- <svg width="470" height="165" viewBox="0 0 470 165" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g opacity="0.8" filter="url(#filter0_dd_2159_3101)">
3
- <rect width="453.433" height="36" transform="translate(8 9)" fill="#374151"/>
4
- <path d="M23.5 31.1667V22.8333M23.5 31.1667C23.5 31.6087 23.3244 32.0326 23.0118 32.3452C22.6993 32.6577 22.2754 32.8333 21.8333 32.8333H20.1667C19.7246 32.8333 19.3007 32.6577 18.9882 32.3452C18.6756 32.0326 18.5 31.6087 18.5 31.1667V22.8333C18.5 22.3913 18.6756 21.9674 18.9882 21.6548C19.3007 21.3423 19.7246 21.1667 20.1667 21.1667H21.8333C22.2754 21.1667 22.6993 21.3423 23.0118 21.6548C23.3244 21.9674 23.5 22.3913 23.5 22.8333M23.5 31.1667C23.5 31.6087 23.6756 32.0326 23.9882 32.3452C24.3007 32.6577 24.7246 32.8333 25.1667 32.8333H26.8333C27.2754 32.8333 27.6993 32.6577 28.0118 32.3452C28.3244 32.0326 28.5 31.6087 28.5 31.1667M23.5 22.8333C23.5 22.3913 23.6756 21.9674 23.9882 21.6548C24.3007 21.3423 24.7246 21.1667 25.1667 21.1667H26.8333C27.2754 21.1667 27.6993 21.3423 28.0118 21.6548C28.3244 21.9674 28.5 22.3913 28.5 22.8333M28.5 31.1667V22.8333M28.5 31.1667C28.5 31.6087 28.6756 32.0326 28.9882 32.3452C29.3007 32.6577 29.7246 32.8333 30.1667 32.8333H31.8333C32.2754 32.8333 32.6993 32.6577 33.0118 32.3452C33.3244 32.0326 33.5 31.6087 33.5 31.1667V22.8333C33.5 22.3913 33.3244 21.9674 33.0118 21.6548C32.6993 21.3423 32.2754 21.1667 31.8333 21.1667H30.1667C29.7246 21.1667 29.3007 21.3423 28.9882 21.6548C28.6756 21.9674 28.5 22.3913 28.5 22.8333" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
- <path d="M45.7452 19.2645H243.398C244.638 19.2645 245.643 20.2697 245.643 21.5096V32.4904C245.643 33.7303 244.638 34.7355 243.398 34.7355H45.7452C44.5052 34.7355 43.5 33.7303 43.5 32.4904V21.5096C43.5 20.2697 44.5052 19.2645 45.7452 19.2645Z" fill="#4B5563" stroke="#6B7280"/>
6
- <path d="M315.9 24.2548H295.817C294.893 24.2548 294.143 25.4839 294.143 27C294.143 28.5161 294.893 29.7452 295.817 29.7452H315.9C316.824 29.7452 317.573 28.5161 317.573 27C317.573 25.4839 316.824 24.2548 315.9 24.2548Z" fill="#9CA3AF"/>
7
- <path d="M351.33 24.2548H331.247C330.323 24.2548 329.573 25.4839 329.573 27C329.573 28.5161 330.323 29.7452 331.247 29.7452H351.33C352.254 29.7452 353.003 28.5161 353.003 27C353.003 25.4839 352.254 24.2548 351.33 24.2548Z" fill="#9CA3AF"/>
8
- <path d="M390.474 24.2548H366.963C365.88 24.2548 365.003 25.4839 365.003 27C365.003 28.5161 365.88 29.7452 366.963 29.7452H390.474C391.556 29.7452 392.433 28.5161 392.433 27C392.433 25.4839 391.556 24.2548 390.474 24.2548Z" fill="#9CA3AF"/>
9
- <rect x="404.433" y="20.5" width="49" height="13" rx="3" fill="#1C64F2"/>
10
- <rect x="416.433" y="24.9548" width="25" height="4.09043" rx="2" fill="white"/>
11
- </g>
12
- <g opacity="0.8" filter="url(#filter1_dd_2159_3101)">
13
- <rect width="454.433" height="36" transform="translate(8 65)" fill="#374151"/>
14
- <path d="M23.5 87.1667V78.8333M23.5 87.1667C23.5 87.6087 23.3244 88.0326 23.0118 88.3452C22.6993 88.6577 22.2754 88.8333 21.8333 88.8333H20.1667C19.7246 88.8333 19.3007 88.6577 18.9882 88.3452C18.6756 88.0326 18.5 87.6087 18.5 87.1667V78.8333C18.5 78.3913 18.6756 77.9674 18.9882 77.6548C19.3007 77.3423 19.7246 77.1667 20.1667 77.1667H21.8333C22.2754 77.1667 22.6993 77.3423 23.0118 77.6548C23.3244 77.9674 23.5 78.3913 23.5 78.8333M23.5 87.1667C23.5 87.6087 23.6756 88.0326 23.9882 88.3452C24.3007 88.6577 24.7246 88.8333 25.1667 88.8333H26.8333C27.2754 88.8333 27.6993 88.6577 28.0118 88.3452C28.3244 88.0326 28.5 87.6087 28.5 87.1667M23.5 78.8333C23.5 78.3913 23.6756 77.9674 23.9882 77.6548C24.3007 77.3423 24.7246 77.1667 25.1667 77.1667H26.8333C27.2754 77.1667 27.6993 77.3423 28.0118 77.6548C28.3244 77.9674 28.5 78.3913 28.5 78.8333M28.5 87.1667V78.8333M28.5 87.1667C28.5 87.6087 28.6756 88.0326 28.9882 88.3452C29.3007 88.6577 29.7246 88.8333 30.1667 88.8333H31.8333C32.2754 88.8333 32.6993 88.6577 33.0118 88.3452C33.3244 88.0326 33.5 87.6087 33.5 87.1667V78.8333C33.5 78.3913 33.3244 77.9674 33.0118 77.6548C32.6993 77.3423 32.2754 77.1667 31.8333 77.1667H30.1667C29.7246 77.1667 29.3007 77.3423 28.9882 77.6548C28.6756 77.9674 28.5 78.3913 28.5 78.8333" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
15
- <path d="M64.7564 80.2548H44.6736C43.7493 80.2548 43 81.4839 43 83C43 84.5161 43.7493 85.7452 44.6736 85.7452H64.7564C65.6807 85.7452 66.43 84.5161 66.43 83C66.43 81.4839 65.6807 80.2548 64.7564 80.2548Z" fill="#9CA3AF"/>
16
- <path d="M95.1864 80.2548H75.1035C74.1792 80.2548 73.4299 81.4839 73.4299 83C73.4299 84.5161 74.1792 85.7452 75.1035 85.7452H95.1864C96.1106 85.7452 96.8599 84.5161 96.8599 83C96.8599 81.4839 96.1106 80.2548 95.1864 80.2548Z" fill="#9CA3AF"/>
17
- <path d="M129.331 80.2548H105.819C104.737 80.2548 103.86 81.4839 103.86 83C103.86 84.5161 104.737 85.7452 105.819 85.7452H129.331C130.413 85.7452 131.29 84.5161 131.29 83C131.29 81.4839 130.413 80.2548 129.331 80.2548Z" fill="#9CA3AF"/>
18
- <path d="M193.035 75.2645H390.688C391.928 75.2645 392.933 76.2697 392.933 77.5096V88.4904C392.933 89.7303 391.928 90.7355 390.688 90.7355H193.035C191.795 90.7355 190.79 89.7303 190.79 88.4904V77.5096C190.79 76.2697 191.795 75.2645 193.035 75.2645Z" fill="#4B5563" stroke="#6B7280"/>
19
- <rect x="405.433" y="76.5" width="49" height="13" rx="3" fill="#1C64F2"/>
20
- <rect x="417.433" y="80.9548" width="25" height="4.09043" rx="2" fill="white"/>
21
- </g>
22
- <g opacity="0.8" filter="url(#filter2_dd_2159_3101)">
23
- <rect width="453" height="36" transform="translate(8 121)" fill="#374151"/>
24
- <path d="M37.7564 136.255H17.6736C16.7493 136.255 16 137.484 16 139C16 140.516 16.7493 141.745 17.6736 141.745H37.7564C38.6807 141.745 39.43 140.516 39.43 139C39.43 137.484 38.6807 136.255 37.7564 136.255Z" fill="#9CA3AF"/>
25
- <path d="M71.9008 136.255H48.3893C47.3073 136.255 46.4301 137.484 46.4301 139C46.4301 140.516 47.3073 141.745 48.3893 141.745H71.9008C72.9829 141.745 73.8601 140.516 73.8601 139C73.8601 137.484 72.9829 136.255 71.9008 136.255Z" fill="#9CA3AF"/>
26
- <path d="M102.616 136.255H82.5336C81.6093 136.255 80.86 137.484 80.86 139C80.86 140.516 81.6093 141.745 82.5336 141.745H102.616C103.541 141.745 104.29 140.516 104.29 139C104.29 137.484 103.541 136.255 102.616 136.255Z" fill="#9CA3AF"/>
27
- <path d="M136.761 136.255H113.249C112.167 136.255 111.29 137.484 111.29 139C111.29 140.516 112.167 141.745 113.249 141.745H136.761C137.843 141.745 138.72 140.516 138.72 139C138.72 137.484 137.843 136.255 136.761 136.255Z" fill="#9CA3AF"/>
28
- <path d="M232 143.167V134.833M232 143.167C232 143.609 231.824 144.033 231.512 144.345C231.199 144.658 230.775 144.833 230.333 144.833H228.667C228.225 144.833 227.801 144.658 227.488 144.345C227.176 144.033 227 143.609 227 143.167V134.833C227 134.391 227.176 133.967 227.488 133.655C227.801 133.342 228.225 133.167 228.667 133.167H230.333C230.775 133.167 231.199 133.342 231.512 133.655C231.824 133.967 232 134.391 232 134.833M232 143.167C232 143.609 232.176 144.033 232.488 144.345C232.801 144.658 233.225 144.833 233.667 144.833H235.333C235.775 144.833 236.199 144.658 236.512 144.345C236.824 144.033 237 143.609 237 143.167M232 134.833C232 134.391 232.176 133.967 232.488 133.655C232.801 133.342 233.225 133.167 233.667 133.167H235.333C235.775 133.167 236.199 133.342 236.512 133.655C236.824 133.967 237 134.391 237 134.833M237 143.167V134.833M237 143.167C237 143.609 237.176 144.033 237.488 144.345C237.801 144.658 238.225 144.833 238.667 144.833H240.333C240.775 144.833 241.199 144.658 241.512 144.345C241.824 144.033 242 143.609 242 143.167V134.833C242 134.391 241.824 133.967 241.512 133.655C241.199 133.342 240.775 133.167 240.333 133.167H238.667C238.225 133.167 237.801 133.342 237.488 133.655C237.176 133.967 237 134.391 237 134.833" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
29
- <rect x="343" y="132.5" width="49" height="13" rx="3" fill="#9CA3AF"/>
30
- <rect x="355" y="136.955" width="25" height="4.09043" rx="2" fill="white"/>
31
- <rect x="404" y="132.5" width="49" height="13" rx="3" fill="#1C64F2"/>
32
- <rect x="416" y="136.955" width="25" height="4.09043" rx="2" fill="white"/>
33
- </g>
34
- <defs>
35
- <filter id="filter0_dd_2159_3101" x="5" y="7" width="459.433" height="42" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
36
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
37
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
38
- <feOffset dy="1"/>
39
- <feGaussianBlur stdDeviation="1.5"/>
40
- <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"/>
41
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2159_3101"/>
42
- <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"/>
43
- <feOffset dy="1"/>
44
- <feGaussianBlur stdDeviation="1"/>
45
- <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"/>
46
- <feBlend mode="normal" in2="effect1_dropShadow_2159_3101" result="effect2_dropShadow_2159_3101"/>
47
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2159_3101" result="shape"/>
48
- </filter>
49
- <filter id="filter1_dd_2159_3101" x="5" y="63" width="460.433" height="42" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
50
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
51
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
52
- <feOffset dy="1"/>
53
- <feGaussianBlur stdDeviation="1.5"/>
54
- <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"/>
55
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2159_3101"/>
56
- <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"/>
57
- <feOffset dy="1"/>
58
- <feGaussianBlur stdDeviation="1"/>
59
- <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"/>
60
- <feBlend mode="normal" in2="effect1_dropShadow_2159_3101" result="effect2_dropShadow_2159_3101"/>
61
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2159_3101" result="shape"/>
62
- </filter>
63
- <filter id="filter2_dd_2159_3101" x="5" y="119" width="459" height="42" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
64
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
65
- <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"/>
66
- <feOffset dy="1"/>
67
- <feGaussianBlur stdDeviation="1.5"/>
68
- <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"/>
69
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2159_3101"/>
70
- <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"/>
71
- <feOffset dy="1"/>
72
- <feGaussianBlur stdDeviation="1"/>
73
- <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"/>
74
- <feBlend mode="normal" in2="effect1_dropShadow_2159_3101" result="effect2_dropShadow_2159_3101"/>
75
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_2159_3101" result="shape"/>
76
- </filter>
77
- </defs>
78
- </svg>
@@ -1,78 +0,0 @@
1
- <svg width="470" height="165" viewBox="0 0 470 165" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g opacity="0.8" filter="url(#filter0_dd_1864_2043)">
3
- <rect width="453.433" height="36" transform="translate(8 8)" fill="#FAFAFA"/>
4
- <path d="M23.5 30.1667V21.8333M23.5 30.1667C23.5 30.6087 23.3244 31.0326 23.0118 31.3452C22.6993 31.6577 22.2754 31.8333 21.8333 31.8333H20.1667C19.7246 31.8333 19.3007 31.6577 18.9882 31.3452C18.6756 31.0326 18.5 30.6087 18.5 30.1667V21.8333C18.5 21.3913 18.6756 20.9674 18.9882 20.6548C19.3007 20.3423 19.7246 20.1667 20.1667 20.1667H21.8333C22.2754 20.1667 22.6993 20.3423 23.0118 20.6548C23.3244 20.9674 23.5 21.3913 23.5 21.8333M23.5 30.1667C23.5 30.6087 23.6756 31.0326 23.9882 31.3452C24.3007 31.6577 24.7246 31.8333 25.1667 31.8333H26.8333C27.2754 31.8333 27.6993 31.6577 28.0118 31.3452C28.3244 31.0326 28.5 30.6087 28.5 30.1667M23.5 21.8333C23.5 21.3913 23.6756 20.9674 23.9882 20.6548C24.3007 20.3423 24.7246 20.1667 25.1667 20.1667H26.8333C27.2754 20.1667 27.6993 20.3423 28.0118 20.6548C28.3244 20.9674 28.5 21.3913 28.5 21.8333M28.5 30.1667V21.8333M28.5 30.1667C28.5 30.6087 28.6756 31.0326 28.9882 31.3452C29.3007 31.6577 29.7246 31.8333 30.1667 31.8333H31.8333C32.2754 31.8333 32.6993 31.6577 33.0118 31.3452C33.3244 31.0326 33.5 30.6087 33.5 30.1667V21.8333C33.5 21.3913 33.3244 20.9674 33.0118 20.6548C32.6993 20.3423 32.2754 20.1667 31.8333 20.1667H30.1667C29.7246 20.1667 29.3007 20.3423 28.9882 20.6548C28.6756 20.9674 28.5 21.3913 28.5 21.8333" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
- <path d="M243.398 17.7645H45.7452C44.2291 17.7645 43 18.9935 43 20.5096V31.4904C43 33.0065 44.2291 34.2355 45.7452 34.2355H243.398C244.914 34.2355 246.143 33.0065 246.143 31.4904V20.5096C246.143 18.9935 244.914 17.7645 243.398 17.7645Z" fill="#E4E4E7"/>
6
- <path d="M315.9 23.2548H295.817C294.893 23.2548 294.143 24.4839 294.143 26C294.143 27.5161 294.893 28.7452 295.817 28.7452H315.9C316.824 28.7452 317.573 27.5161 317.573 26C317.573 24.4839 316.824 23.2548 315.9 23.2548Z" fill="#9CA3AF"/>
7
- <path d="M351.33 23.2548H331.247C330.323 23.2548 329.573 24.4839 329.573 26C329.573 27.5161 330.323 28.7452 331.247 28.7452H351.33C352.254 28.7452 353.003 27.5161 353.003 26C353.003 24.4839 352.254 23.2548 351.33 23.2548Z" fill="#9CA3AF"/>
8
- <path d="M390.474 23.2548H366.963C365.88 23.2548 365.003 24.4839 365.003 26C365.003 27.5161 365.88 28.7452 366.963 28.7452H390.474C391.556 28.7452 392.433 27.5161 392.433 26C392.433 24.4839 391.556 23.2548 390.474 23.2548Z" fill="#9CA3AF"/>
9
- <rect x="404.433" y="19.5" width="49" height="13" rx="3" fill="#1A56DB"/>
10
- <rect x="416.433" y="23.9548" width="25" height="4.09043" rx="2" fill="white"/>
11
- </g>
12
- <g opacity="0.8" filter="url(#filter1_dd_1864_2043)">
13
- <rect width="454.433" height="36" transform="translate(8 64)" fill="#FAFAFA"/>
14
- <path d="M23.5 86.1667V77.8333M23.5 86.1667C23.5 86.6087 23.3244 87.0326 23.0118 87.3452C22.6993 87.6577 22.2754 87.8333 21.8333 87.8333H20.1667C19.7246 87.8333 19.3007 87.6577 18.9882 87.3452C18.6756 87.0326 18.5 86.6087 18.5 86.1667V77.8333C18.5 77.3913 18.6756 76.9674 18.9882 76.6548C19.3007 76.3423 19.7246 76.1667 20.1667 76.1667H21.8333C22.2754 76.1667 22.6993 76.3423 23.0118 76.6548C23.3244 76.9674 23.5 77.3913 23.5 77.8333M23.5 86.1667C23.5 86.6087 23.6756 87.0326 23.9882 87.3452C24.3007 87.6577 24.7246 87.8333 25.1667 87.8333H26.8333C27.2754 87.8333 27.6993 87.6577 28.0118 87.3452C28.3244 87.0326 28.5 86.6087 28.5 86.1667M23.5 77.8333C23.5 77.3913 23.6756 76.9674 23.9882 76.6548C24.3007 76.3423 24.7246 76.1667 25.1667 76.1667H26.8333C27.2754 76.1667 27.6993 76.3423 28.0118 76.6548C28.3244 76.9674 28.5 77.3913 28.5 77.8333M28.5 86.1667V77.8333M28.5 86.1667C28.5 86.6087 28.6756 87.0326 28.9882 87.3452C29.3007 87.6577 29.7246 87.8333 30.1667 87.8333H31.8333C32.2754 87.8333 32.6993 87.6577 33.0118 87.3452C33.3244 87.0326 33.5 86.6087 33.5 86.1667V77.8333C33.5 77.3913 33.3244 76.9674 33.0118 76.6548C32.6993 76.3423 32.2754 76.1667 31.8333 76.1667H30.1667C29.7246 76.1667 29.3007 76.3423 28.9882 76.6548C28.6756 76.9674 28.5 77.3913 28.5 77.8333" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
15
- <path d="M64.7564 79.2548H44.6736C43.7493 79.2548 43 80.4839 43 82C43 83.5161 43.7493 84.7452 44.6736 84.7452H64.7564C65.6807 84.7452 66.43 83.5161 66.43 82C66.43 80.4839 65.6807 79.2548 64.7564 79.2548Z" fill="#9CA3AF"/>
16
- <path d="M95.1864 79.2548H75.1035C74.1792 79.2548 73.4299 80.4839 73.4299 82C73.4299 83.5161 74.1792 84.7452 75.1035 84.7452H95.1864C96.1106 84.7452 96.8599 83.5161 96.8599 82C96.8599 80.4839 96.1106 79.2548 95.1864 79.2548Z" fill="#9CA3AF"/>
17
- <path d="M129.331 79.2548H105.819C104.737 79.2548 103.86 80.4839 103.86 82C103.86 83.5161 104.737 84.7452 105.819 84.7452H129.331C130.413 84.7452 131.29 83.5161 131.29 82C131.29 80.4839 130.413 79.2548 129.331 79.2548Z" fill="#9CA3AF"/>
18
- <path d="M390.688 73.7645H193.035C191.519 73.7645 190.29 74.9935 190.29 76.5096V87.4904C190.29 89.0065 191.519 90.2355 193.035 90.2355H390.688C392.204 90.2355 393.433 89.0065 393.433 87.4904V76.5096C393.433 74.9935 392.204 73.7645 390.688 73.7645Z" fill="#E4E4E7"/>
19
- <rect x="405.433" y="75.5" width="49" height="13" rx="3" fill="#1A56DB"/>
20
- <rect x="417.433" y="79.9548" width="25" height="4.09043" rx="2" fill="white"/>
21
- </g>
22
- <g opacity="0.8" filter="url(#filter2_dd_1864_2043)">
23
- <rect width="453" height="36" transform="translate(8 120)" fill="#FAFAFA"/>
24
- <path d="M37.7564 135.255H17.6736C16.7493 135.255 16 136.484 16 138C16 139.516 16.7493 140.745 17.6736 140.745H37.7564C38.6807 140.745 39.43 139.516 39.43 138C39.43 136.484 38.6807 135.255 37.7564 135.255Z" fill="#9CA3AF"/>
25
- <path d="M71.9008 135.255H48.3893C47.3073 135.255 46.4301 136.484 46.4301 138C46.4301 139.516 47.3073 140.745 48.3893 140.745H71.9008C72.9829 140.745 73.8601 139.516 73.8601 138C73.8601 136.484 72.9829 135.255 71.9008 135.255Z" fill="#9CA3AF"/>
26
- <path d="M102.616 135.255H82.5336C81.6093 135.255 80.86 136.484 80.86 138C80.86 139.516 81.6093 140.745 82.5336 140.745H102.616C103.541 140.745 104.29 139.516 104.29 138C104.29 136.484 103.541 135.255 102.616 135.255Z" fill="#9CA3AF"/>
27
- <path d="M136.761 135.255H113.249C112.167 135.255 111.29 136.484 111.29 138C111.29 139.516 112.167 140.745 113.249 140.745H136.761C137.843 140.745 138.72 139.516 138.72 138C138.72 136.484 137.843 135.255 136.761 135.255Z" fill="#9CA3AF"/>
28
- <path d="M232 142.167V133.833M232 142.167C232 142.609 231.824 143.033 231.512 143.345C231.199 143.658 230.775 143.833 230.333 143.833H228.667C228.225 143.833 227.801 143.658 227.488 143.345C227.176 143.033 227 142.609 227 142.167V133.833C227 133.391 227.176 132.967 227.488 132.655C227.801 132.342 228.225 132.167 228.667 132.167H230.333C230.775 132.167 231.199 132.342 231.512 132.655C231.824 132.967 232 133.391 232 133.833M232 142.167C232 142.609 232.176 143.033 232.488 143.345C232.801 143.658 233.225 143.833 233.667 143.833H235.333C235.775 143.833 236.199 143.658 236.512 143.345C236.824 143.033 237 142.609 237 142.167M232 133.833C232 133.391 232.176 132.967 232.488 132.655C232.801 132.342 233.225 132.167 233.667 132.167H235.333C235.775 132.167 236.199 132.342 236.512 132.655C236.824 132.967 237 133.391 237 133.833M237 142.167V133.833M237 142.167C237 142.609 237.176 143.033 237.488 143.345C237.801 143.658 238.225 143.833 238.667 143.833H240.333C240.775 143.833 241.199 143.658 241.512 143.345C241.824 143.033 242 142.609 242 142.167V133.833C242 133.391 241.824 132.967 241.512 132.655C241.199 132.342 240.775 132.167 240.333 132.167H238.667C238.225 132.167 237.801 132.342 237.488 132.655C237.176 132.967 237 133.391 237 133.833" stroke="#9CA3AF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
29
- <rect x="343" y="131.5" width="49" height="13" rx="3" fill="#D1D5DB"/>
30
- <rect x="355" y="135.955" width="25" height="4.09043" rx="2" fill="white"/>
31
- <rect x="404" y="131.5" width="49" height="13" rx="3" fill="#1A56DB"/>
32
- <rect x="416" y="135.955" width="25" height="4.09043" rx="2" fill="white"/>
33
- </g>
34
- <defs>
35
- <filter id="filter0_dd_1864_2043" x="5" y="6" width="459.433" height="42" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
36
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
37
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
38
- <feOffset dy="1"/>
39
- <feGaussianBlur stdDeviation="1.5"/>
40
- <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"/>
41
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1864_2043"/>
42
- <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"/>
43
- <feOffset dy="1"/>
44
- <feGaussianBlur stdDeviation="1"/>
45
- <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"/>
46
- <feBlend mode="normal" in2="effect1_dropShadow_1864_2043" result="effect2_dropShadow_1864_2043"/>
47
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1864_2043" result="shape"/>
48
- </filter>
49
- <filter id="filter1_dd_1864_2043" x="5" y="62" width="460.433" height="42" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
50
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
51
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
52
- <feOffset dy="1"/>
53
- <feGaussianBlur stdDeviation="1.5"/>
54
- <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"/>
55
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1864_2043"/>
56
- <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"/>
57
- <feOffset dy="1"/>
58
- <feGaussianBlur stdDeviation="1"/>
59
- <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"/>
60
- <feBlend mode="normal" in2="effect1_dropShadow_1864_2043" result="effect2_dropShadow_1864_2043"/>
61
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1864_2043" result="shape"/>
62
- </filter>
63
- <filter id="filter2_dd_1864_2043" x="5" y="118" width="459" height="42" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
64
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
65
- <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"/>
66
- <feOffset dy="1"/>
67
- <feGaussianBlur stdDeviation="1.5"/>
68
- <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"/>
69
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1864_2043"/>
70
- <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"/>
71
- <feOffset dy="1"/>
72
- <feGaussianBlur stdDeviation="1"/>
73
- <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"/>
74
- <feBlend mode="normal" in2="effect1_dropShadow_1864_2043" result="effect2_dropShadow_1864_2043"/>
75
- <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1864_2043" result="shape"/>
76
- </filter>
77
- </defs>
78
- </svg>