Spaces:
Runtime error
Runtime error
File size: 841 Bytes
0971cc4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
"use client";
import * as React from "react";
import { MoonIcon, SunIcon } from "@radix-ui/react-icons";
import { useTheme } from "next-themes";
import { useHasMounted } from "@/lib/utils";
import { Button } from "./ui/button";
export default function SettingsThemeToggle() {
const hasMounted = useHasMounted();
const { setTheme, theme } = useTheme();
if (!hasMounted) {
return null;
}
const nextTheme = theme === "light" ? "dark" : "light";
return (
<Button
className="justify-start gap-2 w-full"
size="sm"
variant="ghost"
onClick={() => setTheme(nextTheme)}
>
{nextTheme === "light" ? (
<SunIcon className="w-4 h-4" />
) : (
<MoonIcon className="w-4 h-4" />
)}
<p>{nextTheme === "light" ? "Light mode" : "Dark mode"}</p>
</Button>
);
}
|