import React, { forwardRef } from "react" import { classNames } from "../../utils" import { Flex, FlexProps } from "../Flex/Flex" export type SpaceBetweenProps = FlexProps export const SpaceBetween = forwardRef( function SpaceBetween({ className, ...rest }, ref) { return ( ) }, )