@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 771 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_Outlined = class IconNightShelter_Outlined extends LitElement {
render() {
return svgTag('<path d="m12 5.5 6 4.5v9H6v-9l6-4.5M12 3 4 9v12h16V9l-8-6zm3 9h-3.5v3.5H8V11H7v7h1v-1.5h8V18h1v-4c0-1.1-.9-2-2-2zm-5.25.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5z"/>');
}
};
IconNightShelter_Outlined.styles = style;
IconNightShelter_Outlined = __decorate([
customElement('mdui-icon-night-shelter--outlined')
], IconNightShelter_Outlined);
export { IconNightShelter_Outlined };