igniteui-webcomponents
Version:
Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.
28 lines (27 loc) • 922 B
TypeScript
import { LitElement } from 'lit';
/**
* A navigation bar component is used to facilitate navigation through
* a series of hierarchical screens within an app.
*
* @element igc-navbar
*
* @slot - Renders a title inside the default slot.
* @slot start - Renders left aligned icons.
* @slot end - Renders right aligned action icons.
*
* @csspart base - The base wrapper of the navigation bar.
* @csspart start - The left aligned icon container.
* @csspart middle - The navigation bar title container.
* @csspart end - The right aligned action icons container.
*/
export default class IgcNavbarComponent extends LitElement {
static readonly tagName = "igc-navbar";
static styles: import("lit").CSSResult[];
static register(): void;
protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'igc-navbar': IgcNavbarComponent;
}
}