import { ChevronRight } from 'lucide-react' interface PanelHeaderProps { title: string subtitle: string action?: string onAction?: () => void } export function PanelHeader({ title, subtitle, action, onAction }: PanelHeaderProps) { return (

{title}

{subtitle}

{action && ( )}
) }