@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 1.09 kB
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_TwoTone = class IconPeopleAlt_TwoTone extends LitElement {
render() {
return svgTag('<circle cx="9" cy="8" r="2" opacity=".3"/><path d="M9 15c-2.7 0-5.8 1.29-6 2.01V18h12v-1c-.2-.71-3.3-2-6-2z" opacity=".3"/><path d="M16.67 13.13C18.04 14.06 19 15.32 19 17v3h4v-3c0-2.18-3.57-3.47-6.33-3.87zM15 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 0c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H3v-.99C3.2 16.29 6.3 15 9 15s5.8 1.29 6 2v1z"/>');
}
};
IconPeopleAlt_TwoTone.styles = style;
IconPeopleAlt_TwoTone = __decorate([
customElement('mdui-icon-people-alt--two-tone')
], IconPeopleAlt_TwoTone);
export { IconPeopleAlt_TwoTone };