mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 12:27:44 +00:00
42 lines
901 B
TypeScript
42 lines
901 B
TypeScript
import { cn } from "@/lib/utils";
|
|
import clsx from "clsx";
|
|
import { Children, PropsWithChildren } from "react";
|
|
|
|
export function Stepper({ children }: PropsWithChildren) {
|
|
const length = Children.count(children);
|
|
|
|
return (
|
|
<div className="flex flex-col">
|
|
{Children.map(children, (child, index) => {
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"border-l pl-9 ml-3 relative",
|
|
clsx({
|
|
"pb-5 ": index < length - 1,
|
|
}),
|
|
)}
|
|
>
|
|
<div className="bg-muted w-8 h-8 text-xs font-medium rounded-md border flex items-center justify-center absolute -left-4 font-code">
|
|
{index + 1}
|
|
</div>
|
|
{child}
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function StepperItem({
|
|
children,
|
|
title,
|
|
}: PropsWithChildren & { title?: string }) {
|
|
return (
|
|
<div className="pt-0.5">
|
|
<h4 className="mt-0">{title}</h4>
|
|
<div>{children}</div>
|
|
</div>
|
|
);
|
|
}
|