@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 832 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_TwoTone = class IconNature_TwoTone extends LitElement {
render() {
return svgTag('<path d="M12.17 4.17c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.25-5-5-5z" opacity=".3"/><path d="M19.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7A6.98 6.98 0 0 0 11 16.06V20H5v2h14v-2h-6v-3.88h-.03c3.49-.4 6.2-3.36 6.2-6.95zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.25 5-5 5z"/>');
}
};
IconNature_TwoTone.styles = style;
IconNature_TwoTone = __decorate([
customElement('mdui-icon-nature--two-tone')
], IconNature_TwoTone);
export { IconNature_TwoTone };