import React from 'react'; import { Base, SxProp } from './Base'; import { ForwardRefComponent } from './polymorphic'; import { all, AllSystemProps, forwardSystemProps } from './system-props'; const defaultElement = 'div'; export type BoxProps = SxProp & AllSystemProps; type BoxComponent = ForwardRefComponent; export const Box = React.forwardRef( ({ as = defaultElement, ...props }, ref) => { return ; } ) as BoxComponent;