aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Settings/Settings.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Settings/Settings.tsx')
-rw-r--r--src/components/Settings/Settings.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/Settings/Settings.tsx b/src/components/Settings/Settings.tsx
index 80eb0c3..9f38ecb 100644
--- a/src/components/Settings/Settings.tsx
+++ b/src/components/Settings/Settings.tsx
@@ -1,6 +1,7 @@
import { CogIcon } from '@components/Icons';
import ThemeToggle from '@components/Settings/ThemeToggle/ThemeToggle';
import { useIntl } from 'react-intl';
+import PrismThemeToggle from './PrismThemeToggle/PrismThemeToggle';
import ReduceMotion from './ReduceMotion/ReduceMotion';
import styles from './Settings.module.scss';
@@ -18,6 +19,7 @@ const Settings = () => {
</div>
<ThemeToggle />
<ReduceMotion />
+ <PrismThemeToggle />
</>
);
};