@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 718 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 IconTvOff_Sharp = class IconTvOff_Sharp extends LitElement {
render() {
return svgTag('<path d="M21 7v10.88l2 2V5h-9.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2zM2.41 2.13l-.14.14L1 3.54l1.53 1.53H1V21h17.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z"/>');
}
};
IconTvOff_Sharp.styles = style;
IconTvOff_Sharp = __decorate([
customElement('mdui-icon-tv-off--sharp')
], IconTvOff_Sharp);
export { IconTvOff_Sharp };