import { __experimentalVStack as VStack } from '@wordpress/components';
import type { ReactNode } from 'react';
import './style.scss';
interface CalloutOverlayProps {
showCallout: boolean;
callout: ReactNode;
main: ReactNode;
}
export function CalloutOverlay( { showCallout, callout, main }: CalloutOverlayProps ) {
if ( ! showCallout ) {
return main;
}
return (
<>