生产管理系统前端 暗色切换调试按钮

This commit is contained in:
2025-10-23 11:37:12 +08:00
parent 28229ce795
commit f93f9e4d88
3 changed files with 66 additions and 9 deletions

View File

@@ -0,0 +1,44 @@
'use client';
import * as React from 'react';
import { Moon, Sun } from 'lucide-react';
import { useTheme } from 'next-themes';
import { Button } from '@/components/ui/button';
export function ThemeToggle() {
const { theme, setTheme } = useTheme();
const [mounted, setMounted] = React.useState(false);
React.useEffect(() => {
setMounted(true);
}, []);
if (!mounted) {
return (
<Button variant="outline" size="icon" className="relative overflow-hidden transition-all duration-300 hover:scale-110">
<Sun className="h-[1.2rem] w-[1.2rem]" />
<span className="sr-only"></span>
</Button>
);
}
const isDark = theme === 'dark';
const toggleTheme = () => {
setTheme(isDark ? 'light' : 'dark');
};
return (
<Button
variant="outline"
size="icon"
onClick={toggleTheme}
className="relative overflow-hidden transition-all duration-300 hover:scale-110"
>
<Sun className={`h-[1.2rem] w-[1.2rem] transition-all duration-300 ${isDark ? 'rotate-90 scale-0' : 'rotate-0 scale-100'}`} />
<Moon className={`absolute h-[1.2rem] w-[1.2rem] transition-all duration-300 ${isDark ? 'rotate-0 scale-100' : '-rotate-90 scale-0'}`} />
<span className="sr-only"></span>
</Button>
);
}