mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-07 06:03:58 -05:00
24 lines
368 B
TypeScript
24 lines
368 B
TypeScript
import type { NavBarProps } from "$/types/NavTypes";
|
|
import clsx from "clsx";
|
|
|
|
|
|
export default function NavBar(props: NavBarProps){
|
|
const {
|
|
className,
|
|
children
|
|
} = props;
|
|
|
|
|
|
return (
|
|
<nav
|
|
className={clsx(
|
|
className,
|
|
"fixed top-0 left-0 w-full z-10",
|
|
"flex flex-row flex-nowrap items-center justify-center"
|
|
)}
|
|
>
|
|
{children}
|
|
</nav>
|
|
);
|
|
}
|