Added arena brawl stats card
This commit is contained in:
12
src/app/(stats)/player/[ign]/_stats/classic/stats.tsx
Normal file
12
src/app/(stats)/player/[ign]/_stats/classic/stats.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import { formatNumber } from "@/lib/formatters"
|
||||
import { BasicStat } from "../../_components/Stats"
|
||||
|
||||
export function ArenaBrawlGeneralStats({ coins, keys, ws }: { coins: number, keys: number, ws: number }) {
|
||||
return (
|
||||
<div>
|
||||
<BasicStat title="Coins: " value={formatNumber(coins)} className="text-mc-gold" />
|
||||
<BasicStat title="Keys: " value={formatNumber(keys)} className="text-mc-aqua" />
|
||||
<BasicStat title="Win Streaks: " value={formatNumber(ws)} className="text-mc-yellow" />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user