fumadocs-ui
Version:
The Radix UI version of Fumadocs UI
8 lines • 361 B
TypeScript
import { ComponentProps } from "react";
//#region src/layouts/shared/slots/theme-switch.d.ts
interface ThemeSwitchProps extends ComponentProps<'div'> {
mode?: 'light-dark' | 'light-dark-system';
}
declare function ThemeSwitch({ className, mode, ...props }: ThemeSwitchProps): import("react").JSX.Element;
//#endregion
export { ThemeSwitch, ThemeSwitchProps };