import { useThemeContext } from './ThemeContext'; import { IconButton, Tooltip } from '@mui/material'; import LightModeIcon from '@mui/icons-material/LightMode'; import DarkModeIcon from '@mui/icons-material/DarkMode'; import { useTranslation } from 'react-i18next'; const ThemeSelector = () => { const { t } = useTranslation(['auth', 'core', 'group']); const { themeMode, toggleTheme } = useThemeContext(); return (