mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-08 09:05:25 -05:00
1) Downgrade numpy to avoid dependency conflict with numba 2) Move all non ldm/invoke files into `invokeai`. This includes assets, backend, frontend, and configs. 3) Fix up way that the backend finds the frontend and the generator finds the NSFW caution.png icon.
23 lines
388 B
TypeScript
23 lines
388 B
TypeScript
import { Flex, Spinner } from '@chakra-ui/react';
|
|
|
|
const Loading = () => {
|
|
return (
|
|
<Flex
|
|
width={'100vw'}
|
|
height={'100vh'}
|
|
alignItems="center"
|
|
justifyContent="center"
|
|
>
|
|
<Spinner
|
|
thickness="2px"
|
|
speed="1s"
|
|
emptyColor="gray.200"
|
|
color="gray.400"
|
|
size="xl"
|
|
/>
|
|
</Flex>
|
|
);
|
|
};
|
|
|
|
export default Loading;
|