import React from 'react'; interface TooFarIllustrationProps { title: string; testId?: string; } export const TooFarIllustration: React.FC = ({ title, testId, }) => { return ( {title} ); };