@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 808 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 IconAttachFile_TwoTone = class IconAttachFile_TwoTone extends LitElement {
render() {
return svgTag('<path d="M12.5 23c3.04 0 5.5-2.46 5.5-5.5V6h-1.5v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5a2.5 2.5 0 0 1 5 0v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5a2.5 2.5 0 0 0 5 0V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5z"/>');
}
};
IconAttachFile_TwoTone.styles = style;
IconAttachFile_TwoTone = __decorate([
customElement('mdui-icon-attach-file--two-tone')
], IconAttachFile_TwoTone);
export { IconAttachFile_TwoTone };