@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 811 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 IconElectricBolt_Rounded = class IconElectricBolt_Rounded extends LitElement {
render() {
return svgTag('<path d="M14.69 2.21 4.33 11.49c-.64.58-.28 1.65.58 1.73L13 14l-4.85 6.76c-.22.31-.19.74.08 1.01.3.3.77.31 1.08.02l10.36-9.28c.64-.58.28-1.65-.58-1.73L11 10l4.85-6.76c.22-.31.19-.74-.08-1.01a.77.77 0 0 0-1.08-.02z"/>');
}
};
IconElectricBolt_Rounded.styles = style;
IconElectricBolt_Rounded = __decorate([
customElement('mdui-icon-electric-bolt--rounded')
], IconElectricBolt_Rounded);
export { IconElectricBolt_Rounded };