// @mui import { alpha } from '@mui/material/styles'; import Box from '@mui/material/Box'; import Stack from '@mui/material/Stack'; import Typography from '@mui/material/Typography'; import CircularProgress from '@mui/material/CircularProgress'; // utils import { fShortenNumber, fCurrency } from 'src/utils/format-number'; // components import Iconify from 'src/components/iconify'; // ---------------------------------------------------------------------- interface StatusTotals { EUR: number; USD: number; } type Props = { icon: string; title: string; total: number; percent: number; price: StatusTotals; color?: string; }; export default function InvoiceAnalytic({ title, total, icon, color, percent, price }: Props) { return ( alpha(theme.palette.grey[500], 0.16), }} /> {title} {fShortenNumber(total)} invoices {fCurrency(price.USD, 'USD')} {fCurrency(price.EUR, 'EUR')} ); }