import React from 'react';
import { SToastBaseText } from '../../../../s-components/s-toast-base-text';
import { UNBREAKABLE_SPACE } from '../../../../constants';

type TProps = {};

export const SurveyOffline: React.FC<TProps> = () => {
  return (
    <SToastBaseText>
      Connection lost. Please check your{UNBREAKABLE_SPACE}internet connection
      and try to fill out the{UNBREAKABLE_SPACE}survey next time.
    </SToastBaseText>
  );
};
