Add a link tag with [flag-icon-css](https://cdnjs.com/libraries/flag-icon-css) library to your index.html file.
npm install ngx-flag-picker
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template:
})
export class AppComponent {
selectedCountryCode = 'us';
countryCodes = ['us', 'lu', 'de', 'bs', 'br', 'pt'];
changeSelectedCountryCode(value: string): void {
this.selectedCountryCode = value;
}
}
``