@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 711 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 IconRemoveRoad = class IconRemoveRoad extends LitElement {
render() {
return svgTag('<path d="M18 4h2v9h-2zM4 4h2v16H4zm7 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2zm11.5.41L21.09 15 19 17.09 16.91 15l-1.41 1.41 2.09 2.09-2.09 2.09L16.91 22 19 19.91 21.09 22l1.41-1.41-2.09-2.09z"/>');
}
};
IconRemoveRoad.styles = style;
IconRemoveRoad = __decorate([
customElement('mdui-icon-remove-road')
], IconRemoveRoad);
export { IconRemoveRoad };