Files
gridpilot.gg/apps/website/ui/TopNav.tsx
2026-01-19 21:30:36 +01:00

17 lines
399 B
TypeScript

import React from 'react';
import { Box } from './Box';
interface TopNavProps {
children: React.ReactNode;
}
/**
* TopNav is a horizontal navigation container used within the ControlBar.
*/
export function TopNav({ children }: TopNavProps) {
return (
<Box as="nav" display="flex" alignItems="center" justifyContent="between" width="full" height="full">
{children}
</Box>
);
}