diff --git a/web/assets.js b/web/assets.js
deleted file mode 100644
--- a/web/assets.js
+++ /dev/null
@@ -1,10 +0,0 @@
-// @flow
-
-export const assetCacheURLPrefix = 'https://dh9fld3hutpxf.cloudfront.net';
-
-// Notifications Modal Illustration: "Background"
-export const backgroundNotificationsIllustrationAsset = {
- fileName: 'muted-notifs.svg',
- height: '86px',
- width: '46px',
-};
diff --git a/web/assets/muted-notifs.react.js b/web/assets/muted-notifs.react.js
new file mode 100644
--- /dev/null
+++ b/web/assets/muted-notifs.react.js
@@ -0,0 +1,30 @@
+// @flow
+
+import * as React from 'react';
+
+function MutedNotifsIllustration(): React.Node {
+ return (
+
+ );
+}
+
+export default MutedNotifsIllustration;
diff --git a/web/modals/threads/notifications/notifications-modal.react.js b/web/modals/threads/notifications/notifications-modal.react.js
--- a/web/modals/threads/notifications/notifications-modal.react.js
+++ b/web/modals/threads/notifications/notifications-modal.react.js
@@ -12,12 +12,9 @@
useDispatchActionPromise,
} from 'lib/utils/action-utils';
-import {
- assetCacheURLPrefix,
- backgroundNotificationsIllustrationAsset,
-} from '../../../assets.js';
import AllNotifsIllustration from '../../../assets/all-notifs.react.js';
import BadgeNotifsIllustration from '../../../assets/badge-notifs.react.js';
+import MutedNotifsIllustration from '../../../assets/muted-notifs.react.js';
import Button from '../../../components/button.react';
import EnumSettingsOption from '../../../components/enum-settings-option.react';
import { useSelector } from '../../../redux/redux-utils';
@@ -152,13 +149,7 @@
const isBackgroundSelected = notificationSettings === 'background';
const backgroundItem = React.useMemo(() => {
- const icon = (
-
- );
+ const icon = ;
return (