aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Settings/Settings.tsx
blob: bfef85148f53d1acf5a667aa9d704bbe69afe3e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { CogIcon } from '@components/Icons';
import ThemeToggle from '@components/ThemeToggle/ThemeToggle';
import { t } from '@lingui/macro';
import styles from './Settings.module.scss';

const Settings = () => {
  return (
    <>
      <div className={styles.title}>
        <CogIcon /> {t`Settings`}
      </div>
      <ThemeToggle />
    </>
  );
};

export default Settings;