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