import React from 'react' import { ForwardedRef, forwardRef } from 'react' import { HStackProps } from './types' import Stack from './Stack' function HStack(props: HStackProps, ref?: ForwardedRef) { const { reverse = false, ...rest } = props const direction = reverse ? 'row-reverse' : 'row' return } export default forwardRef(HStack)