~cytrogen/masto-fe

ref: 919ed0e469b70e373ab7e79ae30c030e4b66e9e5 masto-fe/app/javascript/flavours/glitch/components/loading_indicator.tsx -rw-r--r-- 208 bytes
919ed0e4 — Renaud Chaput [Glitch] Convert `dropdown_menu` state to Typescript 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>
);