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

type TProps = {};

export const SurveyError: React.FC<TProps> = () => {
  return (
    <SToastBaseText>
      Sorry, an internal error occurred. Please try{'\n'}to fill out the survey
      next time.
    </SToastBaseText>
  );
};
