@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 768 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 IconImageNotSupported_Sharp = class IconImageNotSupported_Sharp extends LitElement {
render() {
return svgTag('<path d="m21.9 21.9-8.49-8.49L3 3l-.9-.9L.69 3.51 3 5.83V21h15.17l2.31 2.31 1.42-1.41zM5 18l3.5-4.5 2.5 3.01L12.17 15l3 3H5zm16 .17L5.83 3H21v15.17z"/>');
}
};
IconImageNotSupported_Sharp.styles = style;
IconImageNotSupported_Sharp = __decorate([
customElement('mdui-icon-image-not-supported--sharp')
], IconImageNotSupported_Sharp);
export { IconImageNotSupported_Sharp };