@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 804 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_Rounded = class IconNightlightRound_Rounded extends LitElement {
render() {
return svgTag('<path d="M15.5 22h.21c.84-.02 1.12-1.11.41-1.56a9.99 9.99 0 0 1-4.63-8.43c0-3.55 1.85-6.66 4.63-8.44.7-.45.44-1.54-.39-1.56h-.13c-4.9-.05-9.21 3.53-9.98 8.37C4.64 16.61 9.45 22 15.5 22z"/>');
}
};
IconNightlightRound_Rounded.styles = style;
IconNightlightRound_Rounded = __decorate([
customElement('mdui-icon-nightlight-round--rounded')
], IconNightlightRound_Rounded);
export { IconNightlightRound_Rounded };