@phosphor-icons/webcomponents
Version:
A flexible icon family for the web
23 lines (22 loc) • 638 B
TypeScript
import { LitElement } from "lit";
import type { IconWeight, IconAttrs } from "../types";
declare global {
interface HTMLElementTagNameMap {
"ph-storefront": IconAttrs;
}
namespace JSX {
interface IntrinsicElements {
"ph-storefront": IconAttrs;
}
}
}
declare class PhStorefront extends LitElement {
static weightsMap: Map<IconWeight, import("lit").TemplateResult<2>>;
size?: string | number;
weight?: IconWeight;
color?: string;
mirrored?: boolean;
render(): import("lit").TemplateResult<1>;
static styles: import("lit").CSSResult;
}
export { PhStorefront };