removed old mode toggle

This commit is contained in:
2025-10-06 08:45:27 +02:00
parent f741706cb8
commit a1943169d2

View File

@@ -1,32 +0,0 @@
// components/mode-toggle.tsx
"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 const ModeToggle = React.forwardRef<
HTMLButtonElement,
React.ButtonHTMLAttributes<HTMLButtonElement>
>(({ className, ...props }, ref) => {
const { setTheme, theme } = useTheme();
return (
<Button
variant="ghost"
size="icon"
className={className}
ref={ref}
aria-label="Toogle theme"
{...props}
onClick={() => setTheme(theme === "light" ? "dark" : "light")}>
<SunIcon className="h-[1.2rem] w-[1.2rem] rotate-0 scale-100 transition-all dark:rotate-90 dark:scale-0 text-foreground" />
<MoonIcon className="absolute h-[1.2rem] w-[1.2rem] rotate-90 scale-0 transition-all dark:rotate-0 dark:scale-100 text-foreground" />
</Button>
);
});
ModeToggle.displayName = "ModeToggle";