import { Component, Input } from '@angular/core';
import { FormControl, ReactiveFormsModule } from '@angular/forms';
import { InputComponent } from '../input/input.component';
@Component({
selector: 'field-fiscal-id',
template: ``,
imports: [ReactiveFormsModule, InputComponent],
})
export class FiscalIdComponent {
@Input({ required: true }) control = new FormControl('');
@Input() name = 'fiscal_id';
}