import { ArrowUpRight, X } from 'lucide-react'; import { Modal } from '../Modal'; import { SubmissionRequirement } from './SubmissionRequirement.tsx'; type LeavingRoadmapWarningModalProps = { onClose: () => void; repositoryUrl: string; }; export function LeavingRoadmapWarningModal( props: LeavingRoadmapWarningModalProps, ) { const { onClose, repositoryUrl } = props; return (

Leaving roadmap.sh

You are about to visit the project solution on GitHub. We recommend you to follow these tips before you leave.

Make sure to come back and{' '} leave an upvote{' '} if you liked the solution. It helps the author and the community.

If you have feedback on the solution, open an issue or a pull request on the{' '} solution repository .

Downvote the solution if it is{' '} incorrect or misleading . It helps the community.

Continue to Solution
); }