Files
gridpilot.gg/apps/website/ui/BreadcrumbBar.tsx
2026-01-17 15:46:55 +01:00

18 lines
425 B
TypeScript

import React from 'react';
interface BreadcrumbBarProps {
children: React.ReactNode;
className?: string;
}
/**
* BreadcrumbBar is a container for breadcrumbs, typically placed at the top of the ContentShell.
*/
export function BreadcrumbBar({ children, className = '' }: BreadcrumbBarProps) {
return (
<div className={`mb-6 flex items-center space-x-2 text-sm ${className}`}>
{children}
</div>
);
}