import { Button } from "@/shared/components/ds/button"; import { GeoJsonIcon } from "@/shared/components/icons"; import { Mapset } from "@/shared/types/mapset"; import { handleDownloadGeojson } from "@/shared/utils/download-mapset"; import { Download } from "lucide-react"; export default function DownloadGeojsonBtn({ mapset }: { mapset: Mapset }) { return ( ); }