import React from 'react'; import { X } from 'lucide-react'; import { Button } from '@/components/ui/button'; interface SummaryPanelProps { summary: string; isVisible: boolean; onClose: () => void; } const SummaryPanel = ({ summary, isVisible, onClose }: SummaryPanelProps) => { if (!isVisible) return null; return (
Page Summary
        {summary}
      
); }; export default SummaryPanel;