@puzzleitc/puzzle-shell
Version:
The standard design for Puzzle tools
19 lines (18 loc) • 505 B
TypeScript
import { LitElement } from "lit";
/**
* Menu action with icon and text, will be render in the menu on
* mobile or in the topbar otherwise.
*
* @slot - Slot for the icon and the text
*/
export declare class MenuAction extends LitElement {
href: string;
static styles: import("lit").CSSResult[];
focus(options?: FocusOptions): void;
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
"pzsh-menu-action": MenuAction;
}
}