@chakra-ui/react
Version:
Responsive and accessible React UI components built with React and Emotion
18 lines (15 loc) • 348 B
JavaScript
;
import { chakra } from '../../styled-system/factory.js';
const LoaderOverlay = chakra("div", {
base: {
pos: "absolute",
inset: "0",
display: "flex",
alignItems: "center",
justifyContent: "center",
boxSize: "full",
gap: "2"
}
});
LoaderOverlay.displayName = "LoaderOverlay";
export { LoaderOverlay };