mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-17 05:40:42 -07:00
9 lines
161 B
TypeScript
9 lines
161 B
TypeScript
export function TitleBarDragRegion() {
|
|
return (
|
|
<div
|
|
data-tauri-drag-region
|
|
className="fixed top-0 left-0 right-0 h-12 z-[9999]"
|
|
/>
|
|
);
|
|
}
|