@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 929 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 IconCandlestickChart_Rounded = class IconCandlestickChart_Rounded extends LitElement {
render() {
return svgTag('<path d="M8 4c-.55 0-1 .45-1 1v1H6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H9V5c0-.55-.45-1-1-1zm10 4h-1V5c0-.55-.45-1-1-1s-1 .45-1 1v3h-1c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1h1v4c0 .55.45 1 1 1s1-.45 1-1v-4h1c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1z"/>');
}
};
IconCandlestickChart_Rounded.styles = style;
IconCandlestickChart_Rounded = __decorate([
customElement('mdui-icon-candlestick-chart--rounded')
], IconCandlestickChart_Rounded);
export { IconCandlestickChart_Rounded };