'use client' import { cn, formatCurrency } from '@/lib/utils' import { useLocale, useTranslations } from 'next-intl' export function TotalsYourShare({ totalParticipantShare = 0, currency, }: { totalParticipantShare?: number currency: string }) { const locale = useLocale() const t = useTranslations('Stats.Totals') return (