@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 786 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 IconConfirmationNumber = class IconConfirmationNumber extends LitElement {
render() {
return svgTag('<path d="M22 10V6a2 2 0 0 0-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-9 7.5h-2v-2h2v2zm0-4.5h-2v-2h2v2zm0-4.5h-2v-2h2v2z"/>');
}
};
IconConfirmationNumber.styles = style;
IconConfirmationNumber = __decorate([
customElement('mdui-icon-confirmation-number')
], IconConfirmationNumber);
export { IconConfirmationNumber };