UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 590 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 IconWbShade = class IconWbShade extends LitElement { render() { return svgTag('<path d="M14 12v2.5l5.5 5.5H22zm0 8h3l-3-3zM8 4l-6 6h2v10h8V10h2L8 4zm1 10H7v-4h2v4z"/>'); } }; IconWbShade.styles = style; IconWbShade = __decorate([ customElement('mdui-icon-wb-shade') ], IconWbShade); export { IconWbShade };