import { VscColorMode } from 'react-icons/vsc' import { useTheme } from 'next-themes' export const ThemeSwitcher = () => { const { theme, setTheme } = useTheme() const toggle = () => { setTheme(theme === 'light' ? 'dark' : 'light') } return ( ) }