import { Trophy } from 'lucide-react';
import { ReactNode } from 'react';
import { Box } from './Box';
import { Heading } from './Heading';
import { Icon } from './Icon';
import { Stack } from './Stack';
import { Text } from './Text';
interface PodiumProps {
title: string;
children: ReactNode;
}
export function Podium({ title, children }: PodiumProps) {
return (
{title}
{children}
);
}
interface PodiumItemProps {
position: number;
height: string;
cardContent: ReactNode;
bgColor: string;
positionColor: string;
}
export function PodiumItem({
position,
height,
cardContent,
bgColor,
positionColor,
}: PodiumItemProps) {
return (
{cardContent}
{/* Podium stand */}
{position}
);
}