@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 897 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 IconNaturePeople_Rounded = class IconNaturePeople_Rounded extends LitElement {
render() {
return svgTag('<circle cx="4.5" cy="9.5" r="1.5"/><path d="M22.17 9.17c0-3.91-3.19-7.06-7.11-7-3.83.06-6.99 3.37-6.88 7.19a6.986 6.986 0 0 0 5.83 6.7V20H6v-3h.5c.28 0 .5-.22.5-.5V13c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v3.5c0 .28.22.5.5.5H3v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1h-2v-3.88a7 7 0 0 0 6.17-6.95z"/>');
}
};
IconNaturePeople_Rounded.styles = style;
IconNaturePeople_Rounded = __decorate([
customElement('mdui-icon-nature-people--rounded')
], IconNaturePeople_Rounded);
export { IconNaturePeople_Rounded };