2016-11-16 18:20:52 +02:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
2017-01-10 14:50:40 +02:00
|
|
|
const style = {
|
|
|
|
textAlign: 'center',
|
|
|
|
fontSize: '16px',
|
|
|
|
fontWeight: '500',
|
|
|
|
paddingTop: '120px'
|
2016-10-06 23:47:35 +03:00
|
|
|
};
|
|
|
|
|
2017-01-10 14:50:40 +02:00
|
|
|
const LoadingIndicator = () => (
|
2017-02-10 17:35:19 +02:00
|
|
|
<div className='loading-indicator' style={style}>
|
2017-01-10 14:50:40 +02:00
|
|
|
<FormattedMessage id='loading_indicator.label' defaultMessage='Loading...' />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
2016-10-06 23:47:35 +03:00
|
|
|
export default LoadingIndicator;
|