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

type TProps = {};

export const NotificationSettingsError: React.FC<TProps> = () => {
  return (
    <SToastBaseText>Settings failed to update due to an error.</SToastBaseText>
  );
};
