@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 847 B
JavaScript
import { __decorate } from "tslib";
import { LitElement } from 'lit';
import { customElement } from 'lit/decorators/custom-element.js';
import { style } from '@mdui/shared/icons/shared/style.js';
import { svgTag } from '@mdui/shared/icons/shared/svg-tag.js';
let IconCellWifi_Outlined = class IconCellWifi_Outlined extends LitElement {
render() {
return svgTag('<path d="M6 22h16V5.97L6 22zm14-2h-2v-7.22l2-2V20zM5.22 7.22 3.93 5.93c3.9-3.91 10.24-3.91 14.15 0l-1.29 1.29c-3.19-3.19-8.38-3.19-11.57 0zm7.71 3.85L11 13l-1.93-1.93a2.74 2.74 0 0 1 3.86 0zm1.29-1.28c-1.78-1.77-4.66-1.77-6.43 0L6.5 8.5a6.374 6.374 0 0 1 9 0l-1.28 1.29z"/>');
}
};
IconCellWifi_Outlined.styles = style;
IconCellWifi_Outlined = __decorate([
customElement('mdui-icon-cell-wifi--outlined')
], IconCellWifi_Outlined);
export { IconCellWifi_Outlined };