import { LitElement } from 'lit'; declare global { interface HTMLElementTagNameMap { [name]: FoxIcon; } } /** * * Use any icon listed in https://fonts.google.com/icons?selected=Material+Icons and place the name inside the component * * @element fox-icon * * @slot default - slot for icon name * * @attr small - Attribute for small icon * @attr large - Attribute for large icon * @attr x-large - Attribute for x-large icon * */ export declare class FoxIcon extends LitElement { /** * @ignore */ static styles: import("lit").CSSResult[]; icon: string; small: boolean; large: boolean; render(): import("lit-html").TemplateResult<1>; } declare const name = "fox-icon"; export {};