@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 806 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 IconHeadset_Rounded = class IconHeadset_Rounded extends LitElement {
render() {
return svgTag('<path d="M11.4 1.02C6.62 1.33 3 5.52 3 10.31V17c0 1.66 1.34 3 3 3h1c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2H5v-1.71C5 6.45 7.96 3.11 11.79 3A6.999 6.999 0 0 1 19 10v2h-2c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h1c1.66 0 3-1.34 3-3v-7c0-5.17-4.36-9.32-9.6-8.98z"/>');
}
};
IconHeadset_Rounded.styles = style;
IconHeadset_Rounded = __decorate([
customElement('mdui-icon-headset--rounded')
], IconHeadset_Rounded);
export { IconHeadset_Rounded };