1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00
thatmattlove-hyperglass/hyperglass/ui/elements/loading.tsx
2021-12-19 22:57:00 -07:00

10 lines
227 B
TypeScript

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