+ }
+ spacing={3}
+ sx={{ justifyContent: 'space-between', p: 2 }}
+ >
+
+
+ {t('Total orders')}
+
+ {new Intl.NumberFormat('en-US').format(totalOrders)}
+
+
+
+ {t('Orders value')}
+
+
+ {new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(ordersValue)}
+
+
+
+
+ {t('Refunds')}
+
+
+ {new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(refundsValue)}
+
+
+