File size: 349 Bytes
b91e262 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import { css } from '../../../utils/css'
import { Overlay, type OverlayProps } from '../../overlay/overlay'
export function ErrorOverlayOverlay({ children, ...props }: OverlayProps) {
return <Overlay {...props}>{children}</Overlay>
}
export const OVERLAY_STYLES = css`
[data-nextjs-dialog-overlay] {
padding: initial;
top: 10vh;
}
`
|