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

type TProps = {};

export const NotificationSettingInfoError: React.FC<TProps> = () => {
  return (
    <SToastBaseText>
      Enabling notifications info failed to{UNBREAKABLE_SPACE}load. Please try
      refreshing the
      {UNBREAKABLE_SPACE}page.
    </SToastBaseText>
  );
};
