import { X, Minus, Maximize } from "lucide-react"; import { WindowMinimise, WindowToggleMaximise, Quit } from "../../wailsjs/runtime/runtime"; export function TitleBar() { const handleMinimize = () => { WindowMinimise(); }; const handleMaximize = () => { WindowToggleMaximise(); }; const handleClose = () => { Quit(); }; return ( <> {/* Draggable area */}
{/* Window control buttons - Windows style, right side */}