mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
11 lines
287 B
TypeScript
11 lines
287 B
TypeScript
type SecondaryNavigationProps = {
|
|
children?: React.ReactNode;
|
|
};
|
|
|
|
export function SecondaryNavigation({ children }: SecondaryNavigationProps) {
|
|
return (
|
|
<div className="h-(--tabs-navbar-height) border-neutral-5 bg-neutral-3 relative border-b">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|