@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 1.01 kB
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_Rounded = class IconCancelPresentation_Rounded extends LitElement {
render() {
return svgTag('<path d="M21 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-2zm0 15c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12zm-5.71-9.3a.996.996 0 0 0-1.41 0L12 10.59 10.11 8.7a.996.996 0 1 0-1.41 1.41L10.59 12 8.7 13.89a.996.996 0 1 0 1.41 1.41L12 13.41l1.89 1.89a.996.996 0 1 0 1.41-1.41L13.41 12l1.89-1.89c.38-.38.38-1.02-.01-1.41z"/>');
}
};
IconCancelPresentation_Rounded.styles = style;
IconCancelPresentation_Rounded = __decorate([
customElement('mdui-icon-cancel-presentation--rounded')
], IconCancelPresentation_Rounded);
export { IconCancelPresentation_Rounded };