import React from 'react'; import styled from 'styled-components'; export const ErrorSvg = props => ( ); const ErrorWrapper = styled.div` display: flex; justify-content: center; align-items: center; text-align: center; flex-direction: column; color: #fff; svg { color: #ffbf00; margin-bottom: 8px; } p { font-size: 16px; color: rgba(255, 255, 255, 0.85); line-height: 24px; } span { font-size: 14px; color: rgba(255, 255, 255, 0.65); font-weight: 300; } `; export default ({ isBigfish, message, tips }) => ( {isBigfish ? 'Bigfish' : 'Umi'} {message.offline} {tips || message.restart} );
{isBigfish ? 'Bigfish' : 'Umi'} {message.offline}