@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 873 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 IconForwardToInbox_Rounded = class IconForwardToInbox_Rounded extends LitElement {
render() {
return svgTag('<path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h9v-2H4V8l6.94 4.34c.65.41 1.47.41 2.12 0L20 8v5h2V6c0-1.1-.9-2-2-2zm-8 7L4 6h16l-8 5zm7 5.21c0-.45.54-.67.85-.35l2.79 2.79c.2.2.2.51 0 .71l-2.79 2.79a.5.5 0 0 1-.85-.36V20h-3c-.55 0-1-.45-1-1s.45-1 1-1h3v-1.79z"/>');
}
};
IconForwardToInbox_Rounded.styles = style;
IconForwardToInbox_Rounded = __decorate([
customElement('mdui-icon-forward-to-inbox--rounded')
], IconForwardToInbox_Rounded);
export { IconForwardToInbox_Rounded };