import { ExternalLink, Globe2, type LucideIcon } from 'lucide-react'; type RoadmapCardProps = { title: string; description: string; icon: LucideIcon; icon2?: LucideIcon; link: string; isUpcoming?: boolean; }; export function RoadmapCard(props: RoadmapCardProps) { const { isUpcoming, link, title, description, icon: Icon, icon2: Icon2, } = props; if (isUpcoming) { return (
{Icon2 && ( <> +
)}
{title} {description}
Coming soon
); } return (
{Icon2 && ( <> +
)}
{title} {description}
); }