@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 775 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 IconRunningWithErrors = class IconRunningWithErrors extends LitElement {
render() {
return svgTag('<path d="M22 10v8h-2v-8h2zm-2 10v2h2v-2h-2zm-2-2.71A7.99 7.99 0 0 1 12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8v9l7.55-7.55A9.965 9.965 0 0 0 12 2C6.48 2 2 6.48 2 12s4.48 10 10 10c2.25 0 4.33-.74 6-2v-2.71z"/>');
}
};
IconRunningWithErrors.styles = style;
IconRunningWithErrors = __decorate([
customElement('mdui-icon-running-with-errors')
], IconRunningWithErrors);
export { IconRunningWithErrors };