console/packages/web/app/src/components/navigation/secondary-navigation.tsx
2026-02-03 10:00:15 -06:00

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>
);
}