You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
367 B

  1. import { FormattedMessage } from 'react-intl';
  2. const style = {
  3. textAlign: 'center',
  4. fontSize: '16px',
  5. fontWeight: '500',
  6. paddingTop: '120px'
  7. };
  8. const LoadingIndicator = () => (
  9. <div className='loading-indicator' style={style}>
  10. <FormattedMessage id='loading_indicator.label' defaultMessage='Loading...' />
  11. </div>
  12. );
  13. export default LoadingIndicator;