import { Check } from 'lucide-react'; import { useTranslation } from 'react-i18next'; import type { Theme } from '../../types'; import { THEMES } from '../../constants'; interface ThemeSelectorProps { currentTheme: Theme; onThemeChange: (theme: Theme) => void; } export function ThemeSelector({ currentTheme, onThemeChange }: ThemeSelectorProps) { const { t } = useTranslation(); return (
{THEMES.map((theme) => ( ))}
); }