@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 875 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 IconBrokenImage_Rounded = class IconBrokenImage_Rounded extends LitElement {
render() {
return svgTag('<path d="M21 5v6.59l-2.29-2.3c-.39-.39-1.03-.39-1.42 0L14 12.59 10.71 9.3a.996.996 0 0 0-1.41 0L6 12.59 3 9.58V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2zm-3 6.42 3 3.01V19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-6.58l2.29 2.29c.39.39 1.02.39 1.41 0l3.3-3.3 3.29 3.29c.39.39 1.02.39 1.41 0l3.3-3.28z"/>');
}
};
IconBrokenImage_Rounded.styles = style;
IconBrokenImage_Rounded = __decorate([
customElement('mdui-icon-broken-image--rounded')
], IconBrokenImage_Rounded);
export { IconBrokenImage_Rounded };