UNPKG

funuicss

Version:

React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting b

8 lines (7 loc) 238 B
import React from 'react'; interface ThemeProviderProps { theme: 'light' | 'dark' | 'dark-blue' | 'light-gray'; children: React.ReactNode; } declare const ThemeProvider: React.FC<ThemeProviderProps>; export default ThemeProvider;