@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 848 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 IconMoving_Rounded = class IconMoving_Rounded extends LitElement {
render() {
return svgTag('<path d="M2.7 17.29c.39.39 1.02.39 1.41 0L8.7 12.7a.996.996 0 0 1 1.41 0l1.17 1.17a3 3 0 0 0 4.24 0L19.7 9.7l1.44 1.44a.5.5 0 0 0 .85-.35V6.5a.48.48 0 0 0-.49-.5h-4.29c-.45 0-.67.54-.35.85l1.44 1.44-4.17 4.17a.996.996 0 0 1-1.41 0l-1.17-1.17a3 3 0 0 0-4.24 0L2.7 15.88c-.38.39-.38 1.03 0 1.41z"/>');
}
};
IconMoving_Rounded.styles = style;
IconMoving_Rounded = __decorate([
customElement('mdui-icon-moving--rounded')
], IconMoving_Rounded);
export { IconMoving_Rounded };