blob: bd2f33d9588a969fb6f2ce883cf783791c80eb68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import { CogIcon } from '@components/Icons';
import ThemeToggle from '@components/Settings/ThemeToggle/ThemeToggle';
import { t } from '@lingui/macro';
import ReduceMotion from './ReduceMotion/ReduceMotion';
import styles from './Settings.module.scss';
const Settings = () => {
return (
<>
<div className={styles.title}>
<CogIcon /> {t`Settings`}
</div>
<ThemeToggle />
<ReduceMotion />
</>
);
};
export default Settings;
|