import React from "react"; import { Box } from "theme-ui"; import Spinner from "./Spinner"; type LoadingOverlayProps = { bg: string; children?: React.ReactNode; }; function LoadingOverlay({ bg, children }: LoadingOverlayProps) { return ( {children} ); } LoadingOverlay.defaultProps = { bg: "muted", }; export default LoadingOverlay;