import { Image } from './Image'; export interface LeagueCoverProps { leagueId: string; alt: string; height?: string; } export function LeagueCover({ leagueId, alt, height = '12rem' }: LeagueCoverProps) { return ( {alt} ); }