UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

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