portalis-component
Version:
Component Library for Nuxt 3 using TailwindCSS
9 lines (8 loc) • 343 B
TypeScript
import type { Ref, InjectionKey } from '#imports';
export type StyleVariant = 'pill' | 'lines' | 'link';
export type ToggleableVariant = 'sm' | 'md' | 'lg' | 'all';
export interface NavbarSettings {
variant: Ref<StyleVariant>;
toggleable?: Ref<string | undefined>;
}
export declare const NAVBAR_SETTINGS: InjectionKey<NavbarSettings>;