mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2025-01-01 13:43:41 +01:00
17 lines
357 B
JavaScript
17 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;
|