UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

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