@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 760 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 IconHistory_Sharp = class IconHistory_Sharp extends LitElement {
render() {
return svgTag('<path d="M13 3a9 9 0 0 0-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42A8.954 8.954 0 0 0 13 21a9 9 0 0 0 0-18zm-1 5v5l4.25 2.52.77-1.29-3.52-2.09V8H12z"/>');
}
};
IconHistory_Sharp.styles = style;
IconHistory_Sharp = __decorate([
customElement('mdui-icon-history--sharp')
], IconHistory_Sharp);
export { IconHistory_Sharp };