import {Component} from '@angular/core'; import {FormBuilder, FormGroup} from '@angular/forms'; /** @title Form field with label */ @Component({ selector: 'form-field-label-example', templateUrl: 'form-field-label-example.html', styleUrls: ['form-field-label-example.css'], }) export class FormFieldLabelExample { options: FormGroup; constructor(fb: FormBuilder) { this.options = fb.group({ hideRequired: false, floatLabel: 'auto', }); } }