This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-16 08:20:52 -08:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
2016-10-06 13:47:35 -07:00
|
|
|
const LoadingIndicator = () => {
|
|
|
|
const style = {
|
|
|
|
textAlign: 'center',
|
|
|
|
fontSize: '16px',
|
|
|
|
fontWeight: '500',
|
|
|
|
color: '#616b86',
|
|
|
|
paddingTop: '120px'
|
|
|
|
};
|
|
|
|
|
2016-11-16 08:20:52 -08:00
|
|
|
return <div style={style}><FormattedMessage id='loading_indicator.label' defaultMessage='Loading...' /></div>;
|
2016-10-06 13:47:35 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
export default LoadingIndicator;
|