import { forwardRef } from "react"; import { styled } from "../../theme"; import type { WithTestId } from "../../types"; const StyledBox = styled("div"); type BoxProps = WithTestId>; /** * A styleable abstraction of the `
` element. */ export const Box = forwardRef((props, ref) => { return ; }); Box.displayName = "Box";