|
import { Moon, Sun } from "lucide-react"; |
|
import { Button } from "@/components/ui/button"; |
|
import { useTheme } from "./theme-provider"; |
|
|
|
export function ThemeToggle() { |
|
const { theme, setTheme } = useTheme(); |
|
|
|
return ( |
|
<Button |
|
variant="ghost" |
|
size="icon" |
|
onClick={() => setTheme(theme === "light" ? "dark" : "light")} |
|
className="h-9 w-9" |
|
> |
|
<Sun className="h-4 w-4 rotate-0 scale-100 transition-all dark:-rotate-90 dark:scale-0" /> |
|
<Moon className="absolute h-4 w-4 rotate-90 scale-0 transition-all dark:rotate-0 dark:scale-100" /> |
|
<span className="sr-only">Toggle theme</span> |
|
</Button> |
|
); |
|
} |