~cytrogen/masto-fe

ref: c3639787828f174c9c58d797e5210d74a96d33a9 masto-fe/app/javascript/mastodon/components/loading_indicator.tsx -rw-r--r-- 208 bytes
c3639787 — Matt Jankowski Spec media attachment speedups (#25416) 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>
);