@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 788 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 IconResetTv_Outlined = class IconResetTv_Outlined extends LitElement {
render() {
return svgTag('<path d="M22 8V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v2h8v-2h4c1.1 0 1.99-.9 1.99-2v-5H22c0-1.1-.9-2-2-2h-7.17l1.83-1.83-1.41-1.41C9.69 10.31 10.88 9.12 9 11l4.24 4.24 1.41-1.41L12.83 12H20v5H4V5h16v3h2z"/>');
}
};
IconResetTv_Outlined.styles = style;
IconResetTv_Outlined = __decorate([
customElement('mdui-icon-reset-tv--outlined')
], IconResetTv_Outlined);
export { IconResetTv_Outlined };