@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 810 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 IconSendToMobile_Outlined = class IconSendToMobile_Outlined extends LitElement {
render() {
return svgTag('<path d="m18 8 4 4-4 4-1.41-1.41L18.17 13H13v-2h5.17l-1.59-1.59L18 8zM7 1.01 17 1c1.1 0 2 .9 2 2v4h-2V6H7v12h10v-1h2v4c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2V3c0-1.1.9-1.99 2-1.99zM7 21h10v-1H7v1zM7 4h10V3H7v1z"/>');
}
};
IconSendToMobile_Outlined.styles = style;
IconSendToMobile_Outlined = __decorate([
customElement('mdui-icon-send-to-mobile--outlined')
], IconSendToMobile_Outlined);
export { IconSendToMobile_Outlined };