@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 802 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 IconPayments_Rounded = class IconPayments_Rounded extends LitElement {
render() {
return svgTag('<path d="M23 8v10c0 1.1-.9 2-2 2H5c-.55 0-1-.45-1-1s.45-1 1-1h16V8c0-.55.45-1 1-1s1 .45 1 1zM4 16c-1.66 0-3-1.34-3-3V7c0-1.66 1.34-3 3-3h12c1.66 0 3 1.34 3 3v7c0 1.1-.9 2-2 2H4zm3-6c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z"/>');
}
};
IconPayments_Rounded.styles = style;
IconPayments_Rounded = __decorate([
customElement('mdui-icon-payments--rounded')
], IconPayments_Rounded);
export { IconPayments_Rounded };