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.
23 lines (22 loc) • 626 B
TypeScript
import { LitElement } from 'lit';
/** A container which wraps different elements related to a single subject
* @element igc-card
*
* @slot - Renders card content
*/
export default class IgcCardComponent extends LitElement {
static readonly tagName = "igc-card";
static styles: import("lit").CSSResult[];
static register(): void;
/**
* Sets card elevated style, otherwise card looks outlined.
* @attr
*/
elevated: boolean;
protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'igc-card': IgcCardComponent;
}
}