~cytrogen/masto-fe

ref: 33c8708a1ac7df363bf2bd74ab8fa2ed7168379c masto-fe/app/javascript/mastodon/components/loading_indicator.tsx -rw-r--r-- 208 bytes
33c8708a — Claire Change `GET /api/v1/directory` to use database replica rather than primary (#26856) 2 years ago
                                                                                
1
2
3
4
5
6
7
import { CircularProgress } from './circular_progress';

export const LoadingIndicator: React.FC = () => (
  <div className='loading-indicator'>
    <CircularProgress size={50} strokeWidth={6} />
  </div>
);