import { Award, ChevronRight } from 'lucide-react'; import { ReactNode } from 'react'; import { Box } from './Box'; import { Button } from './Button'; import { Heading } from './Heading'; import { Icon } from './Icon'; import { Stack } from './Stack'; import { Text } from './Text'; interface TeamLeaderboardPreviewProps { title: string; subtitle: string; onViewFull: () => void; children: ReactNode; } export function TeamLeaderboardPreview({ title, subtitle, onViewFull, children, }: TeamLeaderboardPreviewProps) { return ( {/* Header */} {title} {subtitle} {/* Compact Leaderboard */} {children} ); }