import clsx from "clsx"; import { MousePointerClick } from "lucide-react"; import { useTranslation } from "react-i18next"; import type { ModeShort } from "~/modules/in-game-lists/types"; import type { CommonUser } from "~/utils/kysely.server"; import { Avatar } from "../Avatar"; import { ModeImage } from "../Image"; import styles from "./MatchBannerBottomRow.module.css"; interface MatchBannerBottomRowProps { games: Array<{ mode: ModeShort | null; winner?: "ALPHA" | "BRAVO" }>; activeRosters: { alpha: CommonUser[] | null; bravo: CommonUser[] | null; } | null; } export function MatchBannerBottomRow({ games, activeRosters, }: MatchBannerBottomRowProps) { return (