about summary refs log tree commit diff
path: root/app/assets/javascripts/components/components/loading_indicator.jsx
blob: fd5acae84e5b2273ba43918b78da260a45fafd30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { FormattedMessage } from 'react-intl';

const LoadingIndicator = () => {
  const style = {
    textAlign: 'center',
    fontSize: '16px',
    fontWeight: '500',
    color: '#616b86',
    paddingTop: '120px'
  };

  return <div style={style}><FormattedMessage id='loading_indicator.label' defaultMessage='Loading...' /></div>;
};

export default LoadingIndicator;