@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 850 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 IconFileCopy_Rounded = class IconFileCopy_Rounded extends LitElement {
render() {
return svgTag('<path d="M15 1H4c-1.1 0-2 .9-2 2v13c0 .55.45 1 1 1s1-.45 1-1V4c0-.55.45-1 1-1h10c.55 0 1-.45 1-1s-.45-1-1-1zm.59 4.59 4.83 4.83c.37.37.58.88.58 1.41V21c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h6.17c.53 0 1.04.21 1.42.59zM15 12h4.5L14 6.5V11c0 .55.45 1 1 1z"/>');
}
};
IconFileCopy_Rounded.styles = style;
IconFileCopy_Rounded = __decorate([
customElement('mdui-icon-file-copy--rounded')
], IconFileCopy_Rounded);
export { IconFileCopy_Rounded };