"use client"; import { MoonIcon, SunIcon } from "@heroicons/react/24/outline"; import type React from "react"; export default function ThemeSwitcher(): React.JSX.Element { const toggleTheme = (): void => { const currentTheme = document.documentElement.getAttribute("data-theme"); if (currentTheme === "nord") { localStorage.theme = "dracula-soft"; document.documentElement.setAttribute("data-theme", "dracula-soft"); } else { localStorage.theme = "nord"; document.documentElement.setAttribute("data-theme", "nord"); } }; return ( ); }