Updated pit progress

This commit is contained in:
2025-09-08 23:27:10 +02:00
parent 0ceda994ee
commit 96345d888f

View File

@@ -10,11 +10,14 @@ export default function PitProgress({ prestige, xp }: { prestige: number, xp: nu
const percent = getProgress(currentXp, xp, nextXp) const percent = getProgress(currentXp, xp, nextXp)
return ( return (
<GenericProgress <div className="flex gap-2 items-center">
tooltipId="pit-progress" <GenericProgress
tooltipContent={`${formatNumber(xp)}/${formatNumber(nextXp)} XP`} tooltipId="pit-progress"
percent={percent} tooltipContent={`${formatNumber(xp)}/${formatNumber(nextXp)} XP`}
className={`bg-mc-${presColor}`} percent={percent}
/> className={`bg-mc-${presColor}`}
/>
<p className="text-mc-aqua">120</p>
</div>
) )
} }