@sandlada/mdc
Version:
@sandlada/mdc is an open source component library that follows the Material Design 3 design specifications.
11 lines • 423 B
TypeScript
import type { LitElement } from 'lit';
export type NavigationBarVariant = 'vertical' | 'horizontal' | 'vertical-xr';
export declare const NavigationBarVariant: {
readonly Vertical: 'vertical';
readonly Horizontal: 'horizontal';
readonly VerticalXR: 'vertical-xr';
};
export interface INavigationBar extends LitElement {
variant: NavigationBarVariant;
}
//# sourceMappingURL=navigation-bar.interface.d.ts.map