HEX
Server: LiteSpeed
System: Linux server902.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: deshuvsd (2181)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/deshuvsd/www/wp-content/plugins/surerank/src/apps/admin-components/modal-wrapper.js
import { cn } from '@/functions/utils';
import { Container } from '@bsf/force-ui';

const ModalWrapper = ( {
	isOpen = true,
	children,
	className = '',
	maxWidth = 'max-w-[464px]',
	...props
} ) => {
	if ( ! isOpen ) {
		return null;
	}

	return (
		<>
			{ /* Modal content */ }
			<Container
				className={ cn(
					'absolute top-[30%] left-1/2 z-50 -translate-x-1/2 -translate-y-1/2 w-full',
					maxWidth,
					className
				) }
				justify="center"
				align="center"
				{ ...props }
			>
				{ children }
			</Container>
		</>
	);
};

export default ModalWrapper;