chat-indic-ui / src /components /settings-theme-toggle.tsx
sam2ai's picture
Synced repo using 'sync_with_huggingface' Github Action
0971cc4 verified
raw
history blame contribute delete
841 Bytes
"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>
);
}