@puzzleitc/puzzle-shell
Version:
The standard design for Puzzle tools
18 lines (17 loc) • 463 B
TypeScript
import { LitElement } from "lit";
/**
* Dropdown menu item with icon and text.
*
* @slot - Slot for the icon and the text
*/
export declare class MenuDropdownItem 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-dropdown-item": MenuDropdownItem;
}
}