@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 704 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 IconPerson_Rounded = class IconPerson_Rounded extends LitElement {
render() {
return svgTag('<path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-1c0-2.66-5.33-4-8-4z"/>');
}
};
IconPerson_Rounded.styles = style;
IconPerson_Rounded = __decorate([
customElement('mdui-icon-person--rounded')
], IconPerson_Rounded);
export { IconPerson_Rounded };