import React from 'react'; import { Base, SxProp } from './Base'; import { ForwardRefComponent } from './polymorphic'; import { all, AllSystemProps } from './system-props'; const defaultElement = 'div'; export type FlexProps = SxProp & AllSystemProps; type FlexComponent = ForwardRefComponent; export const Flex = React.forwardRef((props, ref) => { return ( ); }) as FlexComponent;