lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
7 lines • 469 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "preact/jsx-runtime";
import AppBar from "./AppBar";
const TitleBar = ({ title, children }) => {
return (_jsxs(AppBar, { style: { paddingLeft: 12 }, children: [_jsx("div", { style: { marginTop: -2 }, children: title }), _jsx("div", { style: { flexGrow: 1, minWidth: 4 } }), _jsx("div", { style: { display: "flex", opacity: 0.5 }, children: children })] }));
};
export default TitleBar;
//# sourceMappingURL=TitleBar.js.map