import { CheckIcon } from '../ReactIcons/CheckIcon'; import { FeatureAnnouncement } from '../FeatureAnnouncement.tsx'; type EmptyProgressProps = { title?: string; message?: string; }; export function EmptyProgress(props: EmptyProgressProps) { const { title = 'Start learning ..', message = 'Your progress and favorite roadmaps will show up here.', } = props; return (
{message}