@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 797 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 IconFolderOff_Outlined = class IconFolderOff_Outlined extends LitElement {
render() {
return svgTag('<path d="M20 6h-8l-2-2H7.17l4 4H20v9.17l1.76 1.76c.15-.28.24-.59.24-.93V8c0-1.1-.9-2-2-2zM2.1 2.1.69 3.51l1.56 1.56c-.15.28-.24.59-.24.93L2 18c0 1.1.9 2 2 2h13.17l3.31 3.31 1.41-1.41L2.1 2.1zM4 18V6.83L15.17 18H4z"/>');
}
};
IconFolderOff_Outlined.styles = style;
IconFolderOff_Outlined = __decorate([
customElement('mdui-icon-folder-off--outlined')
], IconFolderOff_Outlined);
export { IconFolderOff_Outlined };