import React from 'react'; import { getCurrentWindow } from '@tauri-apps/api/window'; import { X, Minus, Square } from 'lucide-react'; import { usePlayerStore } from '../store/playerStore'; const win = getCurrentWindow(); export default function TitleBar() { const currentTrack = usePlayerStore(s => s.currentTrack); const isPlaying = usePlayerStore(s => s.isPlaying); return (