@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 817 B
JavaScript
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_Rounded = class IconTrendingUp_Rounded extends LitElement {
render() {
return svgTag('<path d="m16.85 6.85 1.44 1.44-4.88 4.88-3.29-3.29a.996.996 0 0 0-1.41 0l-6 6.01a.996.996 0 1 0 1.41 1.41L9.41 12l3.29 3.29c.39.39 1.02.39 1.41 0l5.59-5.58 1.44 1.44a.5.5 0 0 0 .85-.35V6.5a.48.48 0 0 0-.49-.5h-4.29a.5.5 0 0 0-.36.85z"/>');
}
};
IconTrendingUp_Rounded.styles = style;
IconTrendingUp_Rounded = __decorate([
customElement('mdui-icon-trending-up--rounded')
], IconTrendingUp_Rounded);
export { IconTrendingUp_Rounded };