import React from 'react'; export interface OverlayProps { children?: JSX.Element | JSX.Element[] | string | null; } export const Overlay = ({ children }: OverlayProps): JSX.Element => { return
{children}
; };