@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 842 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 IconWifi_2Bar_Rounded = class IconWifi_2Bar_Rounded extends LitElement {
render() {
return svgTag('<path d="M12 16c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6.62-1.63c-.63-.63-.59-1.71.13-2.24C7.33 10.79 9.57 10 12 10c2.43 0 4.67.79 6.49 2.13.72.53.76 1.6.13 2.24-.53.54-1.37.57-1.98.12A7.925 7.925 0 0 0 12 13c-1.73 0-3.33.55-4.64 1.49-.61.44-1.45.41-1.98-.12z"/>');
}
};
IconWifi_2Bar_Rounded.styles = style;
IconWifi_2Bar_Rounded = __decorate([
customElement('mdui-icon-wifi-2-bar--rounded')
], IconWifi_2Bar_Rounded);
export { IconWifi_2Bar_Rounded };