| 3 | import CheckMarkIcon from '@/assets/images/check-mark.svg' |
| 4 | |
| 5 | interface ChatProgressProps { |
| 6 | progress?: string[] |
| 7 | } |
| 8 | |
| 9 | export function ChatProgress({ progress = [] }: ChatProgressProps) { |
| 10 | return progress?.length ? ( |
nothing calls this directly
no outgoing calls
no test coverage detected