mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-30 22:31:03 +00:00
Update game-card.tsx
This commit is contained in:
@@ -96,23 +96,19 @@ export function GameCard({ game, ...props }: GameCardProps) {
|
|||||||
|
|
||||||
<div className="game-card__specifics">
|
<div className="game-card__specifics">
|
||||||
<div className="game-card__specifics-item">
|
<div className="game-card__specifics-item">
|
||||||
{/* ...additional specifics content... */}
|
<DownloadIcon />
|
||||||
|
<span>
|
||||||
|
{stats ? numberFormatter.format(stats.downloadCount) : "…"}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div className="game-card__specifics-item">
|
||||||
|
<PeopleIcon />
|
||||||
|
<span>
|
||||||
|
{stats ? numberFormatter.format(stats.playerCount) : "…"}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<DownloadIcon />
|
|
||||||
<span>
|
|
||||||
{stats ? numberFormatter.format(stats.downloadCount) : "…"}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="game-card__specifics-item">
|
|
||||||
<PeopleIcon />
|
|
||||||
<span>
|
|
||||||
{stats ? numberFormatter.format(stats?.playerCount) : "…"}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
Reference in New Issue
Block a user