@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 978 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 IconMobileScreenShare_TwoTone = class IconMobileScreenShare_TwoTone extends LitElement {
render() {
return svgTag('<path d="M7 19h10V5H7v14zm5.8-8.28v-1.7L16 12l-3.2 2.99v-1.75c-2.22 0-3.69.68-4.8 2.18.45-2.14 1.69-4.27 4.8-4.7z" opacity=".3"/><path d="M17 1H7c-1.1 0-1.99.85-1.99 1.95v18C5.01 22.05 5.9 23 7 23h10c1.1 0 2-.95 2-2.05V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z"/>');
}
};
IconMobileScreenShare_TwoTone.styles = style;
IconMobileScreenShare_TwoTone = __decorate([
customElement('mdui-icon-mobile-screen-share--two-tone')
], IconMobileScreenShare_TwoTone);
export { IconMobileScreenShare_TwoTone };