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

{title}

);