@claromentis/design-system
Version:
Claromentis Design System Component Library
23 lines (22 loc) • 496 B
TypeScript
import { ComponentInterface } from '../../stencil-public-runtime';
import { CssClassMap } from '../../interfaces';
/**
* @slot - Wrapper for nav items
*/
export declare class Nav implements ComponentInterface {
/**
* The host Element
**/
el: HTMLElement;
/**
* Whether to display nav items vertically or horizontally.
*/
inline: boolean;
/**
* Get the map of CSS classes for the nav tabs.
*
* @return CssClassMap
*/
getClassMap(): CssClassMap;
render(): any;
}