~cytrogen/masto-fe

ref: ac0eb0533eb97686b2dca6f31d0b87d8c6fd5c31 masto-fe/app/javascript/mastodon/components/loading_indicator.tsx -rw-r--r-- 208 bytes
ac0eb053 — Claire Add Elasticsearch cluster health check and indexes mismatch check to dashboard (#26448) 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>
);