@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 860 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 IconFileDownloadOff_Outlined = class IconFileDownloadOff_Outlined extends LitElement {
render() {
return svgTag('<path d="M18 15.17V15h2v2.17l-2-2zm-2.59-2.58L17 11l-1.41-1.41L14 11.17l1.41 1.42zM13 10.17V4h-2v4.17l2 2zm8.19 11.02-1.78-1.78-16.6-16.6-1.42 1.41 6.19 6.19L7 11l5 5 .59-.59L15.17 18H6v-3H4v3c0 1.1.9 2 2 2h11.17l2.61 2.61 1.41-1.42z"/>');
}
};
IconFileDownloadOff_Outlined.styles = style;
IconFileDownloadOff_Outlined = __decorate([
customElement('mdui-icon-file-download-off--outlined')
], IconFileDownloadOff_Outlined);
export { IconFileDownloadOff_Outlined };