This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/src/components/Navbar.js
2022-10-19 15:53:27 +01:00

21 lines
388 B
JavaScript

import { Navbar, Text } from "@nextui-org/react";
import Settings from "./Settings";
const NavBar = (props) => {
return (
<Navbar isBordered variant={"sticky"}>
<Navbar.Brand>
<Text b color="inherit">
BeatSaber Overlay
</Text>
</Navbar.Brand>
<Navbar.Content>
<Settings {...props}></Settings>
</Navbar.Content>
</Navbar>
);
};
export default NavBar;