@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 817 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 Icon3gMobiledata_Outlined = class Icon3gMobiledata_Outlined extends LitElement {
render() {
return svgTag('<path d="M3 7v2h5v2H4v2h4v2H3v2h5c1.1 0 2-.9 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V9c0-1.1-.9-2-2-2H3zm18 4v4c0 1.1-.9 2-2 2h-5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h5c1.1 0 2 .9 2 2h-7v6h5v-2h-2.5v-2H21z"/>');
}
};
Icon3gMobiledata_Outlined.styles = style;
Icon3gMobiledata_Outlined = __decorate([
customElement('mdui-icon-3g-mobiledata--outlined')
], Icon3gMobiledata_Outlined);
export { Icon3gMobiledata_Outlined };