mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-04 05:53:07 -05:00
2f9efb721c
Port 3cf6681736bae45cf13bf48cb2a72d3ac60bef60 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
27 lines
686 B
TypeScript
27 lines
686 B
TypeScript
import { FormattedMessage } from 'react-intl';
|
|
|
|
import { GIF } from './gif';
|
|
|
|
export const RegenerationIndicator: React.FC = () => (
|
|
<div className='regeneration-indicator'>
|
|
<GIF
|
|
src='/loading.gif'
|
|
staticSrc='/loading.png'
|
|
className='regeneration-indicator__figure'
|
|
/>
|
|
|
|
<div className='regeneration-indicator__label'>
|
|
<strong>
|
|
<FormattedMessage
|
|
id='regeneration_indicator.preparing_your_home_feed'
|
|
defaultMessage='Preparing your home feed…'
|
|
/>
|
|
</strong>
|
|
<FormattedMessage
|
|
id='regeneration_indicator.please_stand_by'
|
|
defaultMessage='Please stand by.'
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|