import { useTheme } from '../context/ThemeContext.jsx'; const OPTIONS = [ { mode: 'light', icon: '☀', label: 'Clair' }, { mode: 'dark', icon: '☾', label: 'Sombre' }, { mode: 'system', icon: '◐', label: 'Système' }, ]; export default function ThemeSwitcher() { const { mode, setMode } = useTheme(); return (