@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 751 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 IconNature_Outlined = class IconNature_Outlined extends LitElement {
render() {
return svgTag('<path d="M13 16.12h-.03c3.49-.4 6.2-3.36 6.2-6.95 0-3.87-3.13-7-7-7s-7 3.13-7 7A6.98 6.98 0 0 0 11 16.06V20H5v2h14v-2h-6v-3.88zM7.17 9.17c0-2.76 2.24-5 5-5s5 2.24 5 5-2.24 5-5 5-5-2.24-5-5z"/>');
}
};
IconNature_Outlined.styles = style;
IconNature_Outlined = __decorate([
customElement('mdui-icon-nature--outlined')
], IconNature_Outlined);
export { IconNature_Outlined };