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 841 B
import { html, LitElement } from 'lit'; import { addThemingController } from '../../theming/theming-controller.js'; import { registerComponent } from '../common/definitions/register.js'; import { styles } from './themes/card.content.base.css.js'; import { all } from './themes/content.js'; import { styles as shared } from './themes/shared/content/card.content.common.css.js'; class IgcCardContentComponent extends LitElement { static register() { registerComponent(IgcCardContentComponent); } constructor() { super(); addThemingController(this, all); } render() { return html ` <slot></slot> `; } } IgcCardContentComponent.tagName = 'igc-card-content'; IgcCardContentComponent.styles = [styles, shared]; export default IgcCardContentComponent; //# sourceMappingURL=card.content.js.map