@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 812 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 IconDirections_Rounded = class IconDirections_Rounded extends LitElement {
render() {
return svgTag('<path d="m21.71 11.29-9-9a.996.996 0 0 0-1.41 0l-9 9a.996.996 0 0 0 0 1.41l9 9c.39.39 1.02.39 1.41 0l9-9a.996.996 0 0 0 0-1.41zM14 14.5V12h-4v2c0 .55-.45 1-1 1s-1-.45-1-1v-3c0-.55.45-1 1-1h5V7.5l3.15 3.15c.2.2.2.51 0 .71L14 14.5z"/>');
}
};
IconDirections_Rounded.styles = style;
IconDirections_Rounded = __decorate([
customElement('mdui-icon-directions--rounded')
], IconDirections_Rounded);
export { IconDirections_Rounded };