@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 749 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_Rounded = class IconNature_Rounded extends LitElement {
render() {
return svgTag('<path d="M13 16.12c3.37-.4 6.01-3.19 6.16-6.64.17-3.87-3.02-7.25-6.89-7.31-3.92-.05-7.1 3.1-7.1 7A6.98 6.98 0 0 0 11 16.06V20H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1h-5v-3.88z"/>');
}
};
IconNature_Rounded.styles = style;
IconNature_Rounded = __decorate([
customElement('mdui-icon-nature--rounded')
], IconNature_Rounded);
export { IconNature_Rounded };