UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 689 B
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_Outlined = class IconFlashOff_Outlined extends LitElement { render() { return svgTag('<path d="M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z"/>'); } }; IconFlashOff_Outlined.styles = style; IconFlashOff_Outlined = __decorate([ customElement('mdui-icon-flash-off--outlined') ], IconFlashOff_Outlined); export { IconFlashOff_Outlined };