UNPKG

@fefade/svelte

Version:

Reusable Svelte UI components powered by the fefade core system.

11 lines (10 loc) 382 B
import type { HTMLAttributes } from "svelte/elements"; import type { VariantType } from "@fefade/core/types"; interface Props extends HTMLAttributes<HTMLDivElement> { isTranslucent?: boolean; fadeOnScroll?: boolean; variant?: VariantType; } declare const Navbar: import("svelte").Component<Props, {}, "">; type Navbar = ReturnType<typeof Navbar>; export default Navbar;