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.
18 lines • 514 B
JavaScript
import { LitElement, css } from 'lit';
import { registerComponent } from '../common/definitions/register.js';
class IgcSliderLabelComponent extends LitElement {
static register() {
registerComponent(IgcSliderLabelComponent);
}
createRenderRoot() {
return this;
}
}
IgcSliderLabelComponent.tagName = 'igc-slider-label';
IgcSliderLabelComponent.styles = css `
:host {
display: none;
}
`;
export default IgcSliderLabelComponent;
//# sourceMappingURL=slider-label.js.map