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.
29 lines (28 loc) • 855 B
TypeScript
import { LitElement } from 'lit';
/**
* A container component for the card's main text content.
* This component should be used within an igc-card element to display the primary content.
*
* @element igc-card-content
*
* @slot - Renders the card text content (e.g., paragraphs, lists).
*
* @example
* ```html
* <igc-card-content>
* <p>This is the main content of the card. It can contain any text or HTML content.</p>
* </igc-card-content>
* ```
*/
export default class IgcCardContentComponent extends LitElement {
static readonly tagName = "igc-card-content";
static styles: import("lit").CSSResult[];
static register(): void;
constructor();
protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'igc-card-content': IgcCardContentComponent;
}
}