UNPKG

@asgerami/zemenay-blog

Version:

Plug-and-play blog system for Next.js - Get a fully functional blog running in minutes with zero configuration

10 lines (9 loc) 263 B
export type Theme = "light" | "dark" | "system"; interface UseThemeResult { theme: Theme; resolvedTheme: "light" | "dark"; setTheme: (theme: Theme) => void; toggleTheme: () => void; } export declare function useTheme(): UseThemeResult; export {};