"use client"; import { useTheme } from "next-themes"; import { Button } from "@/components/ui/button"; import { Eclipse, SunMoon } from "lucide-react"; import { cn } from "@/lib/utils"; type ThemeButtonProps = { className?: string; }; const iconClassname = "w-5 h-5"; const ThemeButton: React.FC = ({ className }) => { const { theme, setTheme } = useTheme(); return ( ); }; export default ThemeButton;