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