AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
import { DialogBody } from '../../dialog'
type ErrorOverlayDialogBodyProps = {
children?: React.ReactNode
onClose?: () => void
}
export function ErrorOverlayDialogBody({
children,
}: ErrorOverlayDialogBodyProps) {
return (
<DialogBody className="nextjs-container-errors-body">{children}</DialogBody>
)
}
export const DIALOG_BODY_STYLES = ``