@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 844 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 IconNightlight_Outlined = class IconNightlight_Outlined extends LitElement {
render() {
return svgTag('<path d="M14 4c.34 0 .68.02 1.01.07C13.1 6.23 12 9.05 12 12s1.1 5.77 3.01 7.93c-.33.05-.67.07-1.01.07-4.41 0-8-3.59-8-8s3.59-8 8-8m0-2C8.48 2 4 6.48 4 12s4.48 10 10 10c1.82 0 3.53-.5 5-1.35-2.99-1.73-5-4.95-5-8.65s2.01-6.92 5-8.65A9.973 9.973 0 0 0 14 2z"/>');
}
};
IconNightlight_Outlined.styles = style;
IconNightlight_Outlined = __decorate([
customElement('mdui-icon-nightlight--outlined')
], IconNightlight_Outlined);
export { IconNightlight_Outlined };