1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-28 21:09:19 +00:00
thatmattlove-hyperglass/hyperglass/ui/components/loading.tsx
2021-09-09 18:03:04 -07:00

10 lines
227 B
TypeScript

import { Spinner } from '@chakra-ui/react';
import { NoConfig } from './noconfig';
export const Loading = (): JSX.Element => {
return (
<NoConfig color="#118ab2">
<Spinner boxSize="8rem" />
</NoConfig>
);
};