@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 843 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 IconFileDownloadDone_Rounded = class IconFileDownloadDone_Rounded extends LitElement {
render() {
return svgTag('<path d="M19.42 4.71a.996.996 0 0 0-1.41 0L9.53 13.2 5.99 9.66a.996.996 0 1 0-1.41 1.41l4.24 4.24c.39.39 1.02.39 1.41 0l9.19-9.19c.4-.39.4-1.02 0-1.41zM6 20h12c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1z"/>');
}
};
IconFileDownloadDone_Rounded.styles = style;
IconFileDownloadDone_Rounded = __decorate([
customElement('mdui-icon-file-download-done--rounded')
], IconFileDownloadDone_Rounded);
export { IconFileDownloadDone_Rounded };