@puzzleitc/puzzle-shell
Version:
The standard design for Puzzle tools
17 lines (16 loc) • 384 B
TypeScript
import { LitElement } from "lit";
/**
* Footer action link.
*
* @slot - Slot for the icon and the text
*/
export declare class FooterLink extends LitElement {
href: string;
static styles: import("lit").CSSResult[];
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
"pzsh-footer-link": FooterLink;
}
}