UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 620 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 IconHeight_Outlined = class IconHeight_Outlined extends LitElement { render() { return svgTag('<path d="M13 6.99h3L12 3 8 6.99h3v10.02H8L12 21l4-3.99h-3z"/>'); } }; IconHeight_Outlined.styles = style; IconHeight_Outlined = __decorate([ customElement('mdui-icon-height--outlined') ], IconHeight_Outlined); export { IconHeight_Outlined };