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