import React, { forwardRef, Ref } from 'react'; import { SystemProps, x } from '@xstyled/emotion'; interface IProps { className?: string; } export interface BoxProps extends SystemProps, IProps, Omit, 'color' | 'as'> { } export const Box = forwardRef( ({ className, ...rest }: BoxProps, ref: Ref) => { const Element = x.div; return ; }, ); Box.displayName = '@bigcapital/Box';