import React from 'react'; import { Box } from './Box'; import { Image } from './Image'; import { Trophy } from 'lucide-react'; import { Icon } from './Icon'; export interface LeagueLogoProps { leagueId?: string; src?: string; alt: string; size?: number; className?: string; border?: boolean; rounded?: 'none' | 'sm' | 'md' | 'lg' | 'xl' | 'full'; } export function LeagueLogo({ leagueId, src, alt, size = 64, className = '', border = true, rounded = 'md', }: LeagueLogoProps) { const logoSrc = src || (leagueId ? `/media/leagues/${leagueId}/logo` : undefined); return ( {logoSrc ? ( {alt} ) : ( 32 ? 5 : 4} color="text-gray-500" /> )} ); }