import Image from "next/image"; import { getTeamLogoUrl } from "@/lib/utils"; import { cn } from "@/lib/utils"; export function TeamBadge({ name, logoPath, size = "md", className, }: { name: string; logoPath?: string | null; size?: "sm" | "md" | "lg"; className?: string; }) { const logoUrl = getTeamLogoUrl(logoPath); const sizes = { sm: 24, md: 32, lg: 48 }; const dim = sizes[size]; return (