@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 945 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 IconSendAndArchive_TwoTone = class IconSendAndArchive_TwoTone extends LitElement {
render() {
return svgTag('<path d="M5 7.01v3.49l6 1.5-6 1.5v3.49l5.39-2.27a6.99 6.99 0 0 1 3.48-3.97L5 7.01z" opacity=".3"/><path d="m11 12-6-1.5V7.01l8.87 3.73c.94-.47 2-.75 3.13-.75.1 0 .19.01.28.01L3 4v16l7-2.95V17c0-.8.14-1.56.39-2.28L5 16.99V13.5l6-1.5z"/><path d="M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8-3-3h2.5v-3h1v3H20l-3 3z"/>');
}
};
IconSendAndArchive_TwoTone.styles = style;
IconSendAndArchive_TwoTone = __decorate([
customElement('mdui-icon-send-and-archive--two-tone')
], IconSendAndArchive_TwoTone);
export { IconSendAndArchive_TwoTone };