svelte-navbar
Version:
A cool animated navbar component for Svelte that switches between a side and a bottom navbar in a very funky way
22 lines (21 loc) • 669 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
color?: string | undefined;
marginBetweenIconsInPercent?: number | undefined;
rowSizeInPx?: number | undefined;
scrollProgress?: number | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export declare type NavbarProps = typeof __propDef.props;
export declare type NavbarEvents = typeof __propDef.events;
export declare type NavbarSlots = typeof __propDef.slots;
export default class Navbar extends SvelteComponentTyped<NavbarProps, NavbarEvents, NavbarSlots> {
}
export {};