--- import DownloadPopup from '../DownloadPopup.astro'; import Loader from '../Loader.astro'; import ShareIcons from '../ShareIcons.astro'; import SubscribePopup from '../SubscribePopup.astro'; import TopicOverlay from '../TopicOverlay.astro'; import './InteractiveRoadmap.css'; export interface Props { roadmapId: string; description: string; jsonUrl: string; dimensions?: { width: number; height: number; }; } const { roadmapId, jsonUrl, dimensions = null, description } = Astro.props; ---