Updated pit progress
This commit is contained in:
@@ -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 (
|
||||||
|
<div className="flex gap-2 items-center">
|
||||||
<GenericProgress
|
<GenericProgress
|
||||||
tooltipId="pit-progress"
|
tooltipId="pit-progress"
|
||||||
tooltipContent={`${formatNumber(xp)}/${formatNumber(nextXp)} XP`}
|
tooltipContent={`${formatNumber(xp)}/${formatNumber(nextXp)} XP`}
|
||||||
percent={percent}
|
percent={percent}
|
||||||
className={`bg-mc-${presColor}`}
|
className={`bg-mc-${presColor}`}
|
||||||
/>
|
/>
|
||||||
|
<p className="text-mc-aqua">120</p>
|
||||||
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user