import { faMoon, faSun } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import type { FC } from 'react'; import { SimpleCard } from '../utils/SimpleCard'; import type { Theme } from '../utils/theme'; import { changeThemeInMarkup } from '../utils/theme'; import { ToggleSwitch } from '../utils/ToggleSwitch'; import type { Settings, UiSettings } from './reducers/settings'; import './UserInterfaceSettings.scss'; interface UserInterfaceProps { settings: Settings; setUiSettings: (settings: UiSettings) => void; } export const UserInterfaceSettings: FC = ({ settings: { ui }, setUiSettings }) => ( { const theme: Theme = useDarkTheme ? 'dark' : 'light'; setUiSettings({ ...ui, theme }); changeThemeInMarkup(theme); }} > Use dark theme. );