@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 875 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 IconAreaChart_Rounded = class IconAreaChart_Rounded extends LitElement {
render() {
return svgTag('<path d="m8 17 3.39-4.66c.33-.46.98-.55 1.42-.2L21 18.5v.5c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1v-5.72c.22 0 .44.07.62.22L8 17zm-5-6c.44 0 .88.15 1.25.44l3.37 2.69 2.77-3.81c.66-.91 1.95-1.1 2.85-.4L21 15.97V8c0-.55-.45-1-1-1h-3l-4.18-3.34a.998.998 0 0 0-1.44.2L7 10 3.6 7.45c-.18-.13-.39-.2-.6-.2V11z"/>');
}
};
IconAreaChart_Rounded.styles = style;
IconAreaChart_Rounded = __decorate([
customElement('mdui-icon-area-chart--rounded')
], IconAreaChart_Rounded);
export { IconAreaChart_Rounded };