import {
Stepper,
StepperContent,
StepperIndicator,
StepperItem,
StepperNav,
StepperPanel,
StepperSeparator,
StepperTrigger,
} from '@/registry/default/ui/stepper';
import { Check, LoaderCircleIcon } from 'lucide-react';
const steps = [1, 2, 3];
export default function Component() {
return (
<div className="flex items-center justify-center">
<Stepper
className="flex flex-col items-center justify-center gap-10"
defaultValue={2}
orientation="vertical"
indicators={{
completed: <Check className="size-4" />,
loading: <LoaderCircleIcon className="size-4 animate-spin" />,
}}
>
<StepperNav>
{steps.map((step) => (
<StepperItem key={step} step={step} loading={step === 2}>
<StepperTrigger>
<StepperIndicator className="data-[state=completed]:bg-green-500 data-[state=completed]:text-white data-[state=active]:bg-primary data-[state=active]:text-primary-foreground data-[state=inactive]:text-gray-500">
{step}
</StepperIndicator>
</StepperTrigger>
{steps.length > step && <StepperSeparator className="group-data-[state=completed]/step:bg-green-500" />}
</StepperItem>
))}
</StepperNav>
<StepperPanel className="text-sm w-56 text-center">
{steps.map((step) => (
<StepperContent key={step} value={step}>
Step {step} content
</StepperContent>
))}
</StepperPanel>
</Stepper>
</div>
);
}