Skip to content

Commit 68c3c89

Browse files
committed
Added className to StepContentContainer. Was missing in a PR I merged… agh
1 parent b007177 commit 68c3c89

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1-
export function StepContentContainer({ children }: { children: React.ReactNode }) {
2-
return <div className="mb-6 ml-9 mt-1">{children}</div>;
1+
import { cn } from "~/utils/cn";
2+
3+
export function StepContentContainer({
4+
children,
5+
className,
6+
}: {
7+
children: React.ReactNode;
8+
className?: string;
9+
}) {
10+
return <div className={cn("mb-6 ml-9 mt-1", className)}>{children}</div>;
311
}

0 commit comments

Comments
 (0)