Main/resources/[Developer]/[Mark]/av_weather/ui/src/components/Loading.tsx
2025-06-07 08:51:21 +02:00

21 lines
472 B
TypeScript

import { Box, LoadingOverlay } from "@mantine/core";
export const Loading = () => {
return (
<Box
style={{
display: "flex",
alignContent: "center",
alignItems: "center",
height: "100%",
}}
>
<LoadingOverlay
visible
zIndex={1000}
loaderProps={{ color: "blue.2", type: "dots" }}
overlayProps={{ radius: "sm", blur: 2, opacity: 0 }}
/>
</Box>
);
};