import { Component, Input } from "@angular/core"; import { WidgetComponent } from "./base-widget.component"; import type { LocationInputProps } from "../widgets/location-input"; @Component({ selector: "halo-location-input", template: '', standalone: true, imports: [WidgetComponent], }) export class LocationInputComponent { widgetId = "location-input"; @Input() config!: LocationInputProps; }