import React from 'react'; import Box from '../Box'; import type { IFlexProps } from './types'; const Flex = ( { style, direction, align, justify, wrap, basis, grow, shrink, ...props }: IFlexProps, ref: any ) => { return ( ); }; //Spacer Component that adds space between components where it is placed export const Spacer = (props: any) => { return ; }; export type { IFlexProps }; export default React.memo(React.forwardRef(Flex));