@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 707 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 IconEgg_Rounded = class IconEgg_Rounded extends LitElement {
render() {
return svgTag('<path d="M12 3C8.5 3 5 9.33 5 14c0 3.87 3.13 7 7 7s7-3.13 7-7c0-4.67-3.5-11-7-11zm1 15c-3 0-5-1.99-5-5 0-.55.45-1 1-1s1 .45 1 1c0 2.92 2.42 3 3 3 .55 0 1 .45 1 1s-.45 1-1 1z"/>');
}
};
IconEgg_Rounded.styles = style;
IconEgg_Rounded = __decorate([
customElement('mdui-icon-egg--rounded')
], IconEgg_Rounded);
export { IconEgg_Rounded };