import { ThemeColors, GraphData, Theme, BusinessMetrics } from '../types'; // Icons as inline SVG components for the theme toggle const SunIcon = ({ className, style }: { className?: string; style?: React.CSSProperties }) => ( ); const MoonIcon = ({ className, style }: { className?: string; style?: React.CSSProperties }) => ( ); const SystemIcon = ({ className, style }: { className?: string; style?: React.CSSProperties }) => ( ); interface NavbarProps { colors: ThemeColors; theme: Theme; setTheme: (theme: Theme) => void; data: GraphData | null; metadata?: BusinessMetrics; } export function Navbar({ colors, theme, setTheme, data, metadata, }: NavbarProps) { return ( ); }