mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
cf9ccd0076
* Scaffold Geistdocs instance * Update biome.json * Replace content * Re-path docs * Update docs package name * Misc fixes * Update geistdocs.tsx * Move content to correct folder * Start migrating custom components * Finish migrating custom components * Migrate existing redirects * Remove #next suffixes from code blocks * Migrate homepage and flags * Remove duplicate lockfiles * Start fixing homepage * Replace Geist components * Fix colors * Improve layout * Fix code blocks * Fix hero * Fix illustrations * Fix redirect * Fix nav links * Patch in FrameworkSwitcher * Bump Next.js in docs * Delete turbo.json * Misc fixes * More logo fixes
36 lines
837 B
TypeScript
36 lines
837 B
TypeScript
"use client";
|
|
|
|
import { MoonIcon, SunIcon } from "lucide-react";
|
|
import { useTheme } from "next-themes";
|
|
import { useEffect, useState } from "react";
|
|
import { Button } from "../ui/button";
|
|
|
|
export const ThemeToggle = () => {
|
|
const { resolvedTheme, setTheme } = useTheme();
|
|
const [mounted, setMounted] = useState(false);
|
|
|
|
useEffect(() => {
|
|
setMounted(true);
|
|
}, []);
|
|
|
|
const handleClick = () => {
|
|
setTheme(resolvedTheme === "dark" ? "light" : "dark");
|
|
};
|
|
|
|
if (!mounted) {
|
|
return (
|
|
<Button size="icon-sm" type="button" variant="ghost">
|
|
<div className="size-4" />
|
|
</Button>
|
|
);
|
|
}
|
|
|
|
const Icon = resolvedTheme === "dark" ? MoonIcon : SunIcon;
|
|
|
|
return (
|
|
<Button onClick={handleClick} size="icon-sm" type="button" variant="ghost">
|
|
<Icon className="size-4" />
|
|
</Button>
|
|
);
|
|
};
|