import { useTheme } from '../context/ThemeContext' export function ThemeToggle() { const { theme, toggle } = useTheme() const isDark = theme === 'dark' return ( ) }