diff --git a/frontend/app/components/UsabilityTesting/TestOverview.tsx b/frontend/app/components/UsabilityTesting/TestOverview.tsx index 83b939772..8bf010ecb 100644 --- a/frontend/app/components/UsabilityTesting/TestOverview.tsx +++ b/frontend/app/components/UsabilityTesting/TestOverview.tsx @@ -31,21 +31,33 @@ import ResponsesOverview from './ResponsesOverview'; import ParticipantOverviewItem from 'Components/UsabilityTesting/ParticipantOverview'; import { toast } from 'react-toastify'; + +const StatusItem = ({ iconName, color, text, size = "16" }: { + iconName: string; + color: string; + size: string; + text: string; +}) => ( +