// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import React from 'react'; import {useIntl} from 'react-intl'; import SettingOption from '@components/settings/option'; import SettingSeparator from '@components/settings/separator'; import {useTheme} from '@context/theme'; type CustomThemeProps = { setTheme: (themeKey: string) => void; displayTheme: string | undefined; } const CustomTheme = ({setTheme, displayTheme}: CustomThemeProps) => { const intl = useIntl(); const theme = useTheme(); return ( <> ); }; export default CustomTheme;