import { NavLink } from "react-router-dom"; import { Building2, type LucideIcon, Receipt, Repeat, Settings } from "lucide-react"; import { cn } from "@/lib/cn"; interface NavEintrag { to: string; label: string; icon: LucideIcon; } const NAVIGATION: NavEintrag[] = [ { to: "/recurrences", label: "Wiederkehrend", icon: Repeat }, { to: "/transactions", label: "Buchungen", icon: Receipt }, { to: "/merchants", label: "Firmen", icon: Building2 }, { to: "/settings", label: "Einstellungen", icon: Settings }, ]; export function Sidebar({ onNavigate }: { onNavigate?: () => void }) { return ( ); }