@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 920 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_Rounded = class IconRunningWithErrors_Rounded extends LitElement {
render() {
return svgTag('<path d="M21 18c-.55 0-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1zm0 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3-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_Rounded.styles = style;
IconRunningWithErrors_Rounded = __decorate([
customElement('mdui-icon-running-with-errors--rounded')
], IconRunningWithErrors_Rounded);
export { IconRunningWithErrors_Rounded };