import { ChevronDown, Languages } from 'lucide-react' import { useLocale } from '../context/LocaleContext' import type { DashboardLocale } from '@meshkee/dashboard-core' import styles from './LanguageSelect.module.css' const OPTIONS: { value: DashboardLocale; label: string }[] = [ { value: 'en', label: 'EN' }, { value: 'fa', label: 'فا' }, ] export function LanguageSelect() { const { locale, setLocale } = useLocale() return ( ) }