"use client"; import { Button } from "@heroui/button"; import { useTheme } from "next-themes"; import { VscColorMode } from "react-icons/vsc"; export function ThemeSwitcher() { const { theme, setTheme } = useTheme(); const toggle = () => { setTheme(theme === "light" ? "dark" : "light"); }; return ( ); }