@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 690 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 IconMan_Rounded = class IconMan_Rounded extends LitElement {
render() {
return svgTag('<path d="M14 7h-4c-1.1 0-2 .9-2 2v5c0 .55.45 1 1 1h1v6c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-6h1c.55 0 1-.45 1-1V9c0-1.1-.9-2-2-2z"/><circle cx="12" cy="4" r="2"/>');
}
};
IconMan_Rounded.styles = style;
IconMan_Rounded = __decorate([
customElement('mdui-icon-man--rounded')
], IconMan_Rounded);
export { IconMan_Rounded };