@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 801 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 IconModeNight_Rounded = class IconModeNight_Rounded extends LitElement {
render() {
return svgTag('<path d="M11.93 2.3c-2.04-.5-4.02-.35-5.77.28-.72.26-.91 1.22-.31 1.71A9.94 9.94 0 0 1 9.5 12a9.94 9.94 0 0 1-3.65 7.71c-.59.49-.42 1.45.31 1.7 1.04.38 2.17.59 3.34.59 6.05 0 10.85-5.38 9.87-11.6-.61-3.92-3.59-7.16-7.44-8.1z"/>');
}
};
IconModeNight_Rounded.styles = style;
IconModeNight_Rounded = __decorate([
customElement('mdui-icon-mode-night--rounded')
], IconModeNight_Rounded);
export { IconModeNight_Rounded };