// ExportPanel Component - Export buttons for DXF download import React from 'react'; import { Download, Package } from 'lucide-react'; interface ExportPanelProps { hasLayouts: boolean; onExportAll: () => void; loading: boolean; } export const ExportPanel: React.FC = ({ hasLayouts, onExportAll, loading, }) => { if (!hasLayouts) { return null; } return (
); }; export default ExportPanel;