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