1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
Files
checktheroads-hyperglass/hyperglass/ui/components/loading.tsx
2021-12-18 23:45:06 -07:00

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>
);
};