@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 699 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 = class IconFileDownloadOff extends LitElement {
render() {
return svgTag('<path d="M9 6.17V3h6v6h4l-3.59 3.59L9 6.17zm12.19 15.02L2.81 2.81 1.39 4.22 6.17 9H5l7 7 .59-.59L15.17 18H5v2h12.17l2.61 2.61 1.41-1.42z"/>');
}
};
IconFileDownloadOff.styles = style;
IconFileDownloadOff = __decorate([
customElement('mdui-icon-file-download-off')
], IconFileDownloadOff);
export { IconFileDownloadOff };