@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 786 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 IconAttachment_Sharp = class IconAttachment_Sharp extends LitElement {
render() {
return svgTag('<path d="M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5a2.5 2.5 0 0 1 0 5H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9a2.5 2.5 0 0 0 0 5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z"/>');
}
};
IconAttachment_Sharp.styles = style;
IconAttachment_Sharp = __decorate([
customElement('mdui-icon-attachment--sharp')
], IconAttachment_Sharp);
export { IconAttachment_Sharp };