@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 791 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 IconLocalHotel_Rounded = class IconLocalHotel_Rounded extends LitElement {
render() {
return svgTag('<path d="M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-6c-1.1 0-2 .9-2 2v5H3V6c0-.55-.45-1-1-1s-1 .45-1 1v13c0 .55.45 1 1 1s1-.45 1-1v-2h18v2c0 .55.45 1 1 1s1-.45 1-1v-8c0-2.21-1.79-4-4-4z"/>');
}
};
IconLocalHotel_Rounded.styles = style;
IconLocalHotel_Rounded = __decorate([
customElement('mdui-icon-local-hotel--rounded')
], IconLocalHotel_Rounded);
export { IconLocalHotel_Rounded };