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) • 708 B
TypeScript
import { LitElement } from 'lit';
/** A container for card's header
* @element igc-card-header
*
* @slot thumbnail - Renders header media like icon
* @slot title - Renders the card title
* @slot subtitle - Renders the card subtitle
* @slot - Renders content next to the card title
*
* @csspart header - The card header container
*/
export default class IgcCardHeaderComponent extends LitElement {
static readonly tagName = "igc-card-header";
static styles: import("lit").CSSResult[];
static register(): void;
protected render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'igc-card-header': IgcCardHeaderComponent;
}
}