mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
Update game-card.tsx
This commit is contained in:
parent
c982ebe33a
commit
282bb45869
1 changed files with 10 additions and 14 deletions
|
@ -96,23 +96,19 @@ export function GameCard({ game, ...props }: GameCardProps) {
|
|||
|
||||
<div className="game-card__specifics">
|
||||
<div className="game-card__specifics-item">
|
||||
{/* ...additional specifics content... */}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<DownloadIcon />
|
||||
<span>
|
||||
{stats ? numberFormatter.format(stats.downloadCount) : "…"}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div className="game-card__specifics-item">
|
||||
<PeopleIcon />
|
||||
<span>
|
||||
{stats ? numberFormatter.format(stats?.playerCount) : "…"}
|
||||
{stats ? numberFormatter.format(stats.playerCount) : "…"}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</button>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue