import { cn } from '@/lib/utils' import { debugProps } from '@/lib/debug' interface PanelNavBarProps { title: string actions?: React.ReactNode className?: string } export function PanelNavBar({ title, actions, className }: PanelNavBarProps) { return (
{title} {actions &&
{actions}
}
) }