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.
19 lines (18 loc) • 574 B
TypeScript
import { LitElement } from 'lit';
/**
* A wrapper for navigation drawer's header.
* @element igc-nav-drawer-header-item
*
* @slot - Renders the header content
*/
export default class IgcNavDrawerHeaderItemComponent extends LitElement {
static readonly tagName = "igc-nav-drawer-header-item";
static styles: import("lit").CSSResult[];
static register(): void;
protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'igc-nav-drawer-header-item': IgcNavDrawerHeaderItemComponent;
}
}