mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-30 01:48:12 +00:00
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
'use client';
|
|
|
|
import { Moon, Sun } from 'lucide-react';
|
|
import { useTheme } from './ThemeProvider';
|
|
import { useEffect, useState } from 'react';
|
|
|
|
export default function ThemeToggle() {
|
|
const { theme, setTheme } = useTheme();
|
|
const [mounted, setMounted] = useState(false);
|
|
|
|
useEffect(() => {
|
|
setMounted(true);
|
|
}, []);
|
|
|
|
const cycleTheme = () => setTheme(theme === 'light' ? 'dark' : 'light');
|
|
|
|
const getIcon = () => theme === 'dark' ? <Moon className="w-5 h-5" /> : <Sun className="w-5 h-5" />;
|
|
|
|
const getLabel = () => theme === 'dark' ? 'Dark' : 'Light';
|
|
|
|
// Prevent hydration mismatch by not rendering until mounted
|
|
if (!mounted) {
|
|
return (
|
|
<div className="w-10 h-10 rounded-lg bg-gray-100 dark:bg-gray-800" />
|
|
);
|
|
}
|
|
|
|
return (
|
|
<button
|
|
onClick={cycleTheme}
|
|
className="p-2 rounded-lg bg-gray-100 dark:bg-gray-800 hover:bg-gray-200 dark:hover:bg-gray-700 transition-colors"
|
|
title={`Current theme: ${getLabel()}. Click to cycle.`}
|
|
>
|
|
{getIcon()}
|
|
</button>
|
|
);
|
|
}
|