diff --git a/src/components/Projects/ProjectStepper.tsx b/src/components/Projects/ProjectStepper.tsx index 097f94bf0..009a3bb14 100644 --- a/src/components/Projects/ProjectStepper.tsx +++ b/src/components/Projects/ProjectStepper.tsx @@ -6,6 +6,7 @@ import { type LucideIcon, Play, PlayCircle, + Send, } from 'lucide-react'; import { useEffect, useRef, useState } from 'react'; import { cn } from '../../lib/classname.ts'; @@ -25,7 +26,7 @@ function StepperAction(props: StepperActionProps) { return ( ); } @@ -49,6 +50,22 @@ function StepperAction(props: StepperActionProps) { ); } +type StepperStepSeparatorProps = { + isActive: boolean; +}; + +function StepperStepSeparator(props: StepperStepSeparatorProps) { + const { isActive } = props; + + return ( +