@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 781 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 IconNightlightRound = class IconNightlightRound extends LitElement {
render() {
return svgTag('<path d="M12.01 12c0-3.57 2.2-6.62 5.31-7.87.89-.36.75-1.69-.19-1.9-1.1-.24-2.27-.3-3.48-.14-4.51.6-8.12 4.31-8.59 8.83C4.44 16.93 9.13 22 15.01 22c.73 0 1.43-.08 2.12-.23.95-.21 1.1-1.53.2-1.9A8.46 8.46 0 0 1 12.01 12z"/>');
}
};
IconNightlightRound.styles = style;
IconNightlightRound = __decorate([
customElement('mdui-icon-nightlight-round')
], IconNightlightRound);
export { IconNightlightRound };