2019-10-06 20:11:17 +00:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
2019-10-06 20:11:17 +00:00
|
|
|
import illustration from 'flavours/glitch/images/elephant_ui_working.svg';
|
|
|
|
|
2021-05-03 12:59:49 +00:00
|
|
|
const RegenerationIndicator = () => (
|
2019-10-06 20:11:17 +00:00
|
|
|
<div className='regeneration-indicator'>
|
|
|
|
<div className='regeneration-indicator__figure'>
|
|
|
|
<img src={illustration} alt='' />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className='regeneration-indicator__label'>
|
|
|
|
<FormattedMessage id='regeneration_indicator.label' tagName='strong' defaultMessage='Loading…' />
|
|
|
|
<FormattedMessage id='regeneration_indicator.sublabel' defaultMessage='Your home feed is being prepared!' />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
2021-05-03 12:59:49 +00:00
|
|
|
export default RegenerationIndicator;
|