@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 804 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 IconPersonRemove_Rounded = class IconPersonRemove_Rounded extends LitElement {
render() {
return svgTag('<path d="M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zM2 18v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4s-8 1.34-8 4zm16-8h4c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1z"/>');
}
};
IconPersonRemove_Rounded.styles = style;
IconPersonRemove_Rounded = __decorate([
customElement('mdui-icon-person-remove--rounded')
], IconPersonRemove_Rounded);
export { IconPersonRemove_Rounded };