import React from "react"; import { Box, Progress } from "theme-ui"; import Spinner from "./Spinner"; function LoadingOverlay({ progress }) { return ( {progress && ( )} ); } export default LoadingOverlay;