Skip to content

Commit 864c10d

Browse files
committed
fix(stack/vstack): correct stack direction
1 parent fa40be4 commit 864c10d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Stack/VStack/VStack.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function VStack(
1313
props: VStackProps,
1414
forwardedRef: Ref<HTMLElement>,
1515
) {
16-
return (<Stack ref={forwardedRef} direction="horizontal" {...props} />)
16+
return (<Stack ref={forwardedRef} direction="vertical" {...props} />)
1717
}
1818

1919
export default forwardRef(VStack)

0 commit comments

Comments
 (0)