@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 752 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 IconFolderCopy_Outlined = class IconFolderCopy_Outlined extends LitElement {
render() {
return svgTag('<path d="M3 19h17v2H3c-1.1 0-2-.9-2-2V6h2v13zM23 6v9c0 1.1-.9 2-2 2H7c-1.1 0-2-.9-2-2l.01-11c0-1.1.89-2 1.99-2h5l2 2h7c1.1 0 2 .9 2 2zM7 15h14V6h-7.83l-2-2H7v11z"/>');
}
};
IconFolderCopy_Outlined.styles = style;
IconFolderCopy_Outlined = __decorate([
customElement('mdui-icon-folder-copy--outlined')
], IconFolderCopy_Outlined);
export { IconFolderCopy_Outlined };