| import React, { memo, FC } from 'react'; | |
| import './index.module.scss'; | |
| import Broadcast from '@/components/svgIcon'; | |
| import { il8n } from '@/language'; | |
| import { defaultLanguage } from '@/core/config'; | |
| import { languageType } from 'types'; | |
| const Index: FC<{ handle: Function; language: languageType | undefined }> = memo(function Index({ | |
| handle, | |
| language, | |
| }) { | |
| const handleFunc = () => { | |
| handle(); | |
| }; | |
| return ( | |
| <div className="end"> | |
| <div className="replay"> | |
| <div className="cicle" onClick={handleFunc}> | |
| <Broadcast iconClass="replay" fill="#fff" fontSize={'37px'} /> | |
| </div> | |
| <p>{il8n(language || defaultLanguage, 'replay')}</p> | |
| </div> | |
| </div> | |
| ); | |
| }); | |
| export default Index; | |