mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
import { Spinner } from '@chakra-ui/react';
|
|
import { NoConfig } from './no-config';
|
|
|
|
export const Loading = (): JSX.Element => {
|
|
return (
|
|
<NoConfig color="#118ab2">
|
|
<Spinner boxSize="8rem" />
|
|
</NoConfig>
|
|
);
|
|
};
|