UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

9 lines (8 loc) 241 B
export type ThemeMode = "light" | "dark" | "auto"; export declare function useThemeMode(): { mode: ThemeMode; computedMode: ThemeMode; setMode: (mode: ThemeMode) => void; toggleMode: () => void; clearMode: () => void; };