UNPKG
kylin-ui-component
Version:
latest (0.0.2)
0.0.2
0.0.1
A React UI library for some developers to develop quickly
kylin-ui-component
/
dist
/
types
/
packages
/
components
/
ThemeProvider
/
theme-provider.d.ts
5 lines
(4 loc)
•
290 B
TypeScript
View Raw
1
2
3
4
5
/// <reference types="react" />
import
type
{
ThemeContextProps
,
ThemeProviderProps
}
from
'./type'
;
export
declare
const
ThemeContext
:
import
(
"react"
).
Context
<
ThemeContextProps
>;
export
declare
const
ThemeProvider
:
(
{ themeConfig, children, }:
Partial
<
ThemeProviderProps
>
) =>
JSX
.
Element
;