32 lines
953 B
TypeScript
32 lines
953 B
TypeScript
// 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}
|
|
{...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"; |