Change animation on feed generation screen in web UI (#33311)
This commit is contained in:
parent
74478888ff
commit
3cf6681736
7 changed files with 39 additions and 39 deletions
|
@ -0,0 +1,26 @@
|
|||
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>
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue