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