mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 04:13:01 +00:00
9bf63257fb
Port a86886b1fd
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
8 lines
208 B
TypeScript
8 lines
208 B
TypeScript
import { CircularProgress } from './circular_progress';
|
|
|
|
export const LoadingIndicator: React.FC = () => (
|
|
<div className='loading-indicator'>
|
|
<CircularProgress size={50} strokeWidth={6} />
|
|
</div>
|
|
);
|