mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2025-10-09 14:19:07 +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>
|
|
);
|