UNPKG

@rajace2005/theme-changer

Version:

A simple, lightweight and easy-to-use React component to add dark and light theme toggling to your application.

12 lines (8 loc) 279 B
import React from 'react'; export type Theme = 'light' | 'dark'; export interface ThemeContextType { theme: Theme; toggleTheme: () => void; } export declare const ThemeProvider: React.FC<{children: React.ReactNode}>; export declare const useTheme: () => ThemeContextType;