import { MoonIcon } from '@heroicons/react/solid'; import { SunIcon } from '@heroicons/react/outline'; import { useTheme } from './theme'; export function ThemeButton() { const { isDark, nextTheme } = useTheme(); return ( ); }