import { useTheme } from 'next-themes' export const SwitchTheme: React.FC = () => { const { theme, setTheme } = useTheme() return ( <>
setTheme(theme === 'dark' ? 'light' : 'dark')} >
🌜
🌞
) }