mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
18 lines
357 B
JavaScript
18 lines
357 B
JavaScript
import { FormattedMessage } from 'react-intl';
|
|
|
|
const style = {
|
|
textAlign: 'center',
|
|
fontSize: '16px',
|
|
fontWeight: '500',
|
|
color: '#616b86',
|
|
paddingTop: '120px'
|
|
};
|
|
|
|
const LoadingIndicator = () => (
|
|
<div style={style}>
|
|
<FormattedMessage id='loading_indicator.label' defaultMessage='Loading...' />
|
|
</div>
|
|
);
|
|
|
|
export default LoadingIndicator;
|