License: MIT
npm install tk-form-input#TkFormInput
License: MIT
```
npm i @angular/forms @angular/flex-layout`$3
Only the PhoneInputComponent is available for this version
#### In your module`
import { TkFormInputModule } from 'tk-form-input';
@NgModule({
imports: [TkFormInputModule]
})`With ReactiveForm
#### In your component typescript class
Don't forget to import ReactiveFormsModule`
this.form = this.formBuilder.group({
phone : ['']
});`
##### In your component html
bind correctly your control name with formControlName.``With template driven form
##### In your component html``
> Remember that "phone" must be a property of your component class and you need to import FormsModule to use ngModelUse all options
``