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