@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 601 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 IconClose = class IconClose extends LitElement {
render() {
return svgTag('<path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/>');
}
};
IconClose.styles = style;
IconClose = __decorate([
customElement('mdui-icon-close')
], IconClose);
export { IconClose };