@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 893 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 IconSubdirectoryArrowLeft_Rounded = class IconSubdirectoryArrowLeft_Rounded extends LitElement {
render() {
return svgTag('<path d="m5.71 15.71 4.58 4.58c.39.39 1.03.39 1.42 0 .39-.39.39-1.03 0-1.42L8.83 16H19c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1s-1 .45-1 1v9H8.83l2.88-2.87c.39-.39.39-1.03 0-1.42-.39-.39-1.03-.39-1.42 0l-4.58 4.58c-.39.39-.39 1.03 0 1.42z"/>');
}
};
IconSubdirectoryArrowLeft_Rounded.styles = style;
IconSubdirectoryArrowLeft_Rounded = __decorate([
customElement('mdui-icon-subdirectory-arrow-left--rounded')
], IconSubdirectoryArrowLeft_Rounded);
export { IconSubdirectoryArrowLeft_Rounded };