@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 855 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_Outlined = class IconModeNight_Outlined extends LitElement {
render() {
return svgTag('<path d="M9.5 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-.34 0-.68-.02-1.01-.07 1.91-2.16 3.01-4.98 3.01-7.93s-1.1-5.77-3.01-7.93C8.82 4.02 9.16 4 9.5 4m0-2c-1.82 0-3.53.5-5 1.35 2.99 1.73 5 4.95 5 8.65s-2.01 6.92-5 8.65c1.47.85 3.18 1.35 5 1.35 5.52 0 10-4.48 10-10S15.02 2 9.5 2z"/>');
}
};
IconModeNight_Outlined.styles = style;
IconModeNight_Outlined = __decorate([
customElement('mdui-icon-mode-night--outlined')
], IconModeNight_Outlined);
export { IconModeNight_Outlined };