import React from 'react'; import { Users, UserPlus } from 'lucide-react'; import { Box } from '@/ui/Box'; import { Text } from '@/ui/Text'; import { Icon } from '@/ui/Icon'; import { Stack } from '@/ui/Stack'; interface TeamHeroStatsProps { teamCount: number; recruitingCount: number; } export function TeamHeroStats({ teamCount, recruitingCount }: TeamHeroStatsProps) { return ( {teamCount} Teams {recruitingCount} Recruiting ); }