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