import type { ForwardedRef } from 'react'; import { forwardRef } from 'react'; import { View, type ViewProps } from 'react-native'; import { cn } from '@cdx-ui/utils'; import { vStackRootVariants, type StackSpace } from './styles'; export interface VStackProps extends ViewProps { className?: string; space?: StackSpace; reversed?: boolean; } export const VStack = forwardRef( ( { reversed = false, space, style, className, children, ...restProps }, ref: ForwardedRef, ) => { return ( {children} ); }, ); VStack.displayName = 'VStack';