blob: 80eb0c354d59de6e089cb22a70cc1d8e5c89c24d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 | import { CogIcon } from '@components/Icons';
import ThemeToggle from '@components/Settings/ThemeToggle/ThemeToggle';
import { useIntl } from 'react-intl';
import ReduceMotion from './ReduceMotion/ReduceMotion';
import styles from './Settings.module.scss';
const Settings = () => {
  const intl = useIntl();
  return (
    <>
      <div className={styles.title}>
        <CogIcon />{' '}
        {intl.formatMessage({
          defaultMessage: 'Settings',
          description: 'Settings: modal title',
        })}
      </div>
      <ThemeToggle />
      <ReduceMotion />
    </>
  );
};
export default Settings;
 |