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

Function StepDots

src/components/loading.tsx:65–78  ·  view source on GitHub ↗
({ currentStep }: { currentStep: number })

Source from the content-addressed store, hash-verified

63};
64
65const StepDots = ({ currentStep }: { currentStep: number }) => {
66 return (
67 <div className="flex gap-1">
68 {[1, 2, 3].map((step) => (
69 <div
70 key={step}
71 className={`h-1.5 w-1.5 rounded-full transition-colors duration-300 ${
72 step <= currentStep ? "bg-green-500" : "bg-green-200"
73 }`}
74 />
75 ))}
76 </div>
77 );
78};
79
80export default function Loading({
81 status = "idle",

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected