@bond-wm/react-titlebar
v0.5.0
Published
React frame window titlebar for bond-wm
Downloads
2
Readme
@bond-wm/react-titlebar
A frame window titlebar component implementation for the bond-wm
window manager.
Usage
Use the TitleBar
component within your window frame component.
import {
TitleBar,
TitleBarCloseButton,
TitleBarIcon,
TitleBarMaximizeButton,
TitleBarMinimizeButton,
TitleBarText,
} from "@bond-wm/react-titlebar";
return (
<WindowFrame>
<TitleBar>
<TitleBarIcon />
<TitleBarText />
<TitleBarMinimizeButton />
<TitleBarMaximizeButton />
<TitleBarCloseButton />
</TitleBar>
<WindowClientArea />
</WindowFrame>
);