UNPKG

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.

20 lines (19 loc) 530 B
import { LitElement } from 'lit'; /** * Represents a header item in a igc-dropdown list. * * @element igc-dropdown-header * * @slot - Renders the header. */ export default class IgcDropdownHeaderComponent extends LitElement { static readonly tagName: string; static styles: import("lit").CSSResult[]; static register(): void; protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'igc-dropdown-header': IgcDropdownHeaderComponent; } }