import React from 'react'; import { usePropsResolution } from '../../../hooks'; import Box from '../../primitives/Box'; import type { IContainerProps } from './types'; const Container = ( { children, centerContent, ...props }: IContainerProps, ref?: any ) => { const newProps = usePropsResolution('Container', props); return ( {children} ); }; export default React.memo(React.forwardRef(Container)); export type { IContainerProps };