import { getCurrentWindow } from '@tauri-apps/api/window'; import { Minus, Square, X } from 'lucide-react'; import type { PointerEvent } from 'react'; const appWindow = getCurrentWindow(); const stopTitlebarDrag = (event: PointerEvent) => { event.stopPropagation(); }; export function WindowControls() { return (
); }