@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 635 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 IconHMobiledata_TwoTone = class IconHMobiledata_TwoTone extends LitElement {
render() {
return svgTag('<path d="M15 11H9V7H7v10h2v-4h6v4h2V7h-2v4z"/>');
}
};
IconHMobiledata_TwoTone.styles = style;
IconHMobiledata_TwoTone = __decorate([
customElement('mdui-icon-h-mobiledata--two-tone')
], IconHMobiledata_TwoTone);
export { IconHMobiledata_TwoTone };