import React from "react"; import { Search, Globe, ChevronRight, Activity } from "lucide-react"; import { Badge } from "@/components/ui/badge"; import { CityInfo } from "@/lib/types"; import { Sparkline } from "./Sparkline"; interface CitySidebarProps { cities: CityInfo[]; activeCity: string; onSelectCity: (name: string) => void; t: any; } export function CitySidebar({ cities, activeCity, onSelectCity, t, }: CitySidebarProps) { return ( ); }