@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 795 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 IconMoney_Outlined = class IconMoney_Outlined extends LitElement {
render() {
return svgTag('<path d="M15 16h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zm-7 6h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm1-6h1v4h-1v-4zM5 8h2v8H5zM2 4v16h20V4H2zm18 14H4V6h16v12z"/>');
}
};
IconMoney_Outlined.styles = style;
IconMoney_Outlined = __decorate([
customElement('mdui-icon-money--outlined')
], IconMoney_Outlined);
export { IconMoney_Outlined };