@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 663 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 IconInsertDriveFile_Sharp = class IconInsertDriveFile_Sharp extends LitElement {
render() {
return svgTag('<path d="M4.01 2 4 22h16V8l-6-6H4.01zM13 9V3.5L18.5 9H13z"/>');
}
};
IconInsertDriveFile_Sharp.styles = style;
IconInsertDriveFile_Sharp = __decorate([
customElement('mdui-icon-insert-drive-file--sharp')
], IconInsertDriveFile_Sharp);
export { IconInsertDriveFile_Sharp };