import { getMediaUrl } from '@/lib/utilities/media'; import { Image } from '@/ui/Image'; import { TableCell, TableRow } from '@/ui/Table'; import { Text } from '@/ui/Text'; import { Box } from '@/ui/Box'; import { Group } from '@/ui/Group'; import { Stack } from '@/ui/Stack'; import { Surface } from '@/ui/Surface'; import { RankMedal } from './RankMedal'; import React from 'react'; interface TeamRankingRowProps { id: string; rank: number; name: string; logoUrl?: string; rating: number; wins: number; races: number; memberCount: number; onClick?: () => void; } export function TeamRankingRow({ id, rank, name, logoUrl, rating, wins, races, memberCount, onClick, }: TeamRankingRowProps) { return ( {name} {name} {memberCount} Members {rating} {wins} {races} ); }