import React from "react"; import Box, { BoxProps } from "../box/box"; /** * A layout component that creates an adjustable, empty space that can be used to tune the spacing between sibling elements */ const Spacer = React.memo( React.forwardRef((props: BoxProps, ref) => { const { children, ...rest } = props; return ( {children} ); }) ); Spacer.displayName = "Spacer"; export default Spacer;