@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 775 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 IconRoundaboutLeft_Sharp = class IconRoundaboutLeft_Sharp extends LitElement {
render() {
return svgTag('<path d="M16 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4v1H5.83l1.59 1.59L6 13 2 9l4-4 1.41 1.41L5.83 8h4.25A6 6 0 0 1 16 3c3.31 0 6 2.69 6 6 0 2.97-2.16 5.44-5 5.92V21h-2v-8h1z"/>');
}
};
IconRoundaboutLeft_Sharp.styles = style;
IconRoundaboutLeft_Sharp = __decorate([
customElement('mdui-icon-roundabout-left--sharp')
], IconRoundaboutLeft_Sharp);
export { IconRoundaboutLeft_Sharp };