@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 831 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 IconSyncAlt_Rounded = class IconSyncAlt_Rounded extends LitElement {
render() {
return svgTag('<path d="m21.65 7.65-2.79-2.79a.501.501 0 0 0-.86.35V7H4c-.55 0-1 .45-1 1s.45 1 1 1h14v1.79c0 .45.54.67.85.35l2.79-2.79c.2-.19.2-.51.01-.7zM20 15H6v-1.79c0-.45-.54-.67-.85-.35l-2.79 2.79c-.2.19-.2.51-.01.7l2.79 2.79c.32.32.86.1.86-.35V17h14c.55 0 1-.45 1-1s-.45-1-1-1z"/>');
}
};
IconSyncAlt_Rounded.styles = style;
IconSyncAlt_Rounded = __decorate([
customElement('mdui-icon-sync-alt--rounded')
], IconSyncAlt_Rounded);
export { IconSyncAlt_Rounded };