import { cn } from "@/lib/utils"; import type { Team } from "../types"; type TeamCardProps = { team: Team; active: boolean; score: number; }; export function TeamCard({ team, active, score }: TeamCardProps) { const red = team === "red"; return (
{red ? "🔴 红队" : "🔵 蓝队"}
{score}
); }