@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 IconNaturePeople_Outlined = class IconNaturePeople_Outlined extends LitElement {
render() {
return svgTag('<circle cx="4.5" cy="9.5" r="1.5"/><path d="M22.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7A6.98 6.98 0 0 0 14 16.06V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88a7 7 0 0 0 6.17-6.95zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"/>');
}
};
IconNaturePeople_Outlined.styles = style;
IconNaturePeople_Outlined = __decorate([
customElement('mdui-icon-nature-people--outlined')
], IconNaturePeople_Outlined);
export { IconNaturePeople_Outlined };