@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 930 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 IconGpsOff_Outlined = class IconGpsOff_Outlined extends LitElement {
render() {
return svgTag('<path d="M20.94 11A8.994 8.994 0 0 0 13 3.06V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53a6.995 6.995 0 0 1 8.87 8.87l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04A8.994 8.994 0 0 0 3.06 11H1v2h2.06A8.994 8.994 0 0 0 11 20.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27a6.995 6.995 0 0 1-9.81-9.81l9.81 9.81z"/>');
}
};
IconGpsOff_Outlined.styles = style;
IconGpsOff_Outlined = __decorate([
customElement('mdui-icon-gps-off--outlined')
], IconGpsOff_Outlined);
export { IconGpsOff_Outlined };