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