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.

17 lines 481 B
import { css, LitElement } from 'lit'; import { registerComponent } from '../common/definitions/register.js'; export default class IgcSliderLabelComponent extends LitElement { static { this.tagName = 'igc-slider-label'; } static { this.styles = css ` :host { display: none; } `; } static register() { registerComponent(IgcSliderLabelComponent); } createRenderRoot() { return this; } } //# sourceMappingURL=slider-label.js.map