@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 863 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 IconNetworkWifi_Rounded = class IconNetworkWifi_Rounded extends LitElement {
render() {
return svgTag('<path d="M12 4C7.7 4 3.78 5.6.79 8.24.35 8.63.32 9.3.73 9.71l10.56 10.58c.39.39 1.02.39 1.42 0L23.27 9.71c.41-.41.38-1.08-.06-1.47A16.871 16.871 0 0 0 12 4zm0 4c-2.86 0-5.5.94-7.65 2.51L2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-1.43 1.43A12.99 12.99 0 0 0 12 8z"/>');
}
};
IconNetworkWifi_Rounded.styles = style;
IconNetworkWifi_Rounded = __decorate([
customElement('mdui-icon-network-wifi--rounded')
], IconNetworkWifi_Rounded);
export { IconNetworkWifi_Rounded };