@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 888 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 IconSyncProblem_Outlined = class IconSyncProblem_Outlined extends LitElement {
render() {
return svgTag('<path d="M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24A6.003 6.003 0 0 1 5 12a5.99 5.99 0 0 1 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24A6.003 6.003 0 0 1 19 12a5.99 5.99 0 0 1-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z"/>');
}
};
IconSyncProblem_Outlined.styles = style;
IconSyncProblem_Outlined = __decorate([
customElement('mdui-icon-sync-problem--outlined')
], IconSyncProblem_Outlined);
export { IconSyncProblem_Outlined };