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