~cytrogen/masto-fe

ref: b2ac93dd7379933dac63e60ea4260283a2f856f5 masto-fe/app/javascript/mastodon/components/loading_indicator.tsx -rw-r--r-- 208 bytes
b2ac93dd — Claire Fix selecting domains to forward reports to not passing the information correctly (#26636) 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>
);