@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 881 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 IconPhoneEnabled_Rounded = class IconPhoneEnabled_Rounded extends LitElement {
render() {
return svgTag('<path d="m4.78 15.27 2.54-.29c.61-.07 1.21.14 1.64.57l1.84 1.84c2.83-1.44 5.15-3.75 6.59-6.59l-1.85-1.85a1.99 1.99 0 0 1-.57-1.64l.29-2.52c.12-1.01.97-1.77 1.99-1.77h1.73c1.13 0 2.07.94 2 2.07-.53 8.54-7.36 15.36-15.89 15.89-1.13.07-2.07-.87-2.07-2v-1.73c-.01-1.01.75-1.86 1.76-1.98z"/>');
}
};
IconPhoneEnabled_Rounded.styles = style;
IconPhoneEnabled_Rounded = __decorate([
customElement('mdui-icon-phone-enabled--rounded')
], IconPhoneEnabled_Rounded);
export { IconPhoneEnabled_Rounded };