export const Journey = ({ children }) => (
{children}
); export const JourneyStep = ({ number, title, children }) => (
{number}

{title}

{children}
); export const JourneyItem = ({ icon, title, href }) => ( {icon && ( )} {title} );