@hanzo/ui 3.8.25 → 3.8.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -43,7 +43,7 @@ const StepIndicator: React.FC<{
|
|
|
43
43
|
style={{width: `${dotSizeRem}rem`, height: `${dotSizeRem}rem`}}
|
|
44
44
|
className={cn(
|
|
45
45
|
'shrink-0 rounded-full border-[1.5px]',
|
|
46
|
-
currentStep
|
|
46
|
+
currentStep >= index ? (muted ? 'bg-muted border-muted' : 'bg-foreground border-foreground') : '',
|
|
47
47
|
//currentStep > index || currentStep === steps.length - 1 ? (muted ? 'bg-muted border-muted' : 'bg-foreground border-foreground') : ''
|
|
48
48
|
)}
|
|
49
49
|
/>
|