MCPcopy Create free account
hub / github.com/VGabriel45/SolidityVisualizer / SequentialDots

Function SequentialDots

src/components/loading.tsx:53–63  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

51};
52
53const 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
65const StepDots = ({ currentStep }: { currentStep: number }) => {
66 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected