mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 08:48:05 +00:00
10 lines
227 B
TypeScript
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>
|
|
);
|
|
};
|