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.

18 lines (17 loc) 536 B
import { LitElement } from 'lit'; /** A container for card's media - could be an image, gif, video * @element igc-card-media * * @slot - Renders the card media content */ export default class IgcCardMediaComponent extends LitElement { static readonly tagName = "igc-card-media"; static styles: import("lit").CSSResult; static register(): void; protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'igc-card-media': IgcCardMediaComponent; } }