"use client"; import { Sun, Moon, ChevronDown } from "lucide-react"; import { Icon } from "./ui"; import { user } from "./account-data"; export function Topbar({ theme, onToggle, title, subtitle }: { theme: "dark" | "light"; onToggle: () => void; title: string; subtitle: string }) { return (

{title}

{subtitle}

); }