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

21 lines
388 B
JavaScript
Raw Normal View History

2022-10-10 12:28:31 +00:00
import { Navbar, Text } from "@nextui-org/react";
2022-10-19 14:53:27 +00:00
import Settings from "./Settings";
2022-10-10 12:28:31 +00:00
2022-10-19 14:53:27 +00:00
const NavBar = (props) => {
2022-10-14 19:00:47 +00:00
return (
<Navbar isBordered variant={"sticky"}>
<Navbar.Brand>
<Text b color="inherit">
BeatSaber Overlay
</Text>
</Navbar.Brand>
2022-10-19 14:53:27 +00:00
<Navbar.Content>
<Settings {...props}></Settings>
</Navbar.Content>
2022-10-14 19:00:47 +00:00
</Navbar>
);
};
2022-10-10 12:28:31 +00:00
2022-10-14 19:00:47 +00:00
export default NavBar;