import { css } from '../../../utils/css' import { Overlay, type OverlayProps } from '../../overlay/overlay' export function ErrorOverlayOverlay({ children, ...props }: OverlayProps) { return {children} } export const OVERLAY_STYLES = css` [data-nextjs-dialog-overlay] { padding: initial; top: 10vh; } `