@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 864 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 IconStackedBarChart_Rounded = class IconStackedBarChart_Rounded extends LitElement {
render() {
return svgTag('<path d="M6 20c1.1 0 2-.9 2-2V9H4v9c0 1.1.9 2 2 2zM4 8h4V6c0-1.1-.9-2-2-2s-2 .9-2 2v2zm6 3h4V9c0-1.1-.9-2-2-2s-2 .9-2 2v2zm6 1v2h4v-2c0-1.1-.9-2-2-2s-2 .9-2 2zm2 8c1.1 0 2-.9 2-2v-3h-4v3c0 1.1.9 2 2 2zm-6 0c1.1 0 2-.9 2-2v-6h-4v6c0 1.1.9 2 2 2z"/>');
}
};
IconStackedBarChart_Rounded.styles = style;
IconStackedBarChart_Rounded = __decorate([
customElement('mdui-icon-stacked-bar-chart--rounded')
], IconStackedBarChart_Rounded);
export { IconStackedBarChart_Rounded };