"use client"; import { MoonIcon, SunIcon } from "lucide-react"; import { useTheme } from "next-themes"; import { Switch } from "../../shadcnui"; export function ModeToggleSwitch() { const { theme, setTheme } = useTheme(); const handleToggle = () => { setTheme(theme === "light" ? "dark" : "light"); }; return (
{theme === "dark" ? ( ) : ( )}
); }