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