@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 914 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 IconLocationCity_Rounded = class IconLocationCity_Rounded extends LitElement {
render() {
return svgTag('<path d="M15 11V5.83c0-.53-.21-1.04-.59-1.41L12.7 2.71a.996.996 0 0 0-1.41 0l-1.7 1.7C9.21 4.79 9 5.3 9 5.83V7H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2h-4zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z"/>');
}
};
IconLocationCity_Rounded.styles = style;
IconLocationCity_Rounded = __decorate([
customElement('mdui-icon-location-city--rounded')
], IconLocationCity_Rounded);
export { IconLocationCity_Rounded };