import React from 'react'; import { usePropsResolution } from '../../../hooks'; import Box from '../../primitives/Box'; import type { IContainerProps } from './types'; import { useHasResponsiveProps } from '../../../hooks/useHasResponsiveProps'; const Container = ({ children, ...props }: IContainerProps, ref?: any) => { const resolvedProps = usePropsResolution('Container', props); //TODO: refactor for responsive prop if (useHasResponsiveProps(props)) { return null; } return ( {children} ); }; export default React.memo(React.forwardRef(Container)); export type { IContainerProps };