import { ForwardedRef, forwardRef } from 'react' import { StackProvider } from './StackProvider' import { StackStyle } from './StackStyles' import { StackProps } from './types' function Stack(props: StackProps, ref?: ForwardedRef) { const { align = 'flex-start', justify = 'flex-start', direction = 'row', wrap = 'wrap', spacing, children, ...rest } = props return ( {children} ) } export default forwardRef(Stack)