@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 IconCancelPresentation = class IconCancelPresentation extends LitElement {
render() {
return svgTag('<path d="M21 19.1H3V5h18v14.1zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"/><path d="M14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41z"/>');
}
};
IconCancelPresentation.styles = style;
IconCancelPresentation = __decorate([
customElement('mdui-icon-cancel-presentation')
], IconCancelPresentation);
export { IconCancelPresentation };