"use client"; import { MoonIcon, SunIcon } from "@radix-ui/react-icons"; import { useTheme } from "next-themes"; import { Button } from "@/components/ui/button"; export function ThemeButton() { const { theme, setTheme } = useTheme(); return ( ); }