mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 04:13:01 +00:00
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>
|
||
|
);
|