import { Card } from "@/components/ui/card"; import { FileCode, Image as ImageIcon, Film, Video } from "lucide-react"; import { ExportOptions } from "../types"; interface ExportPreviewProps { options: ExportOptions; onExport: () => void; isExporting: boolean; } export function ExportPreview({ options, onExport, isExporting }: ExportPreviewProps) { const getIcon = () => { switch (options.format) { case "NetCDF": return ; case "PNG": return ; case "GIF": return ; case "MP4": return