@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 946 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 IconNightShelter_Rounded = class IconNightShelter_Rounded extends LitElement {
render() {
return svgTag('<path d="m10.8 3.9-6 4.5c-.5.38-.8.97-.8 1.6v9c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-9c0-.63-.3-1.22-.8-1.6l-6-4.5a2.01 2.01 0 0 0-2.4 0zm-1.05 8.6a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5zM16.5 18c-.28 0-.5-.22-.5-.5v-1H8v1c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-6c0-.28.22-.5.5-.5s.5.22.5.5v4h3.5v-3c0-.28.22-.5.5-.5h3c1.1 0 2 .9 2 2v3.5c0 .28-.22.5-.5.5z"/>');
}
};
IconNightShelter_Rounded.styles = style;
IconNightShelter_Rounded = __decorate([
customElement('mdui-icon-night-shelter--rounded')
], IconNightShelter_Rounded);
export { IconNightShelter_Rounded };