/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React, {type ReactNode} from 'react'; import {useColorMode, useThemeConfig} from '@docusaurus/theme-common'; import ColorModeToggle from '@theme/ColorModeToggle'; import type {Props} from '@theme/Navbar/ColorModeToggle'; import styles from './styles.module.css'; export default function NavbarColorModeToggle({className}: Props): ReactNode { const navbarStyle = useThemeConfig().navbar.style; const {disableSwitch, respectPrefersColorScheme} = useThemeConfig().colorMode; const {colorModeChoice, setColorMode} = useColorMode(); if (disableSwitch) { return null; } return ( ); }