import { Icon, close } from '@wordpress/icons' import { __ } from '@wordpress/i18n' import { Dialog, Transition } from '@headlessui/react' import { Fragment } from '@wordpress/element' export default function SplitModal({ onClose, isOpen, invertedButtonColor, children, }) { return (
{children[0]}
{children[1]}
) }