diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-02-01 15:15:55 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-02-01 15:15:55 +0100 |
| commit | 1e370817560c905a0a3520e245c317f308b6a5e7 (patch) | |
| tree | f5a1e2c3b8ddbff2cb4d94eff82830388158e4c9 /src/components/Settings/Settings.tsx | |
| parent | 8f8a3957b5d3b33bafaa0a6afe4187f75d6dd2b7 (diff) | |
chore: add a new settings to handle prism theme from toolbar
Diffstat (limited to 'src/components/Settings/Settings.tsx')
| -rw-r--r-- | src/components/Settings/Settings.tsx | 2 |
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 /> </> ); }; |
