import { LitElement, html, svg, css } from "lit";
import { customElement} from "lit/decorators.js";
const buildingPath = svg``;
@customElement("hvs-building-icon")
export default class HvsBuildingIcon extends LitElement {
protected render() {
return html`
`;
}
static styles = css`
.icon-container {
width: 24px;
height: 24px;
}
`
}
declare global {
interface HTMLElementTagNameMap {
"hvs-building-icon": HvsBuildingIcon;
}
}