import { X } from 'lucide-react'; import { ReactNode } from 'react'; import { Box } from './Box'; import { Card } from './Card'; import { Heading } from './Heading'; import { IconButton } from './IconButton'; export interface DebugPanelProps { title: string; children: ReactNode; onClose: () => void; icon?: ReactNode; } export const DebugPanel = ({ title, children, onClose, icon }: DebugPanelProps) => { return ( {icon} {title} {children} ); };