import React from "react"; import Box, { BoxProps } from "../box/box"; /** * A layout component that centers its child within itself across both axes */ const Center = React.memo( React.forwardRef(({ children, ...rest }: BoxProps, ref: any) => { return ( {children} ); }) ); Center.displayName = "Center"; export default Center;