@fefade/svelte
Version:
Reusable Svelte UI components powered by the fefade core system.
8 lines (7 loc) • 384 B
TypeScript
import type { HTMLAnchorAttributes } from "svelte/elements";
import type { CSSKebabType, LinkType } from "@fefade/core/types";
interface Props extends Omit<Omit<HTMLAnchorAttributes, "class">, "style">, LinkType<CSSKebabType | string> {
}
declare const NavbarItem: import("svelte").Component<Props, {}, "">;
type NavbarItem = ReturnType<typeof NavbarItem>;
export default NavbarItem;