@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 683 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 IconWindow_Rounded = class IconWindow_Rounded extends LitElement {
render() {
return svgTag('<path d="M11 11V3H5c-1.1 0-2 .9-2 2v6h8zm2 0h8V5c0-1.1-.9-2-2-2h-6v8zm-2 2H3v6c0 1.1.9 2 2 2h6v-8zm2 0v8h6c1.1 0 2-.9 2-2v-6h-8z"/>');
}
};
IconWindow_Rounded.styles = style;
IconWindow_Rounded = __decorate([
customElement('mdui-icon-window--rounded')
], IconWindow_Rounded);
export { IconWindow_Rounded };