@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 876 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 IconFlashOff_Rounded = class IconFlashOff_Rounded extends LitElement {
render() {
return svgTag('<path d="M16.12 11.5a.995.995 0 0 0-.86-1.5h-1.87l2.28 2.28.45-.78zm.16-8.05c.33-.67-.15-1.45-.9-1.45H8c-.55 0-1 .45-1 1v.61l6.13 6.13 3.15-6.29zm2.16 14.43L4.12 3.56a.996.996 0 1 0-1.41 1.41L7 9.27V12c0 .55.45 1 1 1h2v7.15c0 .51.67.69.93.25l2.65-4.55 3.44 3.44c.39.39 1.02.39 1.41 0 .4-.39.4-1.02.01-1.41z"/>');
}
};
IconFlashOff_Rounded.styles = style;
IconFlashOff_Rounded = __decorate([
customElement('mdui-icon-flash-off--rounded')
], IconFlashOff_Rounded);
export { IconFlashOff_Rounded };