UNPKG

@nopwdio/ui

Version:
29 lines (28 loc) 717 B
import { LitElement } from "lit"; /** * `ui-card` is a custom element that displays a card with a title and description. * The card includes a link and an icon. * * @element ui-card */ export declare class UiCard extends LitElement { /** * Called when the element is added to a document. * @returns {void} */ connectedCallback(): void; /** * Renders the content of the element. * @returns {import('lit').TemplateResult} */ render(): import("lit-html").TemplateResult<1>; /** * Styles for the `ui-card` element. */ static styles: import("lit").CSSResult[]; } declare global { interface HTMLElementTagNameMap { "ui-card": UiCard; } }