mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-06 21:53:57 -05:00
Most simple components created
This commit is contained in:
23
lib/component/nav/NavBar.tsx
Normal file
23
lib/component/nav/NavBar.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
import type { NavBarProps } from "$/types/Nav";
|
||||
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-between"
|
||||
)}
|
||||
>
|
||||
{children}
|
||||
</nav>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user