import { Popover, Text } from '$src/lib/ui' import { theme } from '@latitude-data/client' type Props = { download?: () => Promise } export default function DownloadTooltip({ download }: Props) { return (
) }