26 lines
820 B
TypeScript
26 lines
820 B
TypeScript
"use client";
|
|
|
|
import * as React from "react";
|
|
import { Moon, Sun } from "lucide-react";
|
|
import { useTheme } from "next-themes";
|
|
import { Button } from "@radix-ui/themes";
|
|
|
|
export function ModeToggle() {
|
|
const { setTheme } = useTheme();
|
|
//get the current theme
|
|
const { theme: themes } = useTheme();
|
|
|
|
//change theme from current to opposite
|
|
const toggleTheme = () => {
|
|
setTheme(themes === "light" ? "dark" : "light");
|
|
};
|
|
|
|
return (
|
|
<Button variant="ghost" size="1" onClick={() => toggleTheme()}>
|
|
<Sun className="h-[1.2rem] w-[1.2rem] rotate-0 scale-100 transition-all dark:-rotate-90 dark:scale-0" />
|
|
<Moon className="absolute h-[1.2rem] w-[1.2rem] rotate-90 scale-0 transition-all dark:rotate-0 dark:scale-100" />
|
|
<span className="sr-only">Toggle theme</span>
|
|
</Button>
|
|
);
|
|
}
|