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.

15 lines 525 B
import { LitElement, html } from 'lit'; import { registerComponent } from '../common/definitions/register.js'; import { styles } from './themes/card.media.base.css.js'; class IgcCardMediaComponent extends LitElement { static register() { registerComponent(IgcCardMediaComponent); } render() { return html ` <slot></slot> `; } } IgcCardMediaComponent.tagName = 'igc-card-media'; IgcCardMediaComponent.styles = styles; export default IgcCardMediaComponent; //# sourceMappingURL=card.media.js.map