"use client"; import { Search, SlidersHorizontal } from "lucide-react"; import type { StationFilter, StationSort } from "@/components/weather/stations-explorer"; import { useI18n } from "@/lib/i18n"; export function StationSearch({ query, onQueryChange, sort, onSortChange, filter, onFilterChange }: { query: string; onQueryChange: (value: string) => void; sort: StationSort; onSortChange: (value: StationSort) => void; filter: StationFilter; onFilterChange: (value: StationFilter) => void }) { const { t } = useI18n(); return (
); }