@material/mwc-icon
Version:
Material Design icon web component
18 lines (17 loc) • 408 B
TypeScript
/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { LitElement, TemplateResult } from 'lit';
/** @soyCompatible */
export declare class Icon extends LitElement {
static styles: import("lit").CSSResult[];
/** @soyTemplate */
protected render(): TemplateResult;
}
declare global {
interface HTMLElementTagNameMap {
'mwc-icon': Icon;
}
}