lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
16 lines • 598 B
JavaScript
import { jsx as _jsx } from "preact/jsx-runtime";
import { APPBAR_HEIGHT } from "../../../globals";
const AppBar = ({ className, style, children, noPadding }) => {
return (_jsx("div", { className: className, style: {
width: "100%",
height: APPBAR_HEIGHT + 8,
display: "flex",
alignItems: "center",
paddingRight: noPadding ? undefined : 4,
paddingLeft: noPadding ? undefined : 4,
flexShrink: 0,
...style
}, children: children }));
};
export default AppBar;
//# sourceMappingURL=AppBar.js.map