import { useI18n } from '~/src/lib/i18n';
import { Text } from '~/src/ui/primitives/text';

export const TotalRow = ({ total }: { total: number }) => {
  const { t } = useI18n();

  return (
    <Text variant="body-small">{t('dashboard.labels.total', { total })}</Text>
  );
};
