@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 961 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 IconPeopleAlt_Rounded = class IconPeopleAlt_Rounded extends LitElement {
render() {
return svgTag('<path fill-rule="evenodd" d="M16.67 13.13C18.04 14.06 19 15.32 19 17v3h3c.55 0 1-.45 1-1v-2c0-2.18-3.57-3.47-6.33-3.87z"/><circle cx="9" cy="8" r="4" fill-rule="evenodd"/><path fill-rule="evenodd" d="M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4c-.47 0-.91.1-1.33.24a5.98 5.98 0 0 1 0 7.52c.42.14.86.24 1.33.24zm-6 1c-2.67 0-8 1.34-8 4v2c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-2c0-2.66-5.33-4-8-4z"/>');
}
};
IconPeopleAlt_Rounded.styles = style;
IconPeopleAlt_Rounded = __decorate([
customElement('mdui-icon-people-alt--rounded')
], IconPeopleAlt_Rounded);
export { IconPeopleAlt_Rounded };