UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 668 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 IconTrendingUp_TwoTone = class IconTrendingUp_TwoTone extends LitElement { render() { return svgTag('<path d="m16 6 2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z"/>'); } }; IconTrendingUp_TwoTone.styles = style; IconTrendingUp_TwoTone = __decorate([ customElement('mdui-icon-trending-up--two-tone') ], IconTrendingUp_TwoTone); export { IconTrendingUp_TwoTone };