import { getCurrentWindow } from '@tauri-apps/api/window'; import { Minus, Square, X } from 'lucide-react'; /** * Custom title bar for frameless window mode. * Provides drag region and window controls. */ export default function TitleBar() { const appWindow = getCurrentWindow(); return (
{/* App title / drag region */}
Synor Wallet
{/* Window controls (Windows/Linux style) */}
); }