UNPKG

661 BJavaScriptView Raw
1/**
2 * @license
3 * Copyright 2018 Google LLC
4 * SPDX-License-Identifier: Apache-2.0
5 */
6import { __decorate } from "tslib";
7// Style preference for leading underscores.
8// tslint:disable:strip-private-property-underscore
9import { html, LitElement } from 'lit';
10import { customElement } from 'lit/decorators.js';
11import { styles } from './mwc-icon-host.css.js';
12/** @soyCompatible */
13let Icon = class Icon extends LitElement {
14 /** @soyTemplate */
15 render() {
16 return html `<span><slot></slot></span>`;
17 }
18};
19Icon.styles = [styles];
20Icon = __decorate([
21 customElement('mwc-icon')
22], Icon);
23export { Icon };
24//# sourceMappingURL=mwc-icon.js.map
\No newline at end of file