@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 819 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 IconAutorenew_Outlined = class IconAutorenew_Outlined extends LitElement {
render() {
return svgTag('<path d="M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8A5.87 5.87 0 0 1 6 12c0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z"/>');
}
};
IconAutorenew_Outlined.styles = style;
IconAutorenew_Outlined = __decorate([
customElement('mdui-icon-autorenew--outlined')
], IconAutorenew_Outlined);
export { IconAutorenew_Outlined };