import React, { ReactElement, ReactNode } from 'react'; import { CommonProps, SystemProperties } from '../common'; import { StyledBox } from './StyledBox'; import css from '../../utils/css'; export interface BoxProps extends SystemProperties, CommonProps { /** * Box's children node. */ children?: ReactNode; } const Box = ({ bgColor, borderColor, borderRadius, borderStyle, borderWidth, children, color, fontSize, fontWeight, lineHeight, m, mb, ml, mr, mt, p, pb, pl, pr, pt, sx = {}, className, id, style, 'data-test-id': dataTestId, }: BoxProps): ReactElement => ( {children} ); export default Box;