xnl-admin/app/components/mode-toggle.tsx

25 lines
768 B
TypeScript
Raw Permalink Normal View History

2024-09-06 12:28:50 +02:00
import { Moon, Sun } from 'lucide-react';
import { Theme, useTheme } from 'remix-themes';
import { Button } from './ui/button';
export function ModeToggle() {
2024-09-09 09:59:50 +02:00
const [theme, setTheme] = useTheme();
const toggleTheme = () => {
setTheme(theme === Theme.DARK ? Theme.LIGHT : Theme.DARK);
};
2024-09-06 12:28:50 +02:00
return (
2024-09-09 09:59:50 +02:00
<Button
variant="ghost"
size="icon"
onClick={toggleTheme}
>
<Sun className="h-[1.2rem] w-[1.2rem] rotate-0 scale-100 transition-color dark:-rotate-90 dark:scale-0" />
<Moon className="absolute h-[1.2rem] w-[1.2rem] rotate-90 scale-0 transition-color dark:rotate-0 dark:scale-100" />
<span className="sr-only">Toggle theme</span>
</Button>
2024-09-06 12:28:50 +02:00
);
}