import React, { ReactNode } from 'react'; import { LucideIcon } from 'lucide-react'; interface PanelHeaderProps { title: string; icon: LucideIcon; className?: string; children?: ReactNode; } export const PanelHeader: React.FC = ({ title, icon: Icon, className, children }) => (

{title}

{children}
);