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.

22 lines 905 B
import { html, LitElement } from 'lit'; import { addThemingController } from '../../theming/theming-controller.js'; import { registerComponent } from '../common/definitions/register.js'; import { styles } from './themes/header-item.base.css.js'; import { all } from './themes/header-item.js'; import { styles as shared } from './themes/shared/header-item/header-item.common.css.js'; class IgcNavDrawerHeaderItemComponent extends LitElement { static register() { registerComponent(IgcNavDrawerHeaderItemComponent); } constructor() { super(); addThemingController(this, all); } render() { return html `<slot></slot>`; } } IgcNavDrawerHeaderItemComponent.tagName = 'igc-nav-drawer-header-item'; IgcNavDrawerHeaderItemComponent.styles = [styles, shared]; export default IgcNavDrawerHeaderItemComponent; //# sourceMappingURL=nav-drawer-header-item.js.map