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