const numberFormat = new Intl.NumberFormat('pt-BR', { style: 'currency', currency: 'BRL', }) export const formatCurrency = (value: number) => numberFormat.format(value)