@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 859 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_Outlined = class IconImageNotSupported_Outlined extends LitElement {
render() {
return svgTag('<path d="m21.9 21.9-6.1-6.1-2.69-2.69L5 5 3.59 3.59 2.1 2.1.69 3.51 3 5.83V19c0 1.1.9 2 2 2h13.17l2.31 2.31 1.42-1.41zM5 19V7.83l6.84 6.84-.84 1.05L9 13l-3 4h8.17l2 2H5zM7.83 5l-2-2H19c1.1 0 2 .9 2 2v13.17l-2-2V5H7.83z"/>');
}
};
IconImageNotSupported_Outlined.styles = style;
IconImageNotSupported_Outlined = __decorate([
customElement('mdui-icon-image-not-supported--outlined')
], IconImageNotSupported_Outlined);
export { IconImageNotSupported_Outlined };