No Angular utilizo a dependência “ngx-currency”: “^4.0.0”, E ele se adequa ao meu input
<mat-form-field appearance="fill">
<i class="ri-currency-line"></i>
<mat-label>Digite o valor a ser pago</mat-label>
<input
matInput
[formControlName]="'valor'"
currencyMask
[options]="{
prefix: 'R$ ',
suffix: '',
thousands: '.',
decimal: ','
}"
/>
</mat-form-field>
Tem algum semelhante no React ?