@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 815 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 IconNetworkPing_Rounded = class IconNetworkPing_Rounded extends LitElement {
render() {
return svgTag('<path d="M2.71 6.79a.996.996 0 0 0 0 1.41L10.5 16H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1h-5.5l5.15-5.15A2.5 2.5 0 1 0 19.5 6 2.5 2.5 0 0 0 17 8.5c0 .35.07.67.2.97l-5.2 5.2-7.88-7.88a.996.996 0 0 0-1.41 0z"/>');
}
};
IconNetworkPing_Rounded.styles = style;
IconNetworkPing_Rounded = __decorate([
customElement('mdui-icon-network-ping--rounded')
], IconNetworkPing_Rounded);
export { IconNetworkPing_Rounded };