@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 966 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 IconPersonSearch_Rounded = class IconPersonSearch_Rounded extends LitElement {
render() {
return svgTag('<circle cx="10" cy="8" r="4"/><path d="M10.35 14.01C7.62 13.91 2 15.27 2 18v1c0 .55.45 1 1 1h8.54c-2.47-2.76-1.23-5.89-1.19-5.99zm9.08 4.01c.47-.8.7-1.77.48-2.82-.34-1.64-1.72-2.95-3.38-3.16-2.63-.34-4.85 1.87-4.5 4.5.22 1.66 1.52 3.04 3.16 3.38 1.05.22 2.02-.01 2.82-.48l1.86 1.86a.996.996 0 1 0 1.41-1.41l-1.85-1.87zM16 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/>');
}
};
IconPersonSearch_Rounded.styles = style;
IconPersonSearch_Rounded = __decorate([
customElement('mdui-icon-person-search--rounded')
], IconPersonSearch_Rounded);
export { IconPersonSearch_Rounded };