import { Info, ListMusic, MicVocal } from 'lucide-react'; import type { TFunction } from 'i18next'; type LyricsTab = 'queue' | 'lyrics' | 'info'; interface Props { activeTab: LyricsTab; setTab: (tab: LyricsTab) => void; t: TFunction; } export function QueueTabBar({ activeTab, setTab, t }: Props) { return (