"use client"; import * as React from "react"; import { MoonIcon, SunIcon } from "@radix-ui/react-icons"; import { useTheme } from "next-themes"; import { Button } from "@/components/ui/button"; export function ModeToggle() { const { setTheme, resolvedTheme } = useTheme(); const handleSubmit = () => { setTheme(resolvedTheme === "dark" ? "light" : "dark"); }; return ( <> ); }