mempool/frontend/src/app/components/fiat-selector/fiat-selector.component.html

6 lines
360 B
HTML
Raw Normal View History

2023-01-03 11:56:54 -06:00
<div [formGroup]="fiatForm" class="text-small text-center">
<select formControlName="fiat" class="custom-select custom-select-sm form-control-secondary form-control mx-auto" style="width: 180px;" (change)="changeFiat()">
<option *ngFor="let currency of currencyList" [value]="currency">{{ currencies[currency].name }}</option>
</select>
</div>