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