import { Download } from 'lucide-react'; export default function DocExport({ content, fileName = 'codeatlas-documentation.md' }) { const download = () => { const blob = new Blob([content || ''], { type: 'text/markdown' }); const url = URL.createObjectURL(blob); const anchor = document.createElement('a'); anchor.href = url; anchor.download = fileName; anchor.click(); URL.revokeObjectURL(url); }; return ( ); }