@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 942 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 IconExtensionOff_Rounded = class IconExtensionOff_Rounded extends LitElement {
render() {
return svgTag('<path d="M20.49 21.9a.996.996 0 0 1-1.41 0l-.92-.92c-.06 0-.11.02-.16.02h-3.8c0-2.71-2.16-3-2.7-3s-2.7.29-2.7 3H5c-1.1 0-2-.9-2-2v-3.8c2.71 0 3-2.16 3-2.7s-.3-2.7-2.99-2.7V6c0-.05.02-.09.02-.14l-.93-.93a.996.996 0 1 1 1.41-1.41l16.97 16.97c.4.39.4 1.02.01 1.41zM20 17.17V15a2.5 2.5 0 0 0 0-5V6c0-1.1-.9-2-2-2h-4a2.5 2.5 0 0 0-5 0H6.83L20 17.17z"/>');
}
};
IconExtensionOff_Rounded.styles = style;
IconExtensionOff_Rounded = __decorate([
customElement('mdui-icon-extension-off--rounded')
], IconExtensionOff_Rounded);
export { IconExtensionOff_Rounded };