@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 846 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 IconSwapVert_Rounded = class IconSwapVert_Rounded extends LitElement {
render() {
return svgTag('<path d="M16 17.01V11c0-.55-.45-1-1-1s-1 .45-1 1v6.01h-1.79c-.45 0-.67.54-.35.85l2.79 2.78c.2.19.51.19.71 0l2.79-2.78c.32-.31.09-.85-.35-.85H16zM8.65 3.35 5.86 6.14c-.32.31-.1.85.35.85H8V13c0 .55.45 1 1 1s1-.45 1-1V6.99h1.79c.45 0 .67-.54.35-.85L9.35 3.35a.501.501 0 0 0-.7 0z"/>');
}
};
IconSwapVert_Rounded.styles = style;
IconSwapVert_Rounded = __decorate([
customElement('mdui-icon-swap-vert--rounded')
], IconSwapVert_Rounded);
export { IconSwapVert_Rounded };