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