import React from 'react'; import { Eye, Home, Clock, Tv2 } from 'lucide-react'; import type { Stat } from '@/lib/api'; const items = [ { key: 'owlCount', label: 'Owls Tracked', icon: Eye, unit: '' }, { key: 'burrowCount', label: 'Active Burrows', icon: Home, unit: '' }, { key: 'volunteerHours', label: 'Volunteer Hours', icon: Clock, unit: 'hrs' }, { key: 'activeStreams', label: 'Live Cams', icon: Tv2, unit: '' }, ] as const; export default function StatsBar({ stats }: { stats: Stat }) { return (