UNPKG

@fuxui/base

Version:

ui kit - svelte 5 + tailwind 4 - base components

9 lines (8 loc) 346 B
import type { WithElementRef } from 'bits-ui'; import type { HTMLAttributes } from 'svelte/elements'; type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & { hasSidebar?: boolean; }; declare const Navbar: import("svelte").Component<$$ComponentProps, {}, "">; type Navbar = ReturnType<typeof Navbar>; export default Navbar;