11 lines
235 B
TypeScript
11 lines
235 B
TypeScript
import { RankMedal } from '@/ui/RankMedal';
|
|
import React from 'react';
|
|
|
|
interface MedalBadgeProps {
|
|
position: number;
|
|
}
|
|
|
|
export function MedalBadge({ position }: MedalBadgeProps) {
|
|
return <RankMedal rank={position} size="md" />;
|
|
}
|