UNPKG
@ntragas/pouncejstest
Version:
latest (1.0.0)
1.0.0
A collection of UI components from Panther labs
github.com/panther-labs/pounce
panther-labs/pounce
@ntragas/pouncejstest
/
dist
/
esm
/
utils
/
ThemeProvider.d.ts
9 lines
(8 loc)
•
262 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
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
;