UNPKG

pouncejs

Version:

A collection of UI components from Panther labs

9 lines (8 loc) 262 B
import React from 'react'; import { Theme } from '../theme'; interface ThemeProviderProps { /** The theme to pass down to the library components */ theme?: Theme; } declare const ThemeProvider: React.FC<ThemeProviderProps>; export default ThemeProvider;