import React from 'react'; import type { VariantProps } from '@gluestack-ui/nativewind-utils'; import { View } from 'react-native'; import { vstackStyle } from './styles'; type IVStackProps = React.ComponentProps & VariantProps; const VStack = React.forwardRef, IVStackProps>( ({ className, space, reversed, ...props }, ref) => { return ( ); } ); VStack.displayName = 'VStack'; export { VStack };