@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 819 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 IconElectricCar_Sharp = class IconElectricCar_Sharp extends LitElement {
render() {
return svgTag('<path d="M18.58 1H5.43L3 8v9h3v-2h12v2h3V8l-2.42-7zM6.5 12c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm11 0c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 7l1.5-4.5h11L19 7H5zm2 13h4v-2l6 3h-4v2z"/>');
}
};
IconElectricCar_Sharp.styles = style;
IconElectricCar_Sharp = __decorate([
customElement('mdui-icon-electric-car--sharp')
], IconElectricCar_Sharp);
export { IconElectricCar_Sharp };