import {HostBinding} from '@angular/core'; import {MatFormFieldControl} from '@angular/material/form-field'; class WithoutLabelProp extends MatFormFieldControl { } class WithLabelProp extends MatFormFieldControl { @HostBinding('class.floating') get shouldLabelFloat() {return true;} }