()
| 51 | }; |
| 52 | |
| 53 | const SequentialDots = () => { |
| 54 | return ( |
| 55 | <span className="inline-flex w-8 justify-start"> |
| 56 | <span className="flex gap-0.5"> |
| 57 | <span className="h-1 w-1 animate-[dot1_1.5s_steps(1)_infinite] rounded-full bg-green-500" /> |
| 58 | <span className="h-1 w-1 animate-[dot2_1.5s_steps(1)_infinite] rounded-full bg-green-500" /> |
| 59 | <span className="h-1 w-1 animate-[dot3_1.5s_steps(1)_infinite] rounded-full bg-green-500" /> |
| 60 | </span> |
| 61 | </span> |
| 62 | ); |
| 63 | }; |
| 64 | |
| 65 | const StepDots = ({ currentStep }: { currentStep: number }) => { |
| 66 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected